SA-MP Forums Archive
[How to]3DText ESC help plz. - 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: [How to]3DText ESC help plz. (/showthread.php?tid=188443)



[How to]3DText ESC help plz. - eixas10000 - 07.11.2010

How to make this.

When player ESC to display on the head of 3DText Player.


Re: [How to]3DText ESC help plz. - Haydz - 07.11.2010

could use somthing like this
https://sampforum.blast.hk/showthread.php?tid=186129

Then you would need to
pawn Код:
public OnPlayerPause(playerid)
{
    label[playerid] = Create3DTextLabel("Paused",YOURCOLOR,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
    return 1;
}
public OnPlayerUnPause(playerid)
{
    Delete3DTextLabel(label[playerid]);
    return 1;
}