11.08.2014, 10:02
Hi all. I try to make a function like this: when player is safe zone, player recive a message with that.
With this code the player is not reciving any message.
I have no ideea what i need to do
pawn Код:
forward SafeZone(playerid);
public SafeZone(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, 155,1642.0690,-2241.6035,13.4940))
{
SCM(playerid, -1, "You are in the safe zone. DON'T SHOT ANYBODY.");
}
return 1;
}
I have no ideea what i need to do