04.07.2008, 09:35
pawn Code:
public OnPlayerEnterCheckpoint(playerid)
{
CPC_OnPlayerEnterCheckpoint(playerid);
return 1;
}
public OnPlayerEnterCheckpointEx(playerid, cpid, name[])
{
// Do something
if(cpid == cp_bank)
{
SendClientMessage(playerid, COLOR_GREEN, "***Welcome to the Bank***");
return 1;
}
return 1;
}