[Ajuda] Givecash fast commands
#6

Quote:
Originally Posted by PT
Посмотреть сообщение
usa zcmd e mt melhor: https://sampforum.blast.hk/showthread.php?tid=91354

depois fica assim o cmd

pawn Код:
CMD:givecash(playerid, params[])
{
    new giveplayerid, amount;
    if (sscanf(params, "ud", giveplayerid, amount)) return SendClientMessage(playerid, 0xFF0000AA, "Usage: /givecash [playerid/partname] [amount]");
    else if (giveplayerid == INVALID_PLAYER_ID) return SendClientMessage(playerid, 0xFF0000AA, "Player not found");
    else if (amount > GetPlayerMoney(playerid)) SendClientMessage(playerid, 0xFF0000AA, "Insufficient Funds");
    else
    {
        GivePlayerMoney(giveplayerid, amount);
        GivePlayerMoney(playerid, 0 - amount);
        SendClientMessage(playerid, 0x00FF00AA, "Money sent");
        SendClientMessage(giveplayerid, 0x00FF00AA, "Money received");
    }
    return 1;
}
Eu ja fiz a include do zcmd, mas continua dando erro... e pus na public OnPlayerCommandReceived(playerid, cmdtext[]) como explicam no tutorial

pawn Код:
C:\Users\Shiba\Desktop\SAMP Server\gamemodes\OPS.pwn(4470) : error 029: invalid expression, assumed zero
C:\Users\Shiba\Desktop\SAMP Server\gamemodes\OPS.pwn(4470) : error 017: undefined symbol "cmd_givecash"
C:\Users\Shiba\Desktop\SAMP Server\gamemodes\OPS.pwn(4470) : error 029: invalid expression, assumed zero
C:\Users\Shiba\Desktop\SAMP Server\gamemodes\OPS.pwn(4470) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


4 Errors.
Reply


Messages In This Thread
Givecash fast commands - by Netinho_the_killer - 11.09.2013, 19:10
Re: Givecash fast commands - by PT - 11.09.2013, 19:19
Re: Givecash fast commands - by Netinho_the_killer - 11.09.2013, 20:31
Re: Givecash fast commands - by PT - 11.09.2013, 20:34
Re: Givecash fast commands - by mau.tito - 11.09.2013, 22:12
Re: Givecash fast commands - by Netinho_the_killer - 12.09.2013, 11:24
Re: Givecash fast commands - by Spenzert - 12.09.2013, 12:01
Re: Givecash fast commands - by PT - 12.09.2013, 13:16
Re: Givecash fast commands - by mau.tito - 12.09.2013, 15:39
Re: Givecash fast commands - by PT - 12.09.2013, 15:44

Forum Jump:


Users browsing this thread: 2 Guest(s)