PDA

View Full Version : 2 questions:



Terminator X
09-12-2005, 03:08 PM
What would the text have to say for putting up a surge of strength every time my prior one falls, as well as doing one bless for my weapon when that falls as well?

Thanks,

- The Termite

Bobmuhthol
09-12-2005, 03:29 PM
It can't be plausibly done in Wizard, especially if you were trying to integrate it into a script.

If, by chance, you use JSE, it would be something like

loop:
matchbool nosurge <Surge drop message>
matchbool nobless <Bless drop message>
matchwait

if(%nosurge%) gosub surge
if(%nobless%) gosub bless
goto loop

surge:
waitrt
put cman surge
return

bless:
waitrt
put symbol of holiness <weapon>
return


I don't think it would work very well if they both dropped while in RT, or at the same exact time. This can be circumvented by running two scripts: one for blesses, one for surge.

Shaelun
09-14-2005, 06:25 AM
Just because I'm bored, the same thing, but as a Lich script, heh:

loop {
msg = matchwait "<bless end msg here>", "<surge end msg here>"
if msg == "<bless end message>" then
fput "symbol of holiness <your weapon here>"
else
fput "cman surge"
end
}