caspa Posted June 13, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share Posted June 13, 2013 (edited) can i request a script where if a guild leader exchange 1x TCG Card to the npc it'll give him and all the members who's currently online on the guild a 100x ygg berry? Edited June 13, 2013 by caspa Quote Link to comment Share on other sites More sharing options...
Skorm Posted June 13, 2013 Group: Forum Moderator Topic Count: 33 Topics Per Day: 0.01 Content Count: 1282 Reputation: 393 Joined: 02/03/12 Last Seen: April 11 Share Posted June 13, 2013 (edited) Untested! prontera,151,151,5 script Exchange 51,{ mes "[Ygg Exchange]"; mes "I can give all your guild members 100 Ygg Berries in exchange for 1 TCG!"; next; if(strcharinfo(0)!=getguildmaster(getcharid(2))) { mes "[Ygg Exchange]"; mes "I'm sorry but you're not the guild master."; close; } if(select("Yes:No")&2) { mes "[Ygg Exchange]"; mes "Alright comeback anytime!"; close; } if(!countitem(7227)) { mes "[Ygg Exchange]"; mes "I'm sorry but you don't seem to have any Ygg berries at all!"; close; } delitem 7227,1; query_sql( "SELECT `account_id` FROM `guild_member` WHERE `guild_id` = "+getcharid(2)+"", .@account_id ); for(set .@i,0; .@i<getarraysize(.@account_id);set .@i,.@i+1){ if(isloggedin(.@account_id[.@i])) charcommand "#item "+rid2name(.account_id[.@i])+" 607 100"; } end; } Edited June 13, 2013 by Skorm Quote Link to comment Share on other sites More sharing options...
Question
caspa
can i request a script where if a guild leader exchange 1x TCG Card to the npc it'll give him and all the members who's currently online on the guild a 100x ygg berry?
Edited by caspaLink to comment
Share on other sites
1 answer 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.