[How to]3DText ESC help plz.
#1

How to make this.

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

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;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)