Jump to content
  • 0
Sign in to follow this  
madtoyz

specialeffect2 "LK_BERSERK",1;

Question

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; ?

Share this post


Link to post
Share on other sites

9 answers to this question

Recommended Posts

  • 0

 

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;    //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;}
Edited by xienne15

Share this post


Link to post
Share on other sites
  • 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; ?

 

/wiki/Specialeffect2

 

 

  • Perform the item heal effect on the running NPC.

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

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.

specialeffect 7, PARTY_WOS;

 

 

Share this post


Link to post
Share on other sites
  • 0

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.
Edited by xienne15

Share this post


Link to post
Share on other sites
  • 0

 

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

Share this post


Link to post
Share on other sites
  • 0

 

 

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?

Share this post


Link to post
Share on other sites
  • 0
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.

Share this post


Link to post
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.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.