19.01.2013, 08:30
can anyone help me with my problem?
Code:
Error:
or i will do this? but i dont know if this is right
is there any possible way than that? to shorter the code?
Code:
pawn Код:
dcmd_startmb(playerid, params[]) return MoneyBag();// i know params and player id is not used
pawn Код:
warning 203: symbol is never used: "params"
warning 203: symbol is never used: "playerid"
pawn Код:
dcmd_startmb(playerid, params[])
{
#pragma unused params
#pragma unused playerid
MoneyBag();
return 1;
}