/announce cmd help
#4

Try this

pawn Код:
CMD:announce(playerid, params[])
{
    if(APlayerData[playerid][PlayerLevel] < 2 && !IsPlayerAdmin(playerid))return SendClientMessage(playerid,-1,"Error: No command for you!");
    new text[64], time, style;
    if (sscanf(params, "iis[64]", style, time, text)) return
    SendClientMessage(playerid, COLOR_WHITE, "Usage: /announce <style[0-6]> <time in ms> <text>");
    if (strlen(text) > 64) return
    SendClientMessage(playerid, COLOR_WHITE, "Message too long please shorten it!");
    if(style == 2) return SendClientMessage(playerid, COLOR_WHITE, "Bug with style 2 don't use it!");
    if (style < 0 || style > 6) return
    SendClientMessage(playerid, COLOR_WHITE,"Invalid style!");
    if (time > 20*1000) return
    SendClientMessage(playerid, COLOR_WHITE, "No longer than 20 seconds!");
    GameTextForAll(text, time, style);
    return 1;
}
Reply


Messages In This Thread
/announce cmd help - by S4ba - 08.03.2013, 19:05
Re: /announce cmd help - by NathNathii - 08.03.2013, 19:09
Re: /announce cmd help - by S4ba - 08.03.2013, 19:10
Re: /announce cmd help - by NathNathii - 08.03.2013, 19:31
Re: /announce cmd help - by S4ba - 08.03.2013, 19:33
Re: /announce cmd help - by PabloDiCostanzo - 08.03.2013, 19:35
Re: /announce cmd help - by NathNathii - 08.03.2013, 19:35
Re: /announce cmd help - by S4ba - 08.03.2013, 19:47
Re: /announce cmd help - by NathNathii - 08.03.2013, 19:48
Re: /announce cmd help - by PabloDiCostanzo - 08.03.2013, 21:50

Forum Jump:


Users browsing this thread: 5 Guest(s)