Hi, i am new to the roll20 API/javascript world, i am creating some scripts and i wrote a bunch of utils in classes that i would like to keep in a separate "utils" file for cleanliness but when i try to refer to those classes i get an error about them not being ready, i guess it's an initialization order problem, is there any way to specify a dependency? For instance: "A_script.js" has something like class A_Utils{ testChat() { sendChat("test", "test chat"); } } "B_script.js" has something like: class B_Utils extends A_Utils { ... } or: var myTest = new A_Utils() myTest.testChat() I did a quick search and only found a thread that is 4 yrs old.