27.08.2009, 21:15
All my commands end with 'return 1;'.
-----------------------------
Fixed it.
I had like this:
but I have changed to this and it works:
-----------------------------
Fixed it.
I had like this:
pawn Code:
zcmd(l,playerid,params[])
{
return zcmd(local,playerid, params);
}
zcmd(local,playerid,cmdtext[])
{
....
return 1;
}
pawn Code:
zcmd(l,playerid,params[])
{
return zcmd_local(playerid, params);
}
zcmd(local,playerid,cmdtext[])
{
....
return 1;
}