help me with command
#1

Hi.I wanna to make command givexp.I'm using this level/exp system.Thanks
Reply
#2

pawn Код:
CMD:givexp(playerid, params[])
{
    new id, amount, string[128];
    if(sscanf(params, "ud", id, amount)) return SendClientMessage(playerid, -1, "Usage: /givexp [playerid/name] [amount]");
    {
        PlayerInfo[id][Exp] += amount;
        format(string, sizeof(string), "XP Given: %d", amount);
        SendClientMessage(id, -1, string);
    }
    return 1;
}
Reply
#3

i wanna to add it in onplayercommandtext.I wanna only admin with level 4 to use it.And i wanna to give exp to all players.And please make message "Nick give to all players ... exp"
Reply
#4

pawn Код:
CMD:givexp(playerid, params[])
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "You must be admin to use this command.");
    new amount, string[128], name[24];
    GetPlayerName(playerid, name, sizeof(name));
    if(sscanf(params, "d", amount)) return SendClientMessage(playerid, -1, "Usage: /givexp [amount]");
    {
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            PlayerInfo[id][Exp] += amount;
        }
        format(string, sizeof(string), "Admin %s gave %d XP to all players.", name, amount);
        SendClientMessageToAll(-1, string);
    }
    return 1;
}
Reply
#5

thanks
Reply
#6

please make it
pawn Код:
if(strcmp(cmd, "/givexp", true) == 0)
Reply
#7

First thing Hugoca i think u did on wrong section.
https://sampforum.blast.hk/showthread.php?tid=187229

becuse u asking how to make it
think it.
Reply
#8

I think this isn't wrong section
Reply
#9

bump ...
Reply
#10

if you're asking for script then post in the script request thread
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)