Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- prontera,155,173,4 script Republic Anarchy#menace 100,{
- if( !getcharid(1) ){
- mes "You need a party.";
- close;
- }
- set .@itemid,512;
- set .@amount,10;
- set .@rid,getcharid(3);
- getpartymember getcharid(1),0;
- getpartymember getcharid(1),2;
- while( .@i < $@partymembercount ){
- if( attachrid( $@partymemberaid[ .@i ] ) )
- if( countitem( .@itemid ) < .@amount ){
- attachrid( .@rid );
- mes "Your member "+$@partymembername$[.@i]+" didnt have "+.@amount+" "+getitemname( .@itemid )+".";
- close;
- }
- set .@i,.@i+1;
- }
- .@i = 0;
- while( .@i < $@partymembercount ){
- if( attachrid( $@partymemberaid[ .@i ] ) )
- delitem .@itemid,.@amount;
- set .@i,.@i+1;
- }
- attachrid( .@rid );
- mes "All got items.";
- close;
- }
Advertisement
Add Comment
Please, Sign In to add comment