Quote:
Originally Posted by =WoR=G4M3Ov3r
PHP код:
forward SendTaxiMessage(color, stringz[])
public SendTaxiMessage(color, stringz[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Taxijob[i] == 1) return SendClientMessage(i, color, stringz);
}
}
|
You forgot to include the semicolon at the end of the forward declaration, so the code will fail to compile.
pawn Код:
forward SendTaxiMessage(color, stringz[]);