RGSS Error

● ARCHIVED · READ-ONLY
Started by RocketKnight 6 posts View original ↗
  1. Hi, I do not know where to post this, the error appeared out of nowhere.​
    Semtiacutetulo-2.png
    List of scripts that I use:
    I do not know if all are compatible with each other.​
    Semtiacutetulo2-2.png
    Please, someone help me.​
  2. Well, no, it did not just appear out of no-where.

    It appeared because you (or your scripts) are trying to use a script call that clones some kind of number.

    Chances are, they are not compatible. Compatibility is something you will find here and there, but most systems and scripts need to be modified in some way to fully accommodate each other.

    Edit:

    also, you shouldnt double post. Moderators will move your post if it is in the wrong section.
  3. Try removing all scripts and then add them 1 by 1 to see which scripts is causing that error.
  4. I've moved this thread to RGSSx Script Support (this is not a request). Please be sure to post your threads in the correct forum next time. Thank you.


    although I suspect it really belongs in Ace Support, as I don't think it's an error with the scripts, but with your events.


    If you read the error, you'll see it says Game_Interpreter.


    That means, unless you have added scripts that add more content to the Game_Interpreter class, the error is in one of your events somewhere.


    I don't have Ace in front of me so I can't tell you what the likely cause is. But if you look at the Game Interpreter script and go to line 1414 (that's kind of hinted at, by the message saying "Game_Interpreter line 1414"), it might give you an idea.
  5. Shaz said:
     ...I don't have Ace in front of me so I can't tell you what the likely cause is. But if you look at the Game Interpreter script and go to line 1414 (that's kind of hinted at, by the message saying "Game_Interpreter line 1414"), it might give you an idea.
    1414 is the eval(script event command) line I am sure...

    Edit::

    1411 is the eval(script event command) line, not 1414...

      #--------------------------------------------------------------------------  # * Script  #--------------------------------------------------------------------------  def command_355    script = @list[@index].parameters[0] + "\n"    while next_event_code == 655      @index += 1      script += @list[@index].parameters[0] + "\n"    end    eval(script) # << This is most likely what line is causing the error  endend  # << This bottom line is 1414 on my cpu. Ie, the VERY bottom (empty) line of the script.What this says to me instantly is that your Game_Interpreter class has been extended somehow.

    Unless somehow your class has something stupid at the bottom of it. like

    Code:
    8.clone
  6. yep. I thought the eval was 1411 - we should all know that one by heart at this stage. And I did know it was the last method in the script.


    OP, if your line 1414 IS

    Code:
    eval(script)
    then the error is with a Script command in one of your game events.