08.02.2013, 21:02
Okay I have failed, I didn't see that you posted the full code.
To fix all errors, remove line 51, and remove that 'new difference;' in the code.
Fixed:
To fix all errors, remove line 51, and remove that 'new difference;' in the code.
Fixed:
pawn Код:
forward AntiCash();
public AntiCash()
{
foreach(Player, i)
{
if(GetPlayerMoney(i) != PlayerCash[i])
{
ResetPlayerMoney(i);
GivePlayerMoney(i,PlayerCash[i]);
return 1;
}
}
return 1;
}