Jump to content
  • 0
Sign in to follow this  
deviruzy

Summoning or calling party members to party leader's location.

Question

 Hello.

 I am making a very simple party helping NPC and I was wondering if it's possible to summon partymembers. this is what I made so far:

 

party warp

 

 

 //getpartymember(getcharid(1));
 if (getpartyleader(getcharid(1),2) != getcharid(0) ) {
 mes "Only party leader can use this service.";
 close;
 }
 warpparty "payon",158,225,getcharid(1);
 close;

 

summoning / calling party members.

 

 if (getpartyleader(getcharid(1),2) != getcharid(0) ) {
 mes "Only party leaders can use this service.";
 close;
 }

 

 callparty getcharid(1);

 

 close;

 

 I am a newb so I could not find what to put on the red spot to summon party members to the location of party leader.

I used to have a NPC that can do that 6 years ago but I just couldn't remember or find it in eathena, rathena, or wikis.

 

Would you be kind enough to teach me please?

 

Thank you.

 

Edited by deviruzy

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

wow this is a great script. Thank you AnnieRuru.

 

 

 

 if(getpartyleader(getcharid(1),2) == getcharid(0)) {
getmapxy .@mapl$, .@xl, .@yl, 0;
warpparty .@mapl$, .@xl, .@yl, getcharid(1), .@mapl$;
}
 

I believe it's this part but I think I'm going to go with this one for this very NPC of mine.

 

 

 atcommand "@partyrecall "+strcharinfo(1);

 

I learned it form rAthena Board. Still, Thank you so much AnnieRuru. I'll keep this script in mind. I'm sure I'll be needing it later.

Share this post


Link to post
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
Answer this question...

×   Pasted as rich text.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.