Skip to main content

BeginObjectSelecting

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

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))
{
BeginObjectSelecting(playerid);
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: Please select the object you'd like to edit!");
return 1;
}
return 0;
}