03.06.2013, 00:01
Yes, and for that you use IsPlayerInRangeOfPoint.
pawn Код:
CMD:gate(playerid,params[])
{
if(PlayerInfo[playerid][pAdmin] == 8055)
{
if(IsPlayerInRangeOfPoint(playerid, 15.0, -1209.48816, -1071.85449, 123.64065)) // Is Player within 15 meters of this gate?
{
MoveObject(impoundgate,-1209.48816, -1071.85449, 123.64065,1.5); // if so, move the gate.
}
if(IsPlayerInRangeOfPoint(playerid, 15.0, /*X,Y,Z Cords for another gate*/)) // Continue with other gates.
{
//Move another gate here.
}
}
else return SendClientMessage(playerid, COLOR_RED, "You are not the owner of this server.");
return 1;
}