06.08.2010, 10:38
(
Последний раз редактировалось iggy1; 06.08.2010 в 10:49.
)
Hi, im making a textdaw to show scores in a dmzone. Anyway i used Zamaroht's TextDrawEditor and came up with this.
Top
OnFilterScriptInit()
Then i made a command to show scores just to test.
This crashes the player for some reason i can't see im not realy familiar with textdraws note it doesn't crash server just player.
Anyone that can help i'd appreciate it.
Thanks in advance!!!
Top
pawn Код:
new Text:dmscore;
pawn Код:
dmscore = TextDrawCreate(55.000000, 303.000000, "1:1");//i would swap 1:1 for formated text showing scores
TextDrawBackgroundColor(dmscore, 65535);
TextDrawFont(dmscore, 3);
TextDrawLetterSize(dmscore, 0.919999, 3.199999);
TextDrawColor(dmscore, 16843008);
TextDrawSetOutline(dmscore, 0);
TextDrawSetProportional(dmscore, 0);
TextDrawSetShadow(dmscore, 5);
pawn Код:
COMMAND:show(playerid,params[])
{
TextDrawShowForPlayer(playerid,dmscore);
return 1;
}
Anyone that can help i'd appreciate it.
Thanks in advance!!!