16.01.2011, 15:37
I have created a /aduty Command with creating a 3DTextlabel and attach this to the Player.
OnPlayerConnect:
OnPlayerDisdonnect:
/aduty
/offduty
When a new Player connect, it destroys a using 3DTextLabel from a Admin who is duty and using it.
Please help me.
]B4E[kengston
Code:
new Text3D:Admin[MAX_PLAYERS];
Code:
Delete3DTextLabel(Admin[playerid]);
Code:
Delete3DTextLabel(Admin[playerid]);
Code:
if(strcmp("/aduty",cmdtext,true) == 0) { if(Spieler[playerid][AdminLevel] >=1) if(GetPVarInt(playerid,"Aduty") == 0) { SetPlayerColor(playerid,COLOR_Admin); new string[256]; new spieler[MAX_PLAYER_NAME]; GetPlayerName(playerid,spieler,sizeof(spieler)); format(string, sizeof(string), "Server: Admin %s is now duty! If you have Questions, you can ask him/her >>> /report", spieler); SendClientMessageToAll(COLOR_Admin, string); SetPVarInt(playerid, "Aduty", 1); SetPVarInt(playerid, "Clan", 1); print(string); Admin[playerid] = Create3DTextLabel("Admin",COLOR_Admin,30.0,40.0,50.0,40.0,0); Attach3DTextLabelToPlayer(Admin[playerid], playerid, 0.0, 0.0, 0.4); } else { SendClientMessage(playerid,COLOR_RED,"You aren't a Admin!"); } return 1; }
Code:
if(strcmp("/offduty",cmdtext,true) == 0) { if(Spieler[playerid][AdminLevel] >=1) if(GetPVarInt(playerid,"Aduty") == 1) { SetPlayerColor(playerid,COLOR_ORANGE); new string[256]; new spieler[MAX_PLAYER_NAME]; GetPlayerName(playerid,spieler,sizeof(spieler)); format(string, sizeof(string), "Server: Admin %s is now Offduty!", spieler); SendClientMessageToAll(COLOR_Admin, string); SetPVarInt(playerid, "Aduty", 0); SetPVarInt(playerid, "Clan", 0); print(string); Delete3DTextLabel(Admin[playerid]); } else { SendClientMessage(playerid,COLOR_RED,"You aren't a Admin!"); } return 1; }
Please help me.
]B4E[kengston