aasi888 Posted July 12, 2007 Posted July 12, 2007 Nothing special... This script is almost same as previous versions but mana pot is not being spammed when ur dead. I got just fken bored to hear that "thong thong - mana potion can not be used due to unsuitable terms". Label(mana) CharStatus(HP,>,1) //eat mana only if health is over 1% { CharStatus(MP,<,99) //use mp pot if mana is lower that 99% { Label(MANA) USEITEM(Mana Potion[iD=728]) } } DELAY(1000) Call(mana) Quote
mpj123 Posted July 12, 2007 Posted July 12, 2007 that script shouldn't work, it has conditions inside conditions... but this will. Label(mana) CharStatus(HP,>,1) //eat mana only if health is over 1% { CALL(DEADCHECK) } DELAY(1000) Call(mana) LABEL(DEADCHECK) CharStatus(MP,<,99) //use mp pot if mana is lower that 99% { USEITEM(Mana Potion[iD=728]) } RETURN() Quote
Alfie Posted July 13, 2007 Posted July 13, 2007 You can't use conditions inside another condition ? Quote
aasi888 Posted July 13, 2007 Author Posted July 13, 2007 that script shouldn't work, it has conditions inside conditions... Works with IG 1.78. Atleast I dont get the spam when I'm dead and mp ~80%. PS Can it be modded so that I only use it outside of combat? Quote
aasi888 Posted July 14, 2007 Author Posted July 14, 2007 CharStatus(HP,!=,0) { But how can I check if I'm in combat mode or not? Quote
mpj123 Posted July 14, 2007 Posted July 14, 2007 why would you want it to be outside of combat? and now that I think about it, unless you are at 100% hp 24/7 its impossible. Quote
aasi888 Posted July 14, 2007 Author Posted July 14, 2007 why would you want it to be outside of combat? Because I only can use them outside combat in this server. Too bad it's not possible :( Quote
Versus Posted July 14, 2007 Posted July 14, 2007 Why it doesn't work?I didn't understand what u say mpj and aasi...But i try it and nothing (at ES-L2) :'( Quote
mpj123 Posted July 14, 2007 Posted July 14, 2007 check for useless spaces at the end of each script line, then run it. also, get your own mana pot ID Quote
getoverit Posted July 16, 2007 Posted July 16, 2007 just changed the damm 99% :) LABEL(nMANA) CHARSTATUS(MP,<,70) { USEITEM(Mana Potion[iD=728]) } DELAY(4000) Call(nMANA) Quote
NITROUS SYSTEM Posted July 16, 2007 Posted July 16, 2007 oo nice share...because the previous one didn't work for me! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.