09-01-2023, 02:12 AM
Just going through the old default scripts of RPGMaker XP, and noticed this with the Scene_Status code:
It might not mean a thing for the average person, but this method was apparently meant to get an 'equip_index' value. Except the class does absolutely nothing with it.
Code:
class Scene_Status
#--------------------------------------------------------------------------
# * Object Initialization
# actor_index : actor index
#--------------------------------------------------------------------------
def initialize(actor_index = 0, equip_index = 0)
@actor_index = actor_index
end
It might not mean a thing for the average person, but this method was apparently meant to get an 'equip_index' value. Except the class does absolutely nothing with it.