Unknown2007-08-17 23:43:55
I'm trying to setup an auto clot script for mush...but I'm new to it. I was wondering if someone can help me. I want it to clot only if my bleeding is at 100 or greater. Though I don't know how to set the variable for the clotting and how to setup a trigger to take into account everything.
Unknown2007-08-18 00:15:01
Trigger on the "You bleed nnn health." message. Capture the number. If it's greater than 100 and you have enough mana, clot once. Subtract from the bleeding as much as you clot and if it's still high enough and you still have enough mana, clot again. Trigger the "You're not bleeding." (paraphrase) message to set your bleeding to 0.
Whatever you do, do not just calculate the number of clots you should do from the bleeding value and send them all at once.
Whatever you do, do not just calculate the number of clots you should do from the bleeding value and send them all at once.
Unknown2007-08-18 00:27:24
QUOTE(Zarquan @ Aug 17 2007, 05:15 PM) 434368
Whatever you do, do not just calculate the number of clots you should do from the bleeding value and send them all at once.
Okay, how come?
Unknown2007-08-18 02:44:43
WEAVE ILLUSION You bleed 129483523 health.
Plus, it doesn't account for your mana loss as you clot, so you could sap yourself of mana completely in a very short time.
Plus, it doesn't account for your mana loss as you clot, so you could sap yourself of mana completely in a very short time.
Forren2007-08-18 03:25:50
QUOTE(Zarquan @ Aug 17 2007, 10:44 PM) 434413
WEAVE ILLUSION You bleed 129483523 health.
Plus, it doesn't account for your mana loss as you clot, so you could sap yourself of mana completely in a very short time.
Plus, it doesn't account for your mana loss as you clot, so you could sap yourself of mana completely in a very short time.
I just have hardcoded limits for my bleeding. Also have bleed illusion detection. .
Aramel2007-08-18 05:38:48
...and remember to turn it off in aeon/choke.
Unknown2007-08-18 12:23:05
QUOTE(Forren @ Aug 17 2007, 11:25 PM) 434425
I just have hardcoded limits for my bleeding. Also have bleed illusion detection. .
You also have at least twice the mana I have available.
Unknown2007-08-18 16:50:22
Ok thanks. Now the next thing...how do you create an echo in Mush? I can't find it in the help files...by the way I think the help files suck...anyways. thanks
Forren2007-08-18 16:51:21
QUOTE(Zarquan @ Aug 18 2007, 08:23 AM) 434473
You also have at least twice the mana I have available.
Hehe, very true. I have 7,000 with TF. I still try to limit it, though, and activate the chervil affliction if it goes over a certain threshold.
Arundor2007-08-18 20:30:38
QUOTE(white wolf @ Aug 18 2007, 12:50 PM) 434516
Ok thanks. Now the next thing...how do you create an echo in Mush? I can't find it in the help files...by the way I think the help files suck...anyways. thanks
Try Note() or ColourNote().
Usage depends on which language you're using, but just to give an example, Lua would do it like this:
Note("Hi there! This is an echo!")
ColourNote("red", "blue", "This one is in obnoxious colours!")