15.02.2012, 03:11
public isPlayerInArea()
{
printf("Player %i left a checkpoint!",playerid);
SendClientMessageToAll(0xDEEE20FF, "Hello.");
return 1;
}
-------------------------------------------------
SendClientMessageToAll(0xDEEE20FF, "Hello."); --- i added that above . but you dont need that
-----------------------------------------------------------------------
just
public isPlayerInArea()
{
printf("Player %i left a checkpoint!",playerid);
return 1;
}
{
printf("Player %i left a checkpoint!",playerid);
SendClientMessageToAll(0xDEEE20FF, "Hello.");
return 1;
}
-------------------------------------------------
SendClientMessageToAll(0xDEEE20FF, "Hello."); --- i added that above . but you dont need that
-----------------------------------------------------------------------
just
public isPlayerInArea()
{
printf("Player %i left a checkpoint!",playerid);
return 1;
}