Jump to content

в каком файле находится это?


Recommended Posts

rankingboard_client использует функции из util_client, например:

function createShadowedLabel(x, y, width, height, text, align) 
    local shadow = guiCreateLabel(x + 1, y + 1, width, height, text, false) 
    guiLabelSetColor(shadow, 0, 0, 0) 
    local label = guiCreateLabel(x, y, width, height, text, false) 
    guiLabelSetColor(label, 255, 255, 255) 
    if align then 
        guiLabelSetHorizontalAlign(shadow, align) 
        guiLabelSetHorizontalAlign(label, align) 
    end 
    return label, shadow 
end 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...