Jump to content
  • 0

eathena healer during woe


Vincent

Question


  • Group:  Members
  • Topic Count:  130
  • Topics Per Day:  0.03
  • Content Count:  528
  • Reputation:   18
  • Joined:  09/11/12
  • Last Seen:  

Hi,

how can i disabled my healer during WoE?

 

i Use this really clean script:

 

prontera,150,150,5	script	Healer	99,{

    percentheal 100,50;

   // sc_start SC_BLESSING,360000,10;

   // sc_start SC_INCREASEAGI,360000,10;

    end;

    }


 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

prontera,150,150,5	script	Healer	99,{
if( !agitcheck() && !agitcheck2() ){
	percentheal 100,50;
	// sc_start SC_BLESSING,360000,10;
	// sc_start SC_INCREASEAGI,360000,10;
}
end;
}

 

refer agitcheck , agitcheck2

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

*agitcheck()

*agitcheck2()

These function will let you check whether the server is currently in WoE mode

(or WoE SE mode if the second function is called) and will return 1 if War of

Emperium is on and 0 if it isn't.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  130
  • Topics Per Day:  0.03
  • Content Count:  528
  • Reputation:   18
  • Joined:  09/11/12
  • Last Seen:  

prontera,150,150,5    script    Healer    99,{

if(*agitcheck== 0 ) {
    percentheal 100,50;
}else 

{
    percentheal 0,0;;
}end;

}
 

Will this work? Im not a Coder :D

Oh there is a awnser ;)

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

Guest
Answer this question...

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