Advertisement
Guest User

Untitled

a guest
May 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. function EOTI_NameTag.overrideInfoBar(ply,target,isply,isnpc,isveh,isprop)
  2. local wanted = EOTI_NameTag.isDarkRPWanted( target ) and 'WANTED!' or nil
  3. local job = EOTI_NameTag.getDarkRPJob( target ) or ''
  4. local gun = EOTI_NameTag.hasDarkRPGunLicense( target ) and ' (Licensed)' or ''
  5. local org = target:GetNWString("orgName",nil) and "("..target:GetNWString("orgName",nil)..")" or ""
  6. local jobgunorg = job..gun..org
  7. return wanted or jobgunorg != '' and jobgunorg or nil
  8. end
  9.  
  10. function EOTI_NameTag.addExtraInfoBar(ply,target,isply,isnpc,isveh,isprop)
  11. return target:EL_playerRankDraw() or "Unranked"
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement