Thanks for the suggestion, Despero. I do appreciate it.
I tried it out (took me a few days because my rig was in the shop) and when I tested it, this is what happened.

So I'm thinking there's still a bit more to be done with this.
EDIT: Ok, never mind, i figured it out, although Despero did point me in the right direction.
The code has to be changed from this:
def refresh
self.contents.clear
@data = []
@data.push($data_weapons[@actor.weapon_id])
@data.push($data_armors[@actor.armor1_id])
@data.push($data_armors[@actor.armor2_id])
@data.push($data_armors[@actor.armor3_id])
@data.push($data_armors[@actor.armor4_id])
@item_max = @data.size
self.contents.font.color = system_color
self.contents.draw_text(4, 32 * 0, 92, 32, $data_system.words.weapon)
self.contents.draw_text(4, 32 *
1, 92, 32, $data_system.words.armor1)
self.contents.draw_text(4, 32 *
2, 92, 32, $data_system.words.armor2)
self.contents.draw_text(4, 32 *
3, 92, 32, $data_system.words.armor3)
self.contents.draw_text(5, 32 *
4, 92, 32, $data_system.words.armor4)
draw_item_name(@data[0], 92, 32 * 0)
draw_item_name(@data[1], 92, 32 * 1)
draw_item_name(@data[2], 92, 32 * 2)
draw_item_name(@data[3], 92, 32 * 3)
draw_item_name(@data[4], 92, 32 * 4)
end
to this:
def refresh
self.contents.clear
@data = []
@data.push($data_weapons[@actor.weapon_id])
@data.push($data_armors[@actor.armor3_id])
@data.push($data_armors[@actor.armor4_id])
@item_max = @data.size
self.contents.font.color = system_color
self.contents.draw_text(4, 32 * 0, 92, 32, $data_system.words.weapon)
self.contents.draw_text(4, 32 *
1, 92, 32, $data_system.words.armor3)
self.contents.draw_text(5, 32 *
2, 92, 32, $data_system.words.armor4)
draw_item_name(@data[0], 92, 32 * 0)
draw_item_name(@data[3], 92, 32 * 3)
draw_item_name(@data[4], 92, 32 * 4)
end
Still, thank you very much for your help, Despero. I never would have gotten even that far without it.
Raven: You have us, Rowen...if you want, we'll be your family.
Rowen: Even the crazy man?
Homard: Especially the crazy man! Every girl needs a pet!
Mina: I like him. Reminds me of me Uncle Fred.
Simona: Is Uncle Fred senile, too?
Mina: No, but he thinks he is.