note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
SelectObject
Description
Display the cursor and allow the player to select an object. OnPlayerSelectObject is called when the player selects an object.
Name | Description |
---|---|
playerid | The ID of the player that should be able to select the object |
Returns
This function does not return any specific values.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/select", true))
{
SelectObject(playerid);
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: Please select the object you'd like to edit!");
return 1;
}
return 0;
}
Related Functions
- CreateObject: Create an object.
- DestroyObject: Destroy an object.
- MoveObject: Move an object.
- EditObject: Edit an object.
- EditPlayerObject: Edit an object.
- EditAttachedObject: Edit an attached object.
- CancelEdit: Cancel the edition of an object.
- OnPlayerSelectObject: Called when a player selected an object.