


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 excellence and experience in the area of custom scripting in the UGX-Mods community. |
![]() Oil Rig Beta Access |
What I need help with now is modifying Der Riese's GSC files with new functions. So far, the only thing I have been able to do is print lines. For some reason no other function I type in will work (and worse, I won't get any errors). I have made a new gsc with my functions that are called from the nazi_zombie_factory gsc file. Can anyone please help?
main()
{
thread yourfunction();
}
// Your GSC Bottom
yourfunction()
{
//yourcode
}
main()
{
maps\yourgsc::init();
// Where maps is the container folder of your gsc, yourgsc is the name of your gsc and init() is the main function of your gsc
}
#include maps\_utility;
#include common_scripts\utility;
#include maps\_zombiemode_utility;
// You have to put this at the beginning