kevenvz Posted November 13, 2010 Share Posted November 13, 2010 Hello, I made a code and it won't show up 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
dzek (varez) Posted November 13, 2010 Share Posted November 13, 2010 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.. Link to comment
Castillo Posted November 13, 2010 Share Posted November 13, 2010 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
kevenvz Posted November 13, 2010 Author Share Posted November 13, 2010 That one of varez worked. But thanks, you both. Realy thanks, now I can release this one. Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now