Jump to content

Recommended Posts

Posted

Hi , i searched tha forum but couldn't find a l2 walker mana script anywhere...If anyone has one ready or knows where i can donwload one please let me know...

Posted

CheckMP.SEC

Label(ManaCheck)
CharStatus(MP,<=,50)
{
USEITEM(Mana Potion[iD=728])
}
Delay(1)
Call(ManaCheck)

 

CheckMPHP.SEC

Label(ManaCheck)
CharStatus(MP,<=,50)
{
USEITEM(Mana Potion[iD=728])
Delay(5)
USEITEM(Mana Potion[iD=728])
}
Delay(5)
CharStatus(HP,<=,90)
{
USEITEM(Greater Healing Potion[iD=1539])
}
Delay(1500)
Call(ManaCheck)

 

CheckCPHPMP.SEC (doesnt actually read cp, l2w ftl)

Label(Check)
CharStatus(HP,<=,90)
{
USEITEM(Greater CP Potion[iD=5592])
Delay(10)
USEITEM(Greater CP Potion[iD=5592])
}
Delay(1)

CharStatus(HP,<=,99)
{
USEITEM(Greater Healing Potion[iD=1539])
Delay(10)
USEITEM(Greater Healing Potion[iD=1539])
}
Delay(1)

CharStatus(MP,<=,70)
{
USEITEM(Mana Potion[iD=728])
Delay(10)
USEITEM(Mana Potion[iD=728])
}
Delay(1)
Call(Check)

 

you may have to change your id's, simply login ig walker to your server, use the script make part and one of the dropdowns has all your items in your inv w/ID.

That's what I use. Have been for years.. Best part about it, walker runs scripts even not verified :)

Posted

I was using this version of script, it uses also mana pots and mana elixir, for dragon-network.

 

//
// ENHANCED MANA SCRIPT (WORKS AT DRAGON-NETWORK SERVERS)
//
Label(INICIO)
CharStatus(MP,<,60) //>>> VERIFY IF MANA IS LOW THAN 60% THAN USE E-MANA   <<<//
{
Label(MANA)
USEITEM(itemname[iD=8633])
USEITEM(Enhanced Mana Potion[iD=9264])
DELAY(19000) //>>> E-MANA POT DELAY (20000 = 20 SECONDS)    <<<//
CharStatus(MP,<,70) //>>> IF CHAR MP LOW THAN 90% USE E-MANA AGAIN  <<<//
{
Call(MANA)
}
}
DELAY(5000)
Call(INICIO)

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...