[Pedido] Alguem pode ajuda
#6

pawn Код:
#include <a_samp>
#include <ZCMD>
#include <sscanf>

new Text:textocnn;

command(cnn, playerid, params[]) {

    new
        Texto[128],
        Msg[128]
    ;
    if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Digite: /anunciar [texto]");

    new Nome[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);

    format(Msg, sizeof(Msg), "%s: %s", Nome, Texto);
    TextDrawSetString(textocnn, Msg);
    TextDrawShowForAll(textocnn);

    SetTimer("TirarAnuncio",5000,false);
    return 1;
}

public OnGameModeInit()
{
    textocnn = TextDrawCreate(325.000000, 220.000000, "");
    TextDrawAlignment(textocnn, 2);
    TextDrawBackgroundColor(textocnn, 255);
    TextDrawFont(textocnn, 1);
    TextDrawLetterSize(textocnn, 0.479999, 2.099999);
    TextDrawColor(textocnn, -1);
    TextDrawSetOutline(textocnn, 1);
    TextDrawSetProportional(textocnn, 1);
    TextDrawHideForAll(textocnn);
    return 1;
}

forward TirarAnuncio();
public TirarAnuncio() return TextDrawHideForAll(textocnn);
Reply


Messages In This Thread
Alguem pode ajuda - by LeleziiN - 14.07.2015, 01:21
Re: Alguem pode ajuda - by humildadeforever - 14.07.2015, 01:27
Re: Alguem pode ajuda - by Cleyson - 14.07.2015, 01:29
Re: Alguem pode ajuda - by LeleziiN - 14.07.2015, 01:53
Re: Alguem pode ajuda - by zSuYaNw - 14.07.2015, 02:55
Re: Alguem pode ajuda - by iTakelot - 14.07.2015, 03:14
Re: Alguem pode ajuda - by IgorLuiz - 14.07.2015, 03:22
Re: Alguem pode ajuda - by iTakelot - 14.07.2015, 03:23
Re: Alguem pode ajuda - by Welconha - 14.07.2015, 03:31
Re: Alguem pode ajuda - by iTakelot - 14.07.2015, 03:38

Forum Jump:


Users browsing this thread: 2 Guest(s)