[Pedido] Textdraw name
#1

Gente jб baixei todos FS's de criaзгo de Textdraw, entrei naquele site de criar textdraw por ****** chrome, mas nada funciona direito, sу expliquei pra ninguem achar q to pedindo sem tentar, mas deve ser simples pq os codigos do site do ****** chrome era simples

Alguem tem como fazer um textdraw ali em baixo no meio onde ta Maikon_Santos, pra aparecer pra cada player com o nome do jogador?

Reply
#2

Mano pega de exemplo

Inicio GM
pawn Код:
new Text:Nomes[MAX_PLAYERS];
pawn Код:
public OnPlayerSpawn(playerid)
{
    new str1[40];
    TextDrawShowForPlayer(playerid, Nomes[playerid]);
    format(str1,sizeof(str1),"%s",pNome(playerid));
    TextDrawSetString(Nomes[playerid], str1);
}
pawn Код:
public OnGameModeInit()
{
    for(new i=0; i<MAX_PLAYERS; i++)
    {
    Nomes[i] = TextDrawCreate(290.000000,380.000000,"_");
    TextDrawAlignment(Nomes[i],0);
    TextDrawBackgroundColor(Nomes[i],0x000000ff);
    TextDrawFont(Nomes[i],1);
    TextDrawLetterSize(Nomes[i],0.89,1.000000);
    TextDrawColor(Nomes[i],0xffffffff);
    TextDrawSetOutline(Nomes[i],1);
    TextDrawSetProportional(Nomes[i],1);
    TextDrawSetShadow(Nomes[i],1);
    }
}
Fim GM
pawn Код:
stock pNome(playerid)
{//Essa funзгo irб returnar o nome do jogador, sendo assim nгo precisa toda vez usar new nome[MAX_PLAYER_NAME]; GetPlayerName e bla bla bla.
    GetPlayerName(playerid, nome, sizeof(nome));
    return nome;
}
Reply
#3

Ardeu meus olhos esse BMG edit.
Reply
#4

Quote:
Originally Posted by Input
Посмотреть сообщение
Ardeu meus olhos esse BMG edit.
uheauheuaeh isso q sу foi de olhar, imagina jogar horas isso heauheauea
Reply
#5

Vlw rep+

Quote:
Originally Posted by Wellington1999
Посмотреть сообщение
Mano pega de exemplo

Inicio GM
pawn Код:
new Text:Nomes[MAX_PLAYERS];
pawn Код:
public OnPlayerSpawn(playerid)
{
    new str1[40];
    TextDrawShowForPlayer(playerid, Nomes[playerid]);
    format(str1,sizeof(str1),"%s",pNome(playerid));
    TextDrawSetString(Nomes[playerid], str1);
}
pawn Код:
public OnGameModeInit()
{
    for(new i=0; i<MAX_PLAYERS; i++)
    {
    Nomes[i] = TextDrawCreate(290.000000,380.000000,"_");
    TextDrawAlignment(Nomes[i],0);
    TextDrawBackgroundColor(Nomes[i],0x000000ff);
    TextDrawFont(Nomes[i],1);
    TextDrawLetterSize(Nomes[i],0.89,1.000000);
    TextDrawColor(Nomes[i],0xffffffff);
    TextDrawSetOutline(Nomes[i],1);
    TextDrawSetProportional(Nomes[i],1);
    TextDrawSetShadow(Nomes[i],1);
    }
}
Fim GM
pawn Код:
stock pNome(playerid)
{//Essa funзгo irб returnar o nome do jogador, sendo assim nгo precisa toda vez usar new nome[MAX_PLAYER_NAME]; GetPlayerName e bla bla bla.
    GetPlayerName(playerid, nome, sizeof(nome));
    return nome;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)