GameText
#1

Hey i have this problem then i make this command


Код:
public OnPlayerConnect(playerid)
{
    GameTextForPlayer(playerid, "Welcome to Los Santos North Life",2000,2);
    return 1;
}
It will not come up why?
Reply
#2

Style 2 is not recommended for use under OnPlayerConnect, unless you're willing to respawn your player before they've even spawned..

This code would be more suitable:
pawn Код:
public OnPlayerConnect(playerid)
{
    GameTextForPlayer(playerid, "Welcome to Los Santos North Life", 3000, 4);
    return 1;
}
-
You can read about GameText styles here, and what each of them does and how they act:
https://sampwiki.blast.hk/wiki/GameTextStyle
Reply
#3

Thanks bro.- Can you help me with one more thing. Can you make me a Text draw screen there its says " Welcome to Los Santos North Life" with white colour?
Reply
#4

CreateTextdraw
ShowTextDrawForPlayer

****** them.
Reply
#5

Quote:
Originally Posted by Jesper00
Посмотреть сообщение
Thanks bro.- Can you help me with one more thing. Can you make me a Text draw screen there its says " Welcome to Los Santos North Life" with white colour?
Код:
public OnPlayerConnect(playerid)
{
    GameTextForPlayer(playerid, "~w~Welcome to Los Santos North Life", 3000, 4);
    return 1;
}
If you need more help with that, this can help you:
https://sampwiki.blast.hk/wiki/GameTextStyle
Reply
#6

Huh..
He needs textdraw .
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)