Jump to content

Whats wrong whit this code?


kevenvz

Recommended Posts

Posted

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 
) 
  

Posted

try replacing resourceRoot with getResourceRootElement(getThisResource())

also 4th line = fail

label = guiCreateLabel( 0, 0, screenX, 15, "Gangsta RPG: "..getVersion(), false ) 

also - this is all weird..

Multi theft auto tools - replace cars and peds, move your map or compile your Lua files online!

programista php rzeszów

Need free webhosting for your small site? PM me. Need help with portforwarding? PM me. Do not PM me asking for help with scripting.

Having problems with port forwarding? Send me pm, I can do whole thing for you using TeamViewer (already helped about 20 people, no worries)!

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

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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