19.03.2016, 19:23
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.
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.
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.
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; }
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; } }
