@User67 said:
Hi, I've tried attaching a cropped screen shot of the debugger but it won't take pngs or jpgs(or I might be doing it wrong?).
You should be able to attach image files, including .png
and .jpg
, by drag and dropping, through the browse button in the insert image on top of the post editor, or through the "Add images" button.
I double checked the category permissions and it should allow anyone to upload files. If you still have problems uploading images, please let me know so we can look into it further.
... The debugger just shows 4 stack frames at line 50, 60, 44, 35, and 21.
There are 2 errors on the next tab with the yellow caution symbol. But the author has these on his as well and said they would be addressed later.
I just tried your suggestion for line 32 and it does the same thing. It goes through all the prompts and crashes on the last one giving me the operator error.
Hmm, I'm not sure. I have not really use the %s
keyword in GDScript, so I have to rely on Python experience.
Looking at the text on line 5
, I noticed at the end there is &s
rather than %s
. Maybe that is causing the issue? Unless you need it, I would replace it with %s
and see if that fixes the issue.
Outside of that, the only thing I can think of is perhaps there is not enough strings in the array, and so it crashes because of that. Though I think if that happens, the %s
keyword just becomes null instead of crashing.
I dunno, I would have to experiment and see. I do not have the time right now, but I'll try later to do some experiments and see if I can deduce what is going on and hopefully a possible solution.