[HELP] Textdraw not showing
#7

Quote:
Originally Posted by Xsyiaris
Посмотреть сообщение
You need to move the whole OnPlayerConnect section to OnGameModeInit.
Cheers.
that doesn't really matter.

I don't understand what you're doing though, and I'm wondering why it doesn't show any errors/warnings.

because of this:

Creation of a PLAYER textdraw;
pawn Код:
Textdraw20[i] = CreatePlayerTextDraw(i, 37.999977, 431.573272, "");
Showing a Textdraw( wrong function! )
pawn Код:
TextDrawShowForPlayer(playerid, Textdraw20[playerid]);
switch those to:

PlayerTextDrawShow.

https://sampwiki.blast.hk/wiki/PlayerTextDrawShow

the way you do it, it should give some tag mismatch warnings if I'm right.

same goes for OnPlayerUpdate

pawn Код:
TextDrawSetString(Textdraw20[i], PInfo[playerid][Kills]);
should be PlayerTextDrawSetString

https://sampwiki.blast.hk/wiki/PlayerTextDrawSetString

also don't use loops in OnPlayerConnect/OnPlayerSpawn/OnPlayerUpdate as it has a playerid parameter already.

this is how you should do it:

pawn Код:
// Create Playertextdraws here( new PlayerText:yourtext; );
OnPlayerConnect // create them here with yourtext = CreatePlayerTextDraw;
OnPlayerSpawn // Show them here with PlayerTextDrawShow;
OnPlayerUpdate // update them here with PlayerTextDrawSetString
NOTE: after changing the string, you need to RE-SHOW the textdraw, meaning you should do:

pawn Код:
PlayerTextDrawSetString( .... );
PlayerTextDrawShow( .... );
Reply


Messages In This Thread
[HELP] Textdraw not showing - by roar - 24.02.2014, 09:52
Re: [HELP] Textdraw not showing - by roar - 24.02.2014, 10:45
Re: [HELP] Textdraw not showing - by $Marco$ - 24.02.2014, 11:09
Re: [HELP] Textdraw not showing - by roar - 24.02.2014, 11:46
Re: [HELP] Textdraw not showing - by Pillhead2007 - 24.02.2014, 13:04
Re: [HELP] Textdraw not showing - by roar - 25.02.2014, 08:40
Re: [HELP] Textdraw not showing - by Smileys - 25.02.2014, 08:44
Re: [HELP] Textdraw not showing - by roar - 25.02.2014, 08:56
Re: [HELP] Textdraw not showing - by Smileys - 25.02.2014, 09:02
Re: [HELP] Textdraw not showing - by Konstantinos - 25.02.2014, 09:39

Forum Jump:


Users browsing this thread: 1 Guest(s)