[Ajuda] Como se faz?
#4

Na prуpria wiki tem uma base...

pawn Код:
new Text:himessage;
 
public OnGameModeInit()
{
    himessage = TextDrawCreate(1.0, 5.6, "Hi, how are you?");
    return 1;
}
 
public OnPlayerConnect(playerid)
{
    new newtext[41], name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, MAX_PLAYER_NAME);
    format(newtext, sizeof(newtext), "Hi %s, how are you?", name);
    TextDrawSetString(himessage, newtext);  
    TextDrawShowForPlayer(playerid, himessage);
    return 1;
}
Reply


Messages In This Thread
Como se faz? - by LeandroSantos - 18.09.2014, 15:45
Re: Como se faz? - by connork - 18.09.2014, 15:49
Re: Como se faz? - by LeandroSantos - 18.09.2014, 15:50
Re: Como se faz? - by connork - 18.09.2014, 15:52
Re: Como se faz? - by LeandroSantos - 18.09.2014, 20:20
Re: Como se faz? - by connork - 18.09.2014, 20:30
Re: Como se faz? - by LeandroSantos - 28.01.2015, 12:14
Re: Como se faz? - by FStralioti - 28.01.2015, 12:37

Forum Jump:


Users browsing this thread: 1 Guest(s)