Jump to content

Whats wrong whit this code?


kevenvz

Recommended Posts

Hello, I made a code and it won't show up :S

addEventHandler( "onClientResourceStart", resourceRoot, 
    function( ) 
        local screenX, screenY = guiGetScreenSize( ) 
        label = guiCreateLabel( 0, 0, screenX, 15, "Gangsta RPG: " getVersion(), false ) 
        guiSetSize( label, guiLabelGetTextExtent( label ) + 5, 14, false ) 
        guiSetPosition( label, screenX - guiLabelGetTextExtent( label ) - 5, screenY - 27, false ) 
        guiSetAlpha( label, 0.5 ) 
    end 
) 
  

Link to comment
addEventHandler( "onClientResourceStart", resourceRoot, 
    function( ) 
        local screenX, screenY = guiGetScreenSize( ) 
        v = getVersion(number) 
        label = guiCreateLabel( 0, 0, screenX, 15, "Gangsta RPG: ".. tostring(v), false ) 
        guiSetSize( label, guiLabelGetTextExtent( label ) + 5, 14, false ) 
        guiSetPosition( label, screenX - guiLabelGetTextExtent( label ) - 5, screenY - 27, false ) 
        guiSetAlpha( label, 0.5 ) 
    end 
) 

this will work but getVersion is returning a table.

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...