Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // THIS IS A EXAMPLE, THIS WOULD ADD A RANK BAR TO YOUR HUD.
- // PUT THIS IN YOUR CONFIG FILE UNDER THE OTHER 'addHUDBar's
- addHUDBar( {
- name = "rank",// just a identifier
- mat = "icon16/user.png", // icon
- color = Color( 20, 20, 20 ),// color of the box
- func = function( lp ) // the text it returns
- local gp = lp:GetNWString( "usergroup" )
- return "Rank: "..gp
- end,
- } )
- // script: https://scriptfodder.com/scripts/view/704
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement