Help with Offline set cash
#3

Quote:
Originally Posted by Jarnu
Посмотреть сообщение
Firstly.

Use sscanf (for better parameters and usage).

pawn Код:
CMD:osetcash(playerid,params[])
{
    new name[100], amount;
    if(sscanf(params,"s[100]d", name, amount)) return SendClientMessage(playerid, 0xFF0000FF,"Syntax: /osetcash [name][amount]");
    new string[128];
    format(string,sizeof(string),"Users/%s.ini",name);
    if(fexist(name))
    {
        new INI:File = INI_Open(string);
        INI_SetTag(File,"data");
        INI_WriteInt(File,"Cash", amount);
        INI_Close(File);
    }
    else { SendClientMessage(playerid,COLOR_YELLOW,"{FF0000}..::{FF6347}[Database]:Account not found{FF0000}::.."); }
    return 1;
}
Edit the above according to your need! thats just an example.
I tried your example but it says Account not found when i type.its fail to set user file cash amout :/
Command = /osetcash Name amount.
i modify like this

pawn Код:
CMD:osetcash(playerid,params[])
{
    new name[100], amount;
    if(PlayerInfo[playerid][pAdmin] >= 4)
    if(sscanf(params,"s[100]d", name, amount)) return SendClientMessage(playerid, 0xFF0000FF,"Syntax: /osetcash [name][amount]");
    new string[128];
    format(string,sizeof(string),"Users/%s.ini",name);
    if(fexist(name))
    {
        new INI:File = INI_Open(string);
        INI_SetTag(File,"data");
        INI_WriteInt(File,"Cash", amount);
        INI_Close(File);
        format(string, sizeof(string), "{FFFF33}[Admin-Warning]{FF0000}: {FFFFFF}%s has Offline give cash to %s.", GetPlayerNameEx(playerid), params,amount);
        AdminBroadCast(COLOR_LIGHTRED, string);
    }
    else { SendClientMessage(playerid,COLOR_YELLOW,"{FF0000}..::{FF6347}[Database]:Account not found{FF0000}::.."); }
    return 1;
}
Reply


Messages In This Thread
Help with Offline set cash - by zionx08 - 04.12.2012, 08:58
Re: Help with Offline set cash - by Jarnu - 04.12.2012, 09:05
Re: Help with Offline set cash - by zionx08 - 04.12.2012, 09:25
Re: Help with Offline set cash - by cosbraa - 04.12.2012, 09:27
Re: Help with Offline set cash - by zionx08 - 04.12.2012, 09:33
Re: Help with Offline set cash - by cosbraa - 04.12.2012, 09:41
Re: Help with Offline set cash - by Konstantinos - 04.12.2012, 09:42
Re: Help with Offline set cash - by zionx08 - 04.12.2012, 09:48
Re: Help with Offline set cash - by Konstantinos - 04.12.2012, 09:52
Re: Help with Offline set cash - by zionx08 - 04.12.2012, 10:03

Forum Jump:


Users browsing this thread: 1 Guest(s)