This eensy weensy one does the same crash:
Code: Select all
Sub Main
/echo $char(ability,"sense heading")
/echo $char(ability,"sneak")
/echo $char(ability,"intimidation")
/echo $char(ability,"feign death")
/echo $char(ability,"forage")
/echo $char(ability,"mend")
/return
Though, when I am in EQ, i can type any one of those "/echo" lines, and get the number. The macro I want to run is this one:
Code: Select all
| SKILLER
Sub Main
/for v1 0 to 9000
/if $gm==TRUE /call Crap
/delay 2
/if n $char(ability,"sense heading")>0 /doability sense
/if $gm==TRUE /call Crap
/delay 2
/if n $char(ability,"sneak")>0 /doability sneak
/if $gm==TRUE /call Crap
/delay 2
/if n $char(ability,"intimidation")>0 /doability intimidation
/if $gm==TRUE /call Crap
/delay 2
/if n $char(ability,"feign death")>0 /doability feign
/if $gm==TRUE /call Crap
/delay 2
/if n $char(ability,"forage")>0 /doability forage
/if $gm==TRUE /call Crap
/delay 2
/if n $char(ability,"mend")>0 /doability mend
/next v1
/return
Sub Crap
/afk Crap, gotta log. Damn RL again!
/cleanup
/sit
/delay 20
/camp
/unload
/return
It freezes up at or before the /echo line, because it does the same thing with or w/o the gm check line(s).
Sorry to be a nuisance! Just trying to find hte problem myself, and coming back and offering more of what I have tried, as well as the re-occuring problem.
---Genoius---