Hi there,
For some reasons, i'd like to get uTime to the top right corner as a default settings on one of my servers (to avoid overlapping with other HUD)
Only problem, I don't know lua, just some basics of programming...
I tried the same thing as here
http://www.facepunch.com/showthread.php?t=1362745&p=43889703 , i tried at first to change "utime_pos_x" to 100 into the cl_utime.lua but it has no effect, at least for anyone already having the uTime.
I tried this code added at the end of cl_utime.lua and into the garrysmod/lua/autorun/client/utime_setposition.lua i created :
function setCvars( ply )
ply:ConCommand( "utime_pos_y 90" )
ply:ConCommand( "utime_pos_x 90" )
end
hook.Add( "PlayerInitialSpawn", "setcvars", setCvars )
And this little attempt to fix it into my utime_setposition.lua :
function setCvars( ply )
ply:ConCommand( "utime_pos_y 10" )
ply:ConCommand( "utime_pos_x 100" )
end
hook.Add( "PlayerInitialSpawn", "setcvars", setCvars( ply ) )
None of them works. Can we really set Cvars as we wish ? I googled a lot, and setCvars didn't give a lot of revelant things concerning Gmod.
Any help would be very appreciated. Cheers