Reply To: Callback Error

Home Forums General Using Ctrlr Callback Error Reply To: Callback Error

#73145
dnaldoog
Participant
    • Topics: 4
    • Replies: 480
    • Total: 484
    • ★★

    That error is due to a change in the code for the latest version, so to fix it try using an older version or if you can do it, go into the lua source code and everywhere you see the word console, put two (minus signs) — in front of console(“….”) – click on save and compile all and it should work

    • console(“message is here”) becomes
    • –console(“message is here”)

    If you want to keep the console message printing to the console window (but maybe you don’t need it) then do:

    • console(String(“message is here”))

    NOTE: must be ‘String’ not ‘string’

    Regards,

    P.S. Oh – I think Human Fly already told you this!

    Ctrlr