Textdraw not showing.
#1

So i made textdraws for a server logo. I tried my best and when i join the server the textdraw is not showing at all. I dont know what's wrong maybe the TextDrawSetString or idk..Here is the code.

Here is the global variable on top
Код:
new PlayerText:hudjos;
Then i made a public to show textdraw

Код:
forward LoadTextDrawsPlayerid(playerid);
public LoadTextDrawsPlayerid(playerid)
{
	hudjos = CreatePlayerTextDraw(playerid, 637.174377, 432.083404, "NUME / RPG.NEVER-END.RO");
	PlayerTextDrawLetterSize(playerid, hudjos, 0.365797, 1.629166);
	PlayerTextDrawTextSize(playerid, hudjos, 26.000000, 0.000000);
	PlayerTextDrawAlignment(playerid, hudjos, 3);
	PlayerTextDrawColor(playerid, hudjos, -1);
	PlayerTextDrawSetShadow(playerid, hudjos, -1);
	PlayerTextDrawSetOutline(playerid, hudjos, -1);
	PlayerTextDrawBackgroundColor(playerid, hudjos, 255);
	PlayerTextDrawFont(playerid, hudjos, 2);
	PlayerTextDrawSetProportional(playerid, hudjos, 1);

	return 1;
}
Then this is the last.
Код:
public OnPlayerConnect(playerid)
{
	new string[256], name;
	LoadTextDrawsPlayerid(playerid);
	format(string, sizeof(string), "%s / RPG.NEVER-END.RO", GetName(name));
	TextDrawSetString(Text:hudjos, string);
	TextDrawShowForPlayer(playerid, Text:hudjos);
	ResetAccount(playerid); >>>> Dont mind this
	LoadMapPlayerid(playerid); >>>> Dont mind this
	return 1;
}
Reply


Messages In This Thread
Textdraw not showing. - by Fabyx15 - 03.12.2018, 18:57
Re: Textdraw not showing. - by ApolloScripter - 03.12.2018, 19:23
Re: Textdraw not showing. - by Fabyx15 - 03.12.2018, 19:29
Re: Textdraw not showing. - by ApolloScripter - 03.12.2018, 19:38
Re: Textdraw not showing. - by Fabyx15 - 03.12.2018, 19:47
Re: Textdraw not showing. - by ApolloScripter - 03.12.2018, 19:53
Re: Textdraw not showing. - by Fabyx15 - 03.12.2018, 19:58
Re: Textdraw not showing. - by ApolloScripter - 03.12.2018, 20:06
Re: Textdraw not showing. - by Fabyx15 - 03.12.2018, 20:13
Re: Textdraw not showing. - by GTLS - 04.12.2018, 04:23

Forum Jump:


Users browsing this thread: 2 Guest(s)