Jump to content
  • 0
Sign in to follow this  
mrlongshen

@buff

Question

8 answers to this question

Recommended Posts

  • 0
-	script	Sample	-1,{	OnInit:		bindatcmd "buff", strnpcinfo( 3 )+"::OnBuff";		end;	OnBuff:		if ( getgroupid() > 40 ) end;		specialeffect2 EF_INCAGILITY; sc_start SC_INC_AGI,240000,10;		specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10;		end;}

Share this post


Link to post
Share on other sites
  • 0

change:

bindatcmd "buff", strnpcinfo( 3 )+"::OnBuff";

 

into:

bindatcmd("buff",strnpcinfo(0)+"::OnBuff",0,99);

 

 

and take of that if ( getgroupid() > 40 ) end; check :P

Share this post


Link to post
Share on other sites
  • 0

change:

bindatcmd "buff", strnpcinfo( 3 )+"::OnBuff";

 

into:

bindatcmd("buff",strnpcinfo(0)+"::OnBuff",0,99);

 

 

and take of that if ( getgroupid() > 40 ) end; check :P

 

what do you means sir ? 

remove the if ( getgroupid() > 40 ) end; ????????

Share this post


Link to post
Share on other sites
  • 0

 

change:

bindatcmd "buff", strnpcinfo( 3 )+"::OnBuff";

 

into:

bindatcmd("buff",strnpcinfo(0)+"::OnBuff",0,99);

 

 

and take of that if ( getgroupid() > 40 ) end; check :P

 

what do you means sir ? 

remove the if ( getgroupid() > 40 ) end; ????????

 

this

Share this post


Link to post
Share on other sites
  • 0

 

 

change:

bindatcmd "buff", strnpcinfo( 3 )+"::OnBuff";

 

into:

bindatcmd("buff",strnpcinfo(0)+"::OnBuff",0,99);

 

 

and take of that if ( getgroupid() > 40 ) end; check :P

 

what do you means sir ? 

remove the if ( getgroupid() > 40 ) end; ????????

 

this

 

so gm also can use this command right ?

Share this post


Link to post
Share on other sites
  • 0

well, anyone can use this command (from lvl 0 to lvl 99) if you really want so that gms of lvl 40 or more don't use it, then add back:

 

 

if ( getgroupid() >= 40 ) end;

Share this post


Link to post
Share on other sites
  • 0

is it possible to make it target? :P

 

like when i use @buff the mouse arrow will become like when using skills, and you can use it on players...

 

i want to use it for complete buffs, in one click.. :D

Share this post


Link to post
Share on other sites
  • 0

well, anyone can use this command (from lvl 0 to lvl 99) if you really want so that gms of lvl 40 or more don't use it, then add back:

 

 

if ( getgroupid() >= 40 ) end;

 

ok thanks bro :)

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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