Ghostxpo here,
I'm not the best at scripting so I don't know what my problem is right now. I'm assuming its a really easy one to solve because it seems like it but anyways heres my problem:
I wanted to make my own title scene using the "Skip the title screen method", the method and script is posted in this link:
Now in my game I'm using the Action Battle System instead of the standard RMXP Scene_battle thing. The script I used for my ABS game is Blizzard's ABS system (BlizzABS).
So the problem is that I'm getting an error on line 2037 which is:
Heres the segment of that script including the line:
The error told to me in the game is:
Script 'Blizz_ABS' line 2037: NoMethodError occurred.
undefined method `include?' for nil:NilClass
Well if anyone is smart enough to figure this out please do so. I'll credit you in my game for the help.
I'm not the best at scripting so I don't know what my problem is right now. I'm assuming its a really easy one to solve because it seems like it but anyways heres my problem:
I wanted to make my own title scene using the "Skip the title screen method", the method and script is posted in this link:
http://www.rmxp.org/forums/index.php?topic=7071.0
So the problem is that I'm getting an error on line 2037 which is:
return (@keys.include?(key) && !@_keys.include?(key))
Heres the segment of that script including the line:
#--------------------------------------------------------------------------
# triggered?
# Internal method to check the trigger state.
#--------------------------------------------------------------------------
def Input.triggered?(key)
return (@keys.include?(key) && !@_keys.include?(key))
end
# triggered?
# Internal method to check the trigger state.
#--------------------------------------------------------------------------
def Input.triggered?(key)
return (@keys.include?(key) && !@_keys.include?(key))
end
The error told to me in the game is:
Script 'Blizz_ABS' line 2037: NoMethodError occurred.
undefined method `include?' for nil:NilClass
Well if anyone is smart enough to figure this out please do so. I'll credit you in my game for the help.