07.11.2010, 17:53
could use somthing like this
https://sampforum.blast.hk/showthread.php?tid=186129
Then you would need to
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;
}