storing string into varialbe issue, help
#6

pawn Код:
forward forcedtochange(playerid);
new storedforcedmode[41];

COMMAND:forcemode(playerid, params[])
{
    if (PlayerInfo[playerid][pAdminLevel] >=3)
    {
        new text[40];
        if (sscanf(params, "s[40]",text))
        {
            SendClientMessage(playerid, COLOR_GOLD, "Usage: /forcemode <modename>"); return 1;
        }
        format(storedforcedmode, sizeof(storedforcedmode), "changemode %s",text);
        SetTimer("forcedtochange", 535000,0);
    }
    return 1;
}
public forcedtochange(playerid)
{
    SendRconCommand(storedforcedmode);
    return 1;
}
Reply


Messages In This Thread
storing string into varialbe issue, help - by Hijolion - 04.10.2010, 22:51
Re: storing string into varialbe issue, help - by LarzI - 04.10.2010, 23:53
Re: storing string into varialbe issue, help - by samgreen - 05.10.2010, 00:00
Re: storing string into varialbe issue, help - by Hijolion - 06.10.2010, 00:18
Re: storing string into varialbe issue, help - by Voldemort - 06.10.2010, 06:03
Re: storing string into varialbe issue, help - by LarzI - 06.10.2010, 08:10
Re: storing string into varialbe issue, help - by Hijolion - 06.10.2010, 23:35

Forum Jump:


Users browsing this thread: 1 Guest(s)