


Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!function(argument)
thread function(argument)
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown excellence and experience in the area of custom scripting in the UGX-Mods community. |
![]() Oil Rig Beta Access |
SomeFunction()
{
level.SomeVariable = 1;
Add_Stuff_To_Variable();
if( level.SomeVariable == 2 )
{
Iprintln( "I have increased" );
}
else
{
Iprintln( "I'm still 1" );
}
}
Add_Stuff_To_Variable()
{
wait 1;
level.SomeVariable++;
}
SomeFunction()
{
level.SomeVariable = 1;
thread Add_Stuff_To_Variable();
if( level.SomeVariable == 2 )
{
Iprintln( "I have increased" );
}
else
{
Iprintln( "I'm still 1" );
}
}
Add_Stuff_To_Variable()
{
wait 1;
level.SomeVariable++;
}