Reply to Re: Full script here:
If you don't have an account, just leave the password field blank.
There are some very serious problems with supposedly "local" variables getting mixed up. This gave me hell working on Triangle Mover. It's a little late for decyphering scripts or remembering exactly what the bugs were (after midnight here) but I think there's always some way around it. Wne locals don't work right, you can use global variables for math (as long no waits need to happen during the calculation) and attributes like sp_gold and sp_strength for storing things.
The other trouble spot I see is that scripts calling their own functions can't (reliably?) access their own locals. You may be able to use goto instead. (Yes you can goto between functions, even outside them if you want.)
The other trouble spot I see is that scripts calling their own functions can't (reliably?) access their own locals. You may be able to use goto instead. (Yes you can goto between functions, even outside them if you want.)