@buff

Code:
-	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;}
 
change:

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

into:

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

and take of that if ( getgroupid() > 40 ) end; check
default_tongue.png


 
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;

 
is it possible to make it target?
default_tongue.png


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..
default_biggrin.png


 
Back
Top