I'm a total newbie to any RPG-Maker, so don't blame me please..
It's this issue:
I'm using the Tankentai Sideview Battle System Demo as the game base. Now I just added the four scripts from Guillaume777's Multi-Equip-Stuff-Script to it, and the following error occurs:
"Script 'Actor Advanced Status' line 1537: NoMethodError occurred.
undefined method `[]' for nil:NilClass"
The named line says
" type = @equip_kind[equip_type]"
Or in context:
"def equip(equip_type, id)
type = @equip_kind[equip_type]
if type == 0
if id == 0 or $game_party.weapon_number(id) > 0
update_multi_auto_state($data_weapons[@equip_id[equip_type]], $data_weapons[id])
$game_party.gain_weapon(@equip_id[equip_type], 1)
@equip_id[equip_type] = id
$game_party.lose_weapon(id, 1)
end"
(line 1536 to 1544)
I am also not used to any programming or so, so I'm relying all on your help. ;p
Thanks a lot, Niklas.
Edit: My problem should be clear: I want both scripts work together flawlessly.
It's this issue:
I'm using the Tankentai Sideview Battle System Demo as the game base. Now I just added the four scripts from Guillaume777's Multi-Equip-Stuff-Script to it, and the following error occurs:
"Script 'Actor Advanced Status' line 1537: NoMethodError occurred.
undefined method `[]' for nil:NilClass"
The named line says
" type = @equip_kind[equip_type]"
Or in context:
"def equip(equip_type, id)
type = @equip_kind[equip_type]
if type == 0
if id == 0 or $game_party.weapon_number(id) > 0
update_multi_auto_state($data_weapons[@equip_id[equip_type]], $data_weapons[id])
$game_party.gain_weapon(@equip_id[equip_type], 1)
@equip_id[equip_type] = id
$game_party.lose_weapon(id, 1)
end"
(line 1536 to 1544)
I am also not used to any programming or so, so I'm relying all on your help. ;p
Thanks a lot, Niklas.
Edit: My problem should be clear: I want both scripts work together flawlessly.