08.03.2014, 22:19
First, why the hell do this?
If you can simply do
Second, you can't create a var that starts with a number.
Always start with a letter. (The only symbol i know it's possible is @). Fixing this, the code should compile fine.
pawn Код:
CMD:mycmd(playerid,params[])
{
#pragma unused params
// ...
pawn Код:
CMD:mycmd(playerid)
Always start with a letter. (The only symbol i know it's possible is @). Fixing this, the code should compile fine.