03-03-2025, 03:02 AM
(This post was last modified: 03-03-2025, 03:04 AM by DerVVulfman.)
(03-03-2025, 02:33 AM)kyonides Wrote: What are you talking about now? I mean, be specific because it sounds strange. PM or discord preferred here.
EDIT 1
I don't seen any custom variable misnamed nor misspelled at all in both Version 4 and 5.
EDIT 2
At this point it seems clear to me that you failed to mention that you were talking about OLD errors the published script had. That I can easily understand.
That error spoken of was the three hour repeat-fest on the 26th (Wednesday) whereby I was asked to test this version of the 'command_355' method in Kyonides' Interpreter Fix:
def command_355
old_pos = @index
# Set first line to script
script = @list[@index].parameters[0] + "\n"
# Loop
loop do
# If next event command is second line of script or after
if @list[@index+1].code == 655
# Add second line or after to script
script += @list[@index+1].parameters[0] + "\n"
# If event command is not second line or after
else
# Abort loop
break
end
# Advance index
@index += 1
end
# NEW: Single Line Script Call Bug Fix
# That call failed because devs forgot to increase the @index variable
@index += 1 if @index == old_post
# Evaluation
result = eval(script)
# Removed Several Lines Here Before Continue
return true
end
Highlighted in yellow, there is the offending variable that was incorrectly entered, meant to be old_pos instead. And the error I kept sending and mentioning was this:
There was no way it could have succeeded in any betatest as it was.