Read the statement by Michael Teeuw here.
New to Modules, Need help
-
@randal-io you can view your logs by starting the mirror with
npm start dev
or by pressingcmd+shift+i
-
Thanks strawberry 3.141 for the npm start dev tip! Was essential in getting past the stupid errors, and identifying the larger ones.
BIG shoutout to cowboysdude for the guidence, help, and code reformatting which got the JSON working!!!
Now I just have to get it formatted and I’ll be set!!
-
I think it rather ironic that the quote shown above so aptly describes @cowboysdude. ;-)
Well done randal-io!
-
@Mykle1 said in New to Modules, Need help:
I think it rather ironic that the quote shown above so aptly describes @cowboysdude. ;-)
Well done randal-io!
LOTS OF MADNESS LOL
Good Job on the module! :)
-
@randal-io you also have an error in here
if (this.config.lang != "en" || "ru") { Log.error(self.name, "Please enter a supported language into the config."); }
this will always print the error message, it should be
if (this.config.lang != "en" && this.config.lang != "ru") { Log.error(self.name, "Please enter a supported language into the config."); }
-
@cowboysdude said in New to Modules, Need help:
LOTS OF MADNESS LOL
And your fair share of genius! (Guru)