10.03.2009, 19:38
Quote:
|
Originally Posted by Pandabeer1337
did you check if the player is in the area? if yes, in a timer? because else you would need to be there @ gamemodeinit but you cant
![]() |
Код:
public OnPlayerEnterArea(playerid,areaid)//Somewhere else not in a function
{
if (areaid==0) SendClientMessage(playerid, COLOR_GREEN, "Welcome to safe zone");
return 1;
}
Код:
public OnPlayerExitArea(playerid,areaid)//Somewhere else not in a function
{
if (areaid==0) SendClientMessage(playerid, COLOR_YELLOW, You left the safe zone");
return 1;


