01.08.2015, 15:15
I want to teleport if i'm admin with click on map.
I try this.
And this.
But when i click map, i don't get the position where i clicked, and i go under the map.
I try this.
PHP код:
public OnGameModeInit()
{
AllowAdminTeleport(1);
return 1;
}
PHP код:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ)
{
new Float:x, Float:y, Float:z;
if(!IsPlayerAdmin(playerid))
return 1;
if(IsPlayerAdmin(playerid))
SetPlayerPosFindZ(playerid, x, y, z);
return 1;
}