21.11.2012, 08:09
Hey guys, I'm trying to add a textdraw to the server im scripting for, this is what i've done.
I've added.
and under onplayerconnect i've added
Does anyone know what i've done wrong? Thanks in advance. (This broke my compiler)
I've added.
Code:
new Text:Website;
Code:
{ Website = TextDrawCreate(320.00, 80.00, "Website URL: www.csroleplay.net"); TextDrawBackgroundColor(Website, 255); TextDrawFont(Website, 0); TextDrawLetterSize(Website, 0.679999, 1.500000); TextDrawColor(Website, COLOR_CIVILIAN); TextDrawSetOutline(Website, 0); TextDrawSetProportional(Website, 1); TextDrawSetShadow(Website, 1); TextDrawShowForPlayer(playerid, Website) }