

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!

![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
Place these functions at the bottom of that file: Code SnippetPlaintextregister_client_system( system_name, callback_func )
{
level.fake_client_system_callbacks[ system_name ] = callback_func;
}
StrTok( string, delimiter )
{
tokens = [];
next_token = "";
for( i = 0; i < string.size; i ++ )
{
if( string[i] == delimiter )
{
tokens[ tokens.size ] = next_token;
next_token = "";
}
else
{
next_token = next_token + string[i];
}
}
tokens[ tokens.size ] = next_token;
return tokens;
}
string( num )
{
return "" + num;
}