Jump to content

[Script] changing weapons when frenzy up etc...


.assassin

Recommended Posts

Hello, i am playing on Dragon [dragon-network]. I want to go with my tyr/des to cata's. After IL update to use frenzy effect (100%) we have to use 2h sword weapon (like HD). To use totems (like puma, bison) we have to use splinter's. Bison and frenzy/guts working only when hp < 30%. As defualt after use totems i wanna to use always 2h sword. Do you have any script that could do fallowing things:

 

//////////////////////////////////////////////////

if (pumaTotem(reuse_ready)) {set_up(demon_splinters); pumaTotem(use); set_up(HD);

 

if (hp < 30% ) {

 

if (frenzy(reuse_ready)) {set_up(HD); frenzy(use);} // if frenzy reuse is ok

else { if (guts(reuse_ready)) {guts(use); battleRoar(use);} }

 

//////////////////////////////////////////////////

 

Well i dont know how to code it in l2w script code  :P

Link to comment
Share on other sites

Is possible to do that in this way ?

 

If (pumaToemRemain()) {useWeapon(demon_splinters); useSkill(pumaTotem); useWeapon(hd); }

 

If (frenzyReuseReady()) {useSkill(frenzy);} else {useSkill(guts);}

 

Is it possible to code it in l2walker script language ?

Need to learn l2w script code, but need this script very fast. Thanks a lot for u help!

Link to comment
Share on other sites

Walker scripts are faaaaaar more basic than that

 

You can only use Delays for what you're trying to achieve

Ok, but defualt i would like to use 2h sword - HD. I would like to change weapon to splinters only when totem remain (delay).

 

 

so it should look like this, right ? :

 

setup(splinters);

useSkill(pumaTotem);

setup(hd);

delay(xxx);

 

But how to do this correctly ?

 

Sry for that basic questions :) Thanks for anwser

Link to comment
Share on other sites

I made my script for l2loyal server farming in gaint cave or raids, as u know u need to have max as u can to get fastest reuse delay for frenzy, so the best way is use dagger with rsk.haste... and ofc tallum heavy armor any otehr custom taht gives more atk.spd, max +5dex, atk spd tattooo and ect.... to get max atk spd and songs for fastest resuse skills... So my script:

LABEL(Check HP)
CHARSTATUS(hp,<=,28)
{
CALL(Frenzy)
}
DELAY(150)
JMP(Check HP)

LABEL(Frenzy)
{
SET(L2Walker,Disable)
}
DELAY(1000)
USEITEM(Cursed Dagger[Rsk. Haste])
DELAY(800)
USESKILL(Frenzy)
DELAY(800)
USESKILL(Zealot)
DELAY(800)
USESKILL(Rage)
DELAY(800)
USEITEM(Heavens Divider[Focus])
Delay(800)
{
SET(L2Walker,Enable)
}
DELAY(800)
USEITEM(Mana Potion[iD=728])
DELAY(200)
USEITEM(Mana Potion[iD=728])
DELAY(80000)
JMP(Check HP)]

Link to comment
Share on other sites

  • 4 weeks later...

Try this its work for me

//BISON

//

LABEL(BiZON)

{

USEITEM(Blood Tornado[iD=269])

USESKILL(Bison Spirit Totem)

DELAY(1000)

USEITEM(Heaven's Divider[iD=6372])

DELAY(180000)

JMP(BIZON)

CALL(BIZON)

}

i am using blood tornado only to use totems bizon have reuse 3 min so delay is 180000 ms and set up frenzy in combat heal when hp lower than 30 % use skil frenzy you have 3 slots there so uou can put zealot too an what you want other like gust you can set up in buff option i play in DN so its work have funn  ;D

Link to comment
Share on other sites

i dont think that walker can make it as a script

Omg how many time i need to say i make this script not use rec sript youst make him self and its workin on dragon-network serwers thats all first check then make coments

Link to comment
Share on other sites

  • 3 weeks later...

Try this its work for me

//BISON

//

LABEL(BiZON)

{

USEITEM(Blood Tornado[iD=269])

USESKILL(Bison Spirit Totem)

DELAY(1000)

USEITEM(Heaven's Divider[iD=6372])

DELAY(180000)

JMP(BIZON)

CALL(BIZON)

}

i am using blood tornado only to use totems bizon have reuse 3 min so delay is 180000 ms and set up frenzy in combat heal when hp lower than 30 % use skil frenzy you have 3 slots there so uou can put zealot too an what you want other like gust you can set up in buff option i play in DN so its work have funn  ;D

 

useful,ty

Link to comment
Share on other sites

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...