Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.65 KB | None | 0 0
  1. function drawpointshud()
  2.    
  3.  
  4.     local person = LocalPlayer()
  5.  
  6.     local ZBucks = LocalPlayer() :PS_GetPoints()
  7.    
  8.     surface.CreateFont( "cunt",
  9.                     {
  10.                     font    = "Century Gothic Bold",
  11.                     size    = 35,
  12.                     weight  = 400,
  13.                     antialias = true,
  14.                     shadow = true
  15.             })
  16.    
  17.     surface.SetTextColor( 255, 255, 255, 255 )
  18.     surface.SetTextPos( 34, (ScrH()/2)+(ScrH()/4) )
  19.     surface.SetFont("cunt")
  20.     surface.DrawText ( "You Have".." "..LocalPlayer():PS_GetPoints().." ".."Z-Bucks" )
  21. end
  22.  
  23. hook.Add( "HUDPaint", "uwotm8", drawpointshud )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement