19.07.2013, 18:29
Well, I am trying to make the welcome page on a test server like this.
How do I start?
Note: Image made in PS
How do I start?
Note: Image made in PS
new Text:RPG;
public OnGameModeInit()
{
RPG = TextDrawCreate(186.5, 15, "Test Server - RPG");
TextDrawFont(RPG, 2);
TextDrawLetterSize(RPG, 1.0, 1.0);
TextDrawColor(RPG, 0xFFFFFFFF);
TextDrawSetOutline(RPG, 1);
TextDrawSetProportional(RPG, true);
TextDrawSetShadow(RPG, 1);
}
new Text:SERVERIP;
public OnGameModeInit()
{
SERVERIP = TextDrawCreate(225.5, 52, "Server-IP: 7777");
TextDrawFont(SERVERIP, 2);
TextDrawLetterSize(SERVERIP, 0.8, 1.0);
TextDrawColor(SERVERIP, 0xFFFFFFFF);
TextDrawSetOutline(SERVERIP, 1);
TextDrawSetProportional(SERVERIP, true);
TextDrawSetShadow(SERVERIP, 1);
}