Admin 3D Label
#2

Well i added for my admin script you can replace by yours admin script:
First Line:
pawn Код:
new Text3D:label1[MAX_PLAYERS];
new Text3D:label2[MAX_PLAYERS];
Add this after public OnPlayerSpawn
pawn Код:
if(IsPlayerDAdminByDeadly[playerid][Level] == 5) {
    label1[playerid] = Create3DTextLabel("HEAD ADMIN",0x008080FF,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label1[playerid], playerid, 0.0, 0.0, 0.4);
  }
  if(IsPlayerDAdminByDeadly[playerid][Level] == 4) {
  label1[playerid] = Create3DTextLabel("ADMINISTRATOR",0x008080FF,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label1[playerid], playerid, 0.0, 0.0, 0.4);
    }
    if(IsPlayerDAdminByDeadly[playerid][Level] == 3) {
  label1[playerid] = Create3DTextLabel("MODERATOR",0x008080FF,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label1[playerid], playerid, 0.0, 0.0, 0.4);
    }
    if(IsPlayerDAdminByDeadly[playerid][Level] == 2) {
  label1[playerid] = Create3DTextLabel("BASIC MODERATOR",0x008080FF,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label1[playerid], playerid, 0.0, 0.0, 0.4);
    }
    if(IsPlayerDAdminByDeadly[playerid][Level] == 1) {
  label1[playerid] = Create3DTextLabel("DONATOR",0x008080FF,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label1[playerid], playerid, 0.0, 0.0, 0.4);
    }
    if(IsPlayerDAdminByDeadly[playerid][Level] == 0) {
  label2[playerid] = Create3DTextLabel(" ",0x008080FF,30.0,40.0,50.0,40.0,0);
    Attach3DTextLabelToPlayer(label2[playerid], playerid, 0.0, 0.0, 0.4);
    }
Reply


Messages In This Thread
Admin 3D Label - by [MWR]Blood - 16.03.2010, 15:05
Re: Admin 3D Label - by [WSM]Deadly_Evil - 16.03.2010, 15:22
Re: Admin 3D Label - by [MWR]Blood - 16.03.2010, 15:38
Re: Admin 3D Label - by aircombat - 16.03.2010, 16:33
Re: Admin 3D Label - by itayizra - 16.03.2010, 17:11
Re: Admin 3D Label - by aircombat - 16.03.2010, 17:31
Re: Admin 3D Label - by [WSM]Deadly_Evil - 17.03.2010, 08:04
Re: Admin 3D Label - by itayizra - 17.03.2010, 09:04
Re: Admin 3D Label - by [MWR]Blood - 17.03.2010, 10:46

Forum Jump:


Users browsing this thread: 1 Guest(s)