Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jonasbengt

Pages: [1]
1
OpenEUO Scripting Chat / Need alittle help
« on: September 30, 2014, 10:20:50 AM »
Hi there, im trying to lern/do a own script for a super easy thing. but i can find where to start, so i thought id just ask

Im looking for something like, this.

on hotkey Z
use item x
if no item of that kind then print "funny comment here"
waitforcursor/waitfor target
else wait for journal secret word
when right word said in journal
target last target.

And ofc i want this in lua for openeuo :D

If you just want to give me some hints/something to start off that would be awsome! :D


Post Merge: September 30, 2014, 12:39:07 PM
Ive looked around and ive stolen some here and there to get something going. Ive made it so that i can use the item! :D progress!

But i have no idee on how to do the journal thing, and i have no idee on how to make the script go back and wait for me to use the hotkey again. it just stopps after 1 use =(

2
UOSteam scripts / My little dexxer pot macro
« on: September 30, 2014, 07:09:26 AM »
Heres alittle script i use with my dexxer when i pvp(im so bad i need to script it alittle:D)
I play on a restricted server with alot of fearures in uosteam disabled sadly, but this works quite good for me atleast :D

It auto dissarms your wep, and drinks the appropriate potion.

Feel free to give advice to improve this if possible ;D

Code: [Select]
if @findlayer 'self' 2
  togglehands 'left'
  pause 600
endif
if not timerexists 'Heal Potion'
  createtimer 'Heal Potion'
endif
if poisoned 'self'
  // Cure potion
  usetype! 0xf07
endif
if stam < maxstam
  // Refresh potion
  usetype! 0xf0b
endif
if not yellowhits 'self'
  if diffhits >= 15 and timer 'Heal Potion' >= 10250
    // Heal potion
    if usetype! 0xf0c
      settimer 'Heal Potion' 0
    endif
  endif

3
New member introductions / Hi SUO`rs , Im Jonas
« on: September 29, 2014, 11:31:15 AM »

Pages: [1]