18.10.2013, 08:21
Quote:
pawn Код:
new Text:webext;//Making variable
public OnGameModeInit()
{
webtext = TextDrawCreate(20,430,"My Server")//setting up textdraw, + setting up the float x and float y to shown in screen
TextDrawFont(webtext,3);//setting up the textdraw font
}
pawn Код:
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid,webtext);//showing the texdraw
return 1;
}
If you dont know much about textdraw, here is step by step guide in textdraw:
click me