shan Posted August 26, 2012 Share Posted August 26, 2012 hi can you make me a script of npc to 3-5 players to Guild Dungeon please... Help me.. Quote Link to comment Share on other sites More sharing options...
Euro Posted August 27, 2012 Share Posted August 27, 2012 prontera,x,y,dir<tab>Dungeon Warper</tab>46,{ set [email protected], getcharid(1); getpartymember([email protected]); if([email protected] > 5 && [email protected] < 3) close; warpparty "guild_dun03",0,0,[email protected]; } Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 27, 2012 Share Posted August 27, 2012 if([email protected] > 5 && [email protected] < 3) close; should be if([email protected] > 5 || [email protected] < 3) close; you cant have both condition to appear at the same time.... how you gonna make a party that have more than 5 member AND less than 3 member at the same time ? and it would be better to add a check for party existance... if( !getcharid(1) ){ mes "You need party."; close; } Quote Link to comment Share on other sites More sharing options...
shan Posted August 27, 2012 Author Share Posted August 27, 2012 -Thank you guys ill going to try this scripts please correct me if im wrong... prontera,146,167,4 Dungeon Warper 46,{ if( !getcharid(1) ){ mes "You need party."; close; } set [email protected], getcharid(1); getpartymember([email protected]); if([email protected] > 3 || [email protected] < 2) close; warpparty "guild_dun03",0,0,[email protected]; } Quote Link to comment Share on other sites More sharing options...
Euro Posted August 27, 2012 Share Posted August 27, 2012 (edited) Lol. I didn't see it. hahaha Edited August 27, 2012 by Euro Quote Link to comment Share on other sites More sharing options...