15.02.2010, 03:46
You already gave a good example:
Just modify that.
Instead of putting "vagos" ... just check which gang they are in.
Oh and don't bump. Posting Rules
new Text3D:label[MAX_PLAYERS];
If you want an example using your gang system, you need to post your gang system.
Just modify that.
Instead of putting "vagos" ... just check which gang they are in.
Oh and don't bump. Posting Rules
new Text3D:label[MAX_PLAYERS];
Код:
public OnPlayerConnect(playerid) { label[playerid] = Create3DTextLabel("vagos gangmember!",0x008080FF,30.0,40.0,50.0,40.0,0); Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7); return 1; } public OnPlayerDisconnect(playerid, reason) { Delete3DTextLabel(label[playerid]); return 1; }