03.07.2017, 15:24
Greetings,
I want to know if it's possible to make a system like you type a cmd, and it tells you if that specific player is standing in your left side or right side like here.
I want to know if it's possible to make a system like you type a cmd, and it tells you if that specific player is standing in your left side or right side like here.
PHP код:
CMD:getpos(playerid, params[])
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInRangeOfPoint(i, 6.0, x, y ,z) && i != playerid)
{
//what to do here
//and make a string like where the player is standing
//ex: ID 9 is standing at the right side
}
}
return 1;
}