WEIRD TEXTDRAW PROBLEM! *REP+*
#1

Hey guys, its me again, i have another problem.

I just made a little tutorial for new players on my server and i was just showing textdraws on camera positions. It normally worked till like 6th position, where textdraw just was not showed. I tried everything, but nothing fixed it.

So i brought the camera on the ground and went to check it, now the 5th textdraw was not showing but the 6th was, so i have no idea what is the problem here, why is not showing, when there is no difference in code, i will show you some samples.

Код:
forward Tutorial5(playerid);
public Tutorial5(playerid)
{
	SetPlayerCameraPos(playerid, xyz);
	SetPlayerCameraLookAt(playerid, xyz);
	Box(playerid, "text", 10);
	SetTimerEx("Tutorial6",10000,false,"i",playerid);
	return 1;
}

forward Tutorial6(playerid);
public Tutorial6(playerid)
{
	SetPlayerCameraPos(playerid, xyz);
	SetPlayerCameraLookAt(playerid, xyz);
	Box(playerid, "text", 10);
	SetTimerEx("Tutorial7",10000,false,"i",playerid);
	return 1;
}
The thing is, when 6th is showing, the 5th is not and other way round.

Here is stock of my box, there is no problem in textdraw or anything, because once again the other ones are showing perfectly fine.

Код:
stock Box(playerid, text[], time)
{
	if(Showing[playerid] == 0)
	{
	    Show[playerid] = SetTimerEx("Hide", time*1000, false, "i", playerid);
		PlayerTextDrawSetString(playerid, infoBox[playerid], text);
		PlayerTextDrawShow(playerid, infoBox[playerid]);
		Showing[playerid] = 1;
	}
}
There is also no problem in terms of compilation of the script, it is compilating without any errors or warnings, ohh, my head is about to explode.
Reply
#2

Propably problems are in timers
pawn Код:
Box(playerid, "text", 10); // 10 seconds
SetTimerEx("Tutorial6",10000,false,"i",playerid); // another 10 sec
but they are not synced together

2 ways for fix:
1. Change time in "TutorialX" to 10500 or 11000
2.
pawn Код:
stock Box(playerid, text[], time)
{
    KillTimer(Show[playerid]); // without unnesesary array Showing[playerid]
    Show[playerid] = SetTimerEx("Hide", time*1000, false, "i", playerid);
    PlayerTextDrawSetString(playerid, infoBox[playerid], text);
    PlayerTextDrawShow(playerid, infoBox[playerid]);
}
Reply
#3

Bro, i appreaciate you trying to help me, but then why the other works?

Anyways i tried it, did not help.
Reply
#4

Show public Hide
Reply
#5

Код:
public Hide(playerid)
{
    Showing[playerid] = 0;
    PlayerTextDrawHide(playerid, infoBox[playerid]);
}
Reply
#6

bump
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)