trader5050 Posted October 23, 2021 Report Share Posted October 23, 2021 Hello there, I have a command script (CmdJasonDispatcher.script) as follows: Quote /****************************************************************************************** Jason's Dispatcher Script ********************************************************************************************/ int DummyGroup = 31; object CmdJasonDispatcher : CommandScript { CmdJasonDispatcher() { SetCursor("alarm"); SetIcon("alarm"); SetGroupID(DummyGroup); SetGroupLeader(true); SetRestrictions(RESTRICT_SELFEXECUTE); } ............. rest of code }; My understanding is that the game loads ALL scripts when the mod is loaded. So very confused as to why whenever I try to call it: Quote "Error: Symbol CLASS_CmdJasonDispatcher is not defined in current scope" Any ideas? Quote Link to comment Share on other sites More sharing options...
itchboy Posted October 25, 2021 Report Share Posted October 25, 2021 Honestly I'm stumped on it. I see nothing here that could potentially break anything at. Quote Link to comment Share on other sites More sharing options...