|
Funkciója:
Lekéri a játékos pozícióját
Paraméterei:
GetPlayerPos(playerid, Float:x, Float:y, Float:z);
Példa:
-
public OnPlayerCommandText(playerid, cmdtext[])
-
{
-
if (strcmp("/getpos", cmdtext, true) == 0)
-
{
-
new Float:pos[3], str[200];
-
GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
-
format(str,sizeof str,"Pozíciód: X: %f, Y: %f, Z: %f",pos[0],pos[1],pos[2]);
-
SendClientMessage(playerid, 0x24FF0AB9, str);
-
return 1;
-
}
-
return 0;
-
}
| |