11.02.2011, 18:53
WOW! @Rock18 - Dude, that code what you gave him is not wrong or anything, but that code will do a totally different thing from what he asked.
@Spiral - When you are doing the commands in ZCMD you NEED to return them as true/false.
Your command should look like:
@Spiral - When you are doing the commands in ZCMD you NEED to return them as true/false.
Your command should look like:
pawn Код:
COMMAND:help(playerid, params[])
{
SendClientMessage(playerid, COLOR_WHITE,"IT WORKS!");
return 1; // You see this. You need to return it as a false/true!
}