18.07.2014, 16:59
I am working on to create commands like /givemoney and anothers but those cmds are not working.
Error:
Please explain me that how to fix it and how to add more commands cause I am learning pawn and I want to learn it really quickly. Thanks for your time.
Код:
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:\Slymind-Projects\gamemodes\slymind.pwn(437) : warning 203: symbol is never used: "givemoney" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning.