14.07.2012, 21:24
Код:
C:\Documents and Settings\Administrador\Meus documentos\samp03dsvr_R2_win32\gamemodes\backup\BPS.pwn(9053) : warning 202: number of arguments does not match definition C:\Documents and Settings\Administrador\Meus documentos\samp03dsvr_R2_win32\gamemodes\backup\BPS.pwn(17585) : error 025: function heading differs from prototype C:\Documents and Settings\Administrador\Meus documentos\samp03dsvr_R2_win32\gamemodes\backup\BPS.pwn(28735) : warning 202: number of arguments does not match definition C:\Documents and Settings\Administrador\Meus documentos\samp03dsvr_R2_win32\gamemodes\backup\BPS.pwn(40965) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
pawn Код:
public PlayerFixRadio(playerid)
{
if(IsPlayerConnected(playerid))
{
SetTimer("PlayerFixRadio2", 1000, 0);
PlayerPlaySound(playerid, 1068, 0.0, 0.0, 0.0);
Fixr[playerid] = 1;
}
}
public PlayerFixRadio2()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Fixr[i])
{
PlayerPlaySound(i, 1069, 0.0, 0.0, 0.0);
Fixr[i] = 0;
}
}
}
}


