Backside540 Posted September 3, 2007 Posted September 3, 2007 This script can be used at servers who are using the "Mana Drug" which is a potion for your MP which works like a HP potion. At Lineage2Glory the potion will last 20 seconds so my delay will be 19999, you can edit this yourself... LABEL(check) CHARSTATUS(MP,<,90) { CALL(potion) } DELAY(500) CALL(check) LABEL(potion) USEITEM(Mana Drug[iD=726]) DELAY(19999) CALL(check) Grtz, BS540
oO Posted September 3, 2007 Posted September 3, 2007 At buffs window u can add your mana drug as self buff and use it every 20 seconds ;)
Arthes Posted September 3, 2007 Posted September 3, 2007 Im using another method go to the heal options. And select the HP<110% use %item mana potion,drug use in combat and set the delay you want.
michaelz Posted September 3, 2007 Posted September 3, 2007 Im using another method go to the heal options. And select the HP<110% use %item mana potion,drug use in combat and set the delay you want. How exactly does that work? When hp is under 110% wtf? ;P
sltbnjr Posted September 3, 2007 Posted September 3, 2007 that's if you want to always use a potion with whatever fixed delay as for the script in this thread, I'm afraid that's the very first script people make.
DeFalco Posted September 3, 2007 Posted September 3, 2007 thanks it will be very useful on l2revenge, too bad it cant detect the current mp
dmitry501 Posted September 4, 2007 Posted September 4, 2007 This script can be used at servers who are using the "Mana Drug" which is a potion for your MP which works like a HP potion. At Lineage2Glory the potion will last 20 seconds so my delay will be 19999, you can edit this yourself... LABEL(check) CHARSTATUS(MP,<,90) { CALL(potion) } DELAY(500) CALL(check) LABEL(potion) USEITEM(Mana Drug[iD=726]) DELAY(19999) CALL(check) Grtz, BS540 Incorrectly! Correct LABEL(check) CHARSTATUS(MP,<,90) { CALL(potion) } DELAY(500) JMP(check) LABEL(potion) USEITEM(Mana Drug[iD=726]) DELAY(19999) RETURN()
DeFalco Posted September 4, 2007 Posted September 4, 2007 thanks for the scripts but how would a script look like if there is no time limit on the mana potion? On revenge u get 800mana when u use the potion. Is there a way to create a scrip that checks ur mp status and uses a manapot when the mp went down 800mp?
CX65 Posted September 4, 2007 Posted September 4, 2007 Correct LABEL(check) CHARSTATUS(MP,<,90) { CALL(potion) } DELAY(500) JMP(check) LABEL(potion) USEITEM(Mana Drug[iD=726]) DELAY(19999) RETURN() Working for me.. ^^ thx :)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now