Jump to content
  • 0

check party if all the member and leader has the TCG?


Question

Posted

how to script that when you click and npc it will check all users in the party and when the npc confirms they all have the tcg i will party warp them to the specific dungeon and the npc will delete all the item in the players inventory......

3 answers to this question

Recommended Posts

Posted (edited)

Editing

prontera,150,160,5	script	ghjkl	456,{

.@itemid = 7227;
.@amount = 10;
.@event_map$ = "prontera";
.@aid = getcharid(3);

if( !getcharid(1) ) {
	mes "You are not in a party.";
	close;
}

getpartymember getcharid(1),0;
getpartymember getcharid(1),1;
getpartymember getcharid(1),2;

while( .@i < $@partymembercount ){
	if( isloggedin( $@partymemberaid[.@i], $@partymembercid[.@i] ) ) {
		attachrid( $@partymemberaid[ .@i ] );
		if( countitem( .@itemid ) < .@amount ){
			attachrid( .@aid );
			mes "Your member "+$@partymembername$[.@i]+" haven't "+.@amount+" "+getitemname( .@itemid )+".";
			close;
		}
		.@log_in[ getarraysize( .@log_in ) ] = $@partymemberaid[ .@i ];
	}
	.@i++;
}

for( .@i = 0; .@i < getarraysize( .@log_in ); .@i++ )
	delitem .@itemid, .@amount, .@log_in[ .@i ];

attachrid( .@aid );
dispbottom "All got items.";

warpparty .@event_map$, 150,150, getcharid(1);
close;
}

Edited by Capuche

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...