Vincent Posted March 9, 2013 Posted March 9, 2013 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; } Quote
Capuche Posted March 9, 2013 Posted March 9, 2013 *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. Quote
Emistry Posted March 9, 2013 Posted March 9, 2013 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 Quote
Vincent Posted March 9, 2013 Author Posted March 9, 2013 (edited) 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 Oh there is a awnser Edited March 9, 2013 by King555 Quote
Question
Vincent
Hi,
how can i disabled my healer during WoE?
i Use this really clean script:
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.