Jump to content

Party Warper to Dungeon


Recommended Posts


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  24
  • Reputation:   0
  • Joined:  07/22/12
  • Last Seen:  

hi can you make me a script of npc to 3-5 players to Guild Dungeon please... Help me..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   10
  • Joined:  01/01/12
  • Last Seen:  

prontera,x,y,dir<tab>Dungeon Warper</tab>46,{

set .@PID, getcharid(1);

getpartymember(.@PID);

if($@partymembercount > 5 && $@partymembercount < 3) close;

warpparty "guild_dun03",0,0,.@PID;

}

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2351
  • Joined:  10/28/11
  • Last Seen:  

if($@partymembercount > 5 && $@partymembercount < 3) close;

should be

if($@partymembercount > 5 || $@partymembercount < 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;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  24
  • Reputation:   0
  • Joined:  07/22/12
  • Last Seen:  

-Thank you guys ill going to try this scripts /kis

please correct me if im wrong... :(

prontera,146,167,4 Dungeon Warper 46,{
if( !getcharid(1) ){
  mes "You need party.";
  close;
}
set .@PID, getcharid(1);
getpartymember(.@PID);
if($@partymembercount > 3 || $@partymembercount < 2) close;
warpparty "guild_dun03",0,0,.@PID;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   10
  • Joined:  01/01/12
  • Last Seen:  

Lol. I didn't see it. hahaha

Edited by Euro
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   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.

×
×
  • Create New...