TextDraw Information Message - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: TextDraw Information Message (
/showthread.php?tid=74869)
TextDraw Information Message -
Dol - 26.04.2009
I made a nice TextDraw Information Message for the clothes store Binco so when a player enters it they will see the message:
Код:
else if(PlayerToPointStripped(1, playerid,2244.3423,-1665.5542,15.4766, cx,cy,cz))
{
GameTextForPlayer(playerid, "~w~Binco", 5000, 1);
TextDrawShowForPlayer(playerid,InformationTextDraw);
SetPlayerInterior(playerid, 15);
SetPlayerPos(playerid,207.7336,-108.6231,1005.1328);
PlayerInfo[playerid][pInt] = 15;
You see the TextDrawShowForPlayer, that's working correctly but now I want to use TextDrawHideForPlayer when they exit it, where do I place this?
Re: TextDraw Information Message -
Center - 27.04.2009
---