specialeffect2 "LK_BERSERK",1;

madtoyz

New member
Messages
173
Points
0
function script Henshin { set @sr,1; specialeffect2 EF_HEAL; specialeffect2 EF_POTION_BERSERK; specialeffect2 "LK_BERSERK",1; unittalk getcharid(3),"Henshin!!"; disguise 1785; percentheal 100,0; sleep2 10000; undisguise; set @sr,0; end;}
im i correct do the sepcialeffect2 for  specialeffect2 "LK_BERSERK",1; ?

 
function script Henshin { set @sr,1; specialeffect2 EF_HEAL; specialeffect2 EF_POTION_BERSERK; specialeffect2 "LK_BERSERK",1; unittalk getcharid(3),"Henshin!!"; disguise 1785; percentheal 100,0; sleep2 10000; undisguise; set @sr,0; end;}
im i correct do the sepcialeffect2 for  specialeffect2 "LK_BERSERK",1; ?
/wiki/Specialeffect2

  • Perform the item heal effect on the running NPC.

Code:
specialeffect 7;
  • Perform the item heal effect on the running NPC, but only visible to the attached player.

Code:
specialeffect 7, SELF;
  • Perform the item heal effect on the running NPC, but only
    visible to party members of the player attached, excluding the player.

Code:
specialeffect 7, PARTY_WOS;
 
 
thats mean correct right ? specialeffect for skill BERSERK.
Do you want only the effect? or the effect that includes the status of berserk?

If you want just the effect, this would work.

Code:
specialeffect2 368; //Make the berserk effect(visual only)on the player.specialeffect 368; //Make the berserk effect(visual only)on the NPC.
 
Last edited by a moderator:
thats mean correct right ? specialeffect for skill BERSERK.
Do you want only the effect? or the effect that includes the status of berserk?

If you want just the effect, this would work.

specialeffect2 368; //Make the berserk effect(visual only)on the player.specialeffect 368; //Make the berserk effect(visual only)on the NPC.
When player "Henshin" (hp will 100% after disguise become monster) and will automatic use Berserk skill until died or until period of time around 10second

 
thats mean correct right ? specialeffect for skill BERSERK.
Do you want only the effect? or the effect that includes the status of berserk?

If you want just the effect, this would work.

specialeffect2 368; //Make the berserk effect(visual only)on the player.specialeffect 368; //Make the berserk effect(visual only)on the NPC.
When player "Henshin" (hp will 100% after disguise become monster) and will automatic use Berserk skill until died or until period of time around 10second
You mean you want the player to use the skill Berserk until he dies?

 
function script Henshin { set @sr,1; specialeffect2 EF_HEAL; specialeffect2 EF_POTION_BERSERK; unittalk getcharid(3),"Henshin!!"; disguise 1785; percentheal 100,0; sleep2 10000; undisguise; set @sr,0; end;} 

ya..when use this, player will disguiese then hp will restore 100% back,.

and i want add some new effect in this function,when player disguise + hp restore 100%. player recieve BERSERK skill 10second/until dead.

 
function script Henshin { set @sr,1; specialeffect2 EF_HEAL; specialeffect2 EF_POTION_BERSERK; unittalk getcharid(3),"Henshin!!"; disguise 1785; percentheal 100,0; sleep2 10000; undisguise; set @sr,0; end;} 

ya..when use this, player will disguiese then hp will restore 100% back,.

and i want add some new effect in this function,when player disguise + hp restore 100%. player recieve BERSERK skill 10second/until dead.
Code:
function    script    Henshin    {    set @sr,1;    specialeffect2 EF_HEAL;    specialeffect2 EF_POTION_BERSERK;    unittalk getcharid(3),"Henshin!!";    disguise 1785;    //will make the player berserk for 10 seconds.    specialeffect2 SC_BERSERK; sc_start SC_BERSERK,10000,1;    percentheal 100,0;    sleep2 10000;    undisguise;    set @sr,0;    end;}
 
Last edited by a moderator:
Back
Top