Author Topic: My questions for coding (for now)  (Read 2247 times)

Second, you would have to run makeminigame(); to execute that function. If you wanted that ScriptObject to be created automatically when the file is executed, remove the function declaration so your code just looks like this:

Code: [Select]
new ScriptObject(Chewsminigame)
{
    variable = value;
};
Wow, thank you! That answered my question, I didn't even know that. Along with Honor, thanks!