This extension plugin requires Alpha NET Z to work.
This extension adds an in-game interaction menu to interact with other players.
To activate the player menu, right-click on another player.
The player menu includes a set of default commands that you can customize (change text or hide completely).
You can configure default commands via Plugin Parameters: Default Commands
You can add your own commands using the Custom Commands parameter.
Custom commands will appear after default commands in the menu.
Each command can trigger a specified Common Event.
Both default and custom commands have a set of configurable options. See the command parameters for details.
You can call default player menu commands using the script call: nAPI.callPlayerMenuAction(ACTION, ACTOR_ID)
Parameters:
-
ACTION- One of the default actions (constants):trade- Initiates trading with another playerfollow- Starts following another playerstatus- Views another player's status
-
ACTOR_ID- The actor ID of the other player to interact with
You can also get another player's Actor ID using nAPI script calls.
Examples:
nAPI.callPlayerMenuAction('trade', 1); // Starts trade with the player who selected Reid (ID == 1)
nAPI.callPlayerMenuAction('follow', 2); // Starts following the player who selected Priscilla (ID == 2)
