dynamic3dtext label won't destroy - 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)
+--- Thread: dynamic3dtext label won't destroy (
/showthread.php?tid=450183)
dynamic3dtext label won't destroy -
Luca12 - 11.07.2013
So I have on the server dm zone and when enter in the zone dynamic label is nice create but when I exit from zone /dmexit createdynamictextlabel won't destroy. Thanks
Re: dynamic3dtext label won't destroy -
drichie - 11.07.2013
so it can create ingame 3dtextlabel then that thing will not destroy until you will delete it DestroyDynamic3dTextLabel
Re: dynamic3dtext label won't destroy -
XtremeR - 12.07.2013
Use this:
pawn Код:
native DestroyDynamic3DTextLabel(Text3D:id);
when player leaves the dm..
Re: dynamic3dtext label won't destroy -
Luca12 - 12.07.2013
yes when I exit from dm label won't destroy
Edit: I have already that: DestroyDynamic3DTextLabel(timp[playerid]);
Re: dynamic3dtext label won't destroy -
JimmyCh - 12.07.2013
I used to have this problem, use this:
pawn Код:
Delete3DTextLabel(NameOfText[playerid]);
Under /dmexit
Example:
pawn Код:
CMD:dmexit(playerid, params[])
{
Delete3DTextLabel(TextName[playerid]);
//Rest of the code
return 1;
}
Tell us if it works
Re: dynamic3dtext label won't destroy -
Luca12 - 12.07.2013
No that is not for dynamic that is for create3dtextlabel