Jump to content
  • 0

Question regarding Addrid(5)


Aisha

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  27
  • Reputation:   2
  • Joined:  06/27/17
  • Last Seen:  

*addrid(<type>{,<flag>{,<parameters>}});

This command will attach other RIDs to the current script without detaching the
invoking RID. It returns 1 if successful and 0 upon failure.

<type> determines what RIDs are attached:
 0: All players in the server.
 1: All players in the map of the invoking player, or the invoking NPC if no player is attached.
 2: Party members of a specified party ID.
    [ Parameters: <party id> ]
 3: Guild members of a specified guild ID.
    [ Parameters: <guild id> ]
 4: All players in a specified area of the map of the invoking player (or NPC).
    [ Parameters: <x0>,<y0>,<x1>,<y1> ]
 5: All players in the map.
    [ Parameters: "<map name>" ]
 Account ID: If type is Account ID, attach the specified account ID.

So I would like to ask, does the number 5 type accept instanced map names? For example, players are inside an instance, and I would like to attach every single one of them onto a certain event script, would addrid(5) do the trick, or is there anything else to add? Perhaps:

addrid(5,instance_mapname("prontera"));

Or would addrid(1); also work?

Additionally, regarding the 4th type, can somebody show me an example of how it works? Because I am kind of confused on how to use it. Thank you.

Edited by Aisha
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   344
  • Joined:  10/17/12
  • Last Seen:  

prontera,156,165,1	script	example_addrid	111,{
	addrid(4,148,191,162,174);// will grab everyone on prontera inbetwen those xy and xy
	warp "prontera",156,160;//then warp them to 
}

Typically addrid(1); would be better then trying to call an instance map via addrid(5,"map") because chances are your npc is inside the instance already and unless say you wanted to bring all players from previous map to the map your on and the Instance is not a Party or Guild Instance which most likely is not the case


 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  27
  • Reputation:   2
  • Joined:  06/27/17
  • Last Seen:  

What I wanted to do was attach players into a script inside the instance, yes the npc is inside the instance.

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

×
×
  • Create New...