Lumaktaw patungo sa pangunahing content

SelectObject

Description​

Display the cursor and allow the player to select an object. OnPlayerSelectObject is called when the player selects an object.

NameDescription
playeridThe 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;
}