[Pedido] Ann com TextDraw
#1

Bom gente eu vi um fs spanhol com anuncio em text draw so ele se move eu queria fazer um igual mais sme ser mover queria igual o /ann /cnn de outros servers mais com text draw em baixo da tela so que um pouco mais em cima no meio olhem a imagem e veja como й mais ou menos, se alguem me ajudar tera minha reputation!

Reply
#2

Cria o textdraw e usa a funзгo TextDrawSetString!
Use Zamaroth para criar a TD : )
Reply
#3

й mais jб me falaram disso mais nгo consegui...
Reply
#4

Nгo conseguiu como? clicar na opзгo criar textdraw, posicionar na tela, exportar e depois colocar no gamemode? rs

Tutorialzinho pra vocк:

https://sampforum.blast.hk/showthread.php?tid=170172
Reply
#5

Mais tipo cara eu quero assim /anuncio [texto] aparece como text draw o anuncio nгo em GameText ta ligado?
Reply
#6

onplayercomm...

pawn Код:
new cmd[128], string[128], tmp[128], idx;
    cmd = strtok(cmdtext, idx);
pawn Код:
if(strcmp(cmd, "/cnn", true) == 0)
    if(PlayerInfo[playerid][Level] >= 2) {

        new length = strlen(cmdtext);
        while ((idx < length) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[70];
        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result)) return SendClientMessage(playerid,-1,"Use: /cnn [mensagem]");
        if(strlen(result) > 40) return SendClientMessage(playerid,-1,"O mбximo de caracteres permitido й 40");
        new name[MAX_PLAYER_NAME];
        GetPlayerName(playerid,name,sizeof(name));
        format(string,sizeof(string),"Admin %s: ~y~%s", name, result);
        textdrawtoall = TextDrawCreate(325.000000, 394.000000, string);
        TextDrawAlignment(textdrawtoall, 2);
        TextDrawBackgroundColor(textdrawtoall, 255);
        TextDrawFont(textdrawtoall, 1);
        TextDrawLetterSize(textdrawtoall, 0.399999, 3.199999);
        TextDrawColor(textdrawtoall, 16711935);
        TextDrawSetOutline(textdrawtoall, 1);
        TextDrawSetProportional(textdrawtoall, 1);
        for(new i; i < MAX_PLAYERS; i ++)
        {
            TextDrawShowForPlayer(i, textdrawtoall);
        }
        SetTimer("DestruirTextDrawToAll",5000, false);
        return 1;
    }



public DestruirTextDrawToAll()
{
    TextDrawHideForAll(textdrawtoall);
   
    return 1;
}
code por: Humildade Forever
Reply
#7

Й isso mesmo cara, cria a textdraw e depois usa https://sampwiki.blast.hk/wiki/TextDrawSetString
Se nгo sabe criar, leia o tutorial.

Ou quer que eu te de o cуdigo de mгo beijada como fez o cara acima ?
Assim vocк nгo vai aprender nada e sу vai continuar criando tуpicos para os outros te darem cуdigos prontos. Vocк jб tб bem grandinho pra fazer as coisas por sн sу.
Reply
#8

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

pawn Код:
new cmd[128], string[128], tmp[128], idx;
    cmd = strtok(cmdtext, idx);
pawn Код:
if(strcmp(cmd, "/cnn", true) == 0)
    if(PlayerInfo[playerid][Level] >= 2) {

        new length = strlen(cmdtext);
        while ((idx < length) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[70];
        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result)) return SendClientMessage(playerid,-1,"Use: /cnn [mensagem]");
        if(strlen(result) > 40) return SendClientMessage(playerid,-1,"O mбximo de caracteres permitido й 40");
        new name[MAX_PLAYER_NAME];
        GetPlayerName(playerid,name,sizeof(name));
        format(string,sizeof(string),"Admin %s: ~y~%s", name, result);
        textdrawtoall = TextDrawCreate(325.000000, 394.000000, string);
        TextDrawAlignment(textdrawtoall, 2);
        TextDrawBackgroundColor(textdrawtoall, 255);
        TextDrawFont(textdrawtoall, 1);
        TextDrawLetterSize(textdrawtoall, 0.399999, 3.199999);
        TextDrawColor(textdrawtoall, 16711935);
        TextDrawSetOutline(textdrawtoall, 1);
        TextDrawSetProportional(textdrawtoall, 1);
        for(new i; i < MAX_PLAYERS; i ++)
        {
            TextDrawShowForPlayer(i, textdrawtoall);
        }
        SetTimer("DestruirTextDrawToAll",5000, false);
        return 1;
    }



public DestruirTextDrawToAll()
{
    TextDrawHideForAll(textdrawtoall);
   
    return 1;
}
code por: Humildade Forever
Sim isso funfa perfeitamente, uso no meu server de boa,
aliбs foi eu que fiz o topico pedindo isso kkkkkkk
________________________
QUER UM GAMEMODE? UM FILTERSCRIPT? UM MOD? AJUDA?
VISITE-NOS: http://www.sampknd.blogspot.com.br/


QUER UM HOST DE QUALIDADE E NГO ACHA?
AQUI ESTБ: http://www.hosterbrasil.com/


Reply
#9

deu erros de mas poderia postar como fs?
Reply
#10

PHP код:
#include a_samp
#include foreach
#include zcmd
#include sscanf
new Text:TextoDraw;
forward DestruirTextoDraw();
CMD:anunciar(playeridparams[])
{
    new 
Anuncio[128];
    new 
String[128];
     if(
sscanf(params"s"Anuncio)) return SendClientMessage(playerid, -1"Use: /anunciar [mensagem]");
     if(
strlen(Anuncio) > 40) return SendClientMessage(playerid,-1,"O mбximo de caracteres permitido й 40");
     new 
Nome[MAX_PLAYER_NAME];
     
GetPlayerName(playerid,Nome,sizeof(Nome));
     
format(String,sizeof(String),"Admin %s: ~y~%s"NomeAnuncio);
     
TextoDraw TextDrawCreate(325.000000394.000000String);
     
TextDrawAlignment(TextoDraw2);
     
TextDrawBackgroundColor(TextoDraw255);
     
TextDrawFont(TextoDraw1);
     
TextDrawLetterSize(TextoDraw0.3999993.199999);
     
TextDrawColor(TextoDraw16711935);
     
TextDrawSetOutline(TextoDraw1);
     
TextDrawSetProportional(TextoDraw1);
     foreach (new 
Player)
     {
         
TextDrawShowForPlayer(iTextoDraw);
    }
     
SetTimer("DestruirTextoDraw",5000false);
     return 
true;
}
public 
DestruirTextoDraw()
{
    
TextDrawHideForAll(TextoDraw);
    return 
true;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)