Speedometer is lost.
#8

Here is a little example:
PHP код:
new Text:TextDraw;
//OnGameModeInit
TextDraw TextDrawCreate(450.0,230.0,"My textdraw");
TextDrawFont(TextDraw,0);
TextDrawLetterSize(TextDraw,1.0,0.4);
// ^^ becomes:
new PlayerText:TextDraw[MAX_PLAYERS];
//OnPlayerConnect
TextDraw[playerid] = CreatePlayerTextDraw(playerid,450.0,230.0,"My textdraw");
PlayerTextDrawFont(playerid,TextDraw[playerid],0);
PlayerTextDrawLetterSize(playerid,TextDraw[playerid],1.0,0.4); 
Reply


Messages In This Thread
Speedometer is lost. - by Supernovaa - 29.10.2015, 13:30
Re: Speedometer is lost. - by Ritzy2K - 29.10.2015, 13:33
Re: Speedometer is lost. - by Supernovaa - 29.10.2015, 13:36
Re: Speedometer is lost. - by SecretBoss - 29.10.2015, 13:36
Re: Speedometer is lost. - by Supernovaa - 29.10.2015, 13:44
AW: Speedometer is lost. - by Mencent - 29.10.2015, 13:44
Re: Speedometer is lost. - by Supernovaa - 29.10.2015, 13:49
AW: Speedometer is lost. - by Mencent - 29.10.2015, 13:55
Re: Speedometer is lost. - by Supernovaa - 29.10.2015, 14:03
AW: Speedometer is lost. - by Mencent - 29.10.2015, 14:05

Forum Jump:


Users browsing this thread: 1 Guest(s)