Results 1 to 3 of 3

Thread: Lua Scripting: Any help?.. Facepunch sure hasen't any.

  1. #1
    Intellektueller Bastinka's Avatar
    Join Date
    Feb 2007
    Location
    Berlin, Deutschland
    Posts
    2,643

    Lua Scripting: Any help?.. Facepunch sure hasen't any.

    Hey everyone,
    Been trying to figure out how to make a custom HUD in Garrysmod. Posting threads and questions on facepunch, asking for tutorials or just how-to's doesn't seem to do me much well and hasn't in the past due to either the lack of people who know how to do this or something else..


    If anyone here's good at it could you please take a look at it?
    Code:
     function jail_hud()  
        local client = LocalPlayer()
        if !client:Alive() then return end
        if(client:GetActiveWeapon() == NULL or client:GetActiveWeapon() == "Camera") then return end
        draw.RoundedBox(7, 5, -5, 125, 75, Color(51, 58, 51, 175))
        draw.SimpleText(client:Health() .. " HP", "ScoreboardText", 50, -25, Color(86, 104, 86, 255), 0, 0)
        local mag_left = client:GetActiveWeapon():Clip1() // How much ammunition you have inside the current magazine
        local mag_extra = client:GetAmmoCount(client:GetActiveWeapon():GetPrimaryAmmoType()) // How much ammunition you have outside the current magazine
        local secondary_ammo = client:GetAmmoCount(client:GetActiveWeapon():GetSecondaryAmmoType())// How much ammunition you have for your secondary fire, such as the MP7's grenade launcher 
    end
    
        hook.Add("HUDPaint", "jail_hud", jail_hud)
    
    function hidehud(name)
        for k, v in pairs{"CHudHealth", "CHudBattery", "CHudAmmo", "CHudSecondaryAmmo"} do
            if name == v then return false end
        end
    end
    
        hook.Add("HUDShouldDraw", "hidehud", hidehud)
    It's the simplest of simple, based off of a Wiki Tutorial yet I don't know how to make a Health bar or how to slap the box to the left hand bottom corner of the screen.



    Code:
        draw.RoundedBox(7, 5, -5, 125, 75, Color(51, 58, 51, 175))
        draw.SimpleText(client:Health() .. " HP", "ScoreboardText", 50, -25, Color(86, 104, 86, 255), 0, 0)
    In both these I tried negative values for Y coords but it didn't work at all..


    Please, somebody point me in the right direction!
    -SilentWindPL

    ( FP Thread, Most current: http://www.facepunch.com/showthread....0#post14649900 )
    Reply With Quote

  2. #2
    HA10 Limited's Avatar
    Join Date
    Sep 2006
    Location
    England
    Posts
    7,800

    Re: Lua Scripting: Any help?.. Facepunch sure hasen't any.

    Um, you can not have negative screen values.
    0,0 = top left, then you add to the figures to eventually get at the bottom right.
    Reply With Quote

  3. #3
    +rep to cure coronavirus n00b1n8R's Avatar
    Join Date
    Oct 2006
    Location
    Australia
    Posts
    13,215

    Re: Lua Scripting: Any help?.. Facepunch sure hasen't any.

    Facepunch just made a stupid newbie questions section.
    Go ask there.
    Reply With Quote

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •