last night it worked.. downloaded and recompiled today and none of my /keypress events work..
I did change the #event statements.. i added in /echo test 1 to the events to make sure they are firing.. and they are..
Just wondering..
Code: Select all
| Rangerautopull.mac v 0.1 alpha
| Writen by Omper
#chat tell
#include spellcast.inc
#event TOFAR "Your target is too far away, get closer!"
#Event CANTSEE "#*#see your target#*#"
#Event GainExp "#*#You gain party experience#*#"
#Event LoseExp "#*#You have entered#*#"
#Event buddy "#*#invite me now#*#"
Sub Main
:loop
/doevents
/goto :loop
/return
Sub Event_GainExp
/delay 2s
/tell bot2 lootall
/delay 2s
/tell bot1 sit
/delay 2s
/tell bot2 sit
/call GoToStart
:loopgainexp
/delay 5s
/target npc radius 150
/if (!${Target.ID}) /goto :loopgainexp
/face nolook fast
/call Cast "ensnare"
/tell bot2 buff shield of blades on master
/delay 2s
/tell bot1 stand
/delay 3ws
/attack on
/echo gainexp
/delay 4s
/tell gwest sn ensnare
/return
Sub Event_buddy
/tar buddy
/invite
/keypress esc
/return
Sub Event_TOFAR
/face nolook fast
/keypress forward hold
/keypress forward
/return
omper

