zcmd ERROR
#1

pawn Код:
COMMAND:givemoney(playerid, params[])
{
    if (IsPlayerAdmin(playerid))
    {
        new
          toplayerid, // the player we want to give money to
          amount;
        // extracting player's ID and amount from params
        if (!sscanf(params, "ii", toplayerid, amount))
        {
          if (toplayerid != INVALID_PLAYER_ID)
          {
            new
              message[40];
            GivePlayerMoney(toplayerid, amount);
            format(message, sizeof(message), "You got $%d from admin!", amount);
            SendClientMessage(toplayerid, 0x00FF00FF, message);
          }
          else SendClientMessage(playerid, 0xFF0000FF, "That player is not connected");
        }
        else SendClientMessage(playerid, 0xFFFFFFFF, "Usage: /givemoney <playerid> <amount>");
    }
    else SendClientMessage(playerid, 0xFF0000FF, "Only admins can use this command!");
    return 1;
}
Код:
C:\Documents and Settings\Administrateur\Bureau\Dev\gamemodes\Walkies.pwn(274) : error 017: undefined symbol "givemoney"
C:\Documents and Settings\Administrateur\Bureau\Dev\gamemodes\Walkies.pwn(275) : warning 217: loose indentation
C:\Documents and Settings\Administrateur\Bureau\Dev\gamemodes\Walkies.pwn(282) : error 017: undefined symbol "params"
i use sscanf and zcmd
Reply


Messages In This Thread
zcmd ERROR - by AzTeCaS - 12.01.2011, 10:17
Re: zcmd ERROR - by HyperZ - 12.01.2011, 11:20
Re: zcmd ERROR - by AzTeCaS - 12.01.2011, 11:40
Re: zcmd ERROR - by Outcast - 12.01.2011, 11:52

Forum Jump:


Users browsing this thread: 6 Guest(s)