RUSTYMYSTERYFAN'S PROFILE
Search
Filter
[RMVX ACE] Adding A Store All Function To Galv's Item/Bank Storage
I wasn't able to make this plugin work, but I came up with a couple of commands that should theoretically allow you to move a player's inventory yourself without using the windows. It will still have to be done manually instead of all items at once.
Try adding these lines to the Game_Interpreter class at the bottom of the script and calling them the same way you would other script calls:
Try adding these lines to the Game_Interpreter class at the bottom of the script and calling them the same way you would other script calls:
def force_give(type, id, amount)
if $game_party.multi_storage.nil?
$game_party.create_storage_contents
end
case type
when "weapon"
@item = $data_weapons[id]
when "item"
@item = $data_items[id]
when "armor"
@item = $data_armors[id]
end
if $game_party.multi_storage(@item).nil?
$game_party.multi_storage_set(@item,amount)
else
$game_party.multi_storage_change(@item,amount)
end
end
def force_take(number)
return if @item.nil?
$game_party.gain_item(@item, number)
$game_party.multi_storage_change(@item,-number)
#$game_party.multi_storage.delete(@item) if $game_party.multi_storage(@item) <= 0
if $game_party.multi_storage.empty?
@take_window.activate
end
end
How to get rpg maker 2000 to work on windows 10?
How to get rpg maker 2000 to work on windows 10?
You can try changing the system region, but you might have to re-install the rpg maker 2000 while your system is set to japanese.
Usually, just changing the region for non-Unicode programs is enough, but it will still require a restart before it works.
To change the region on Windows:
* Open the control panel
* Click "Clock and Region"
* Click "Region"
* Click "Administrative" tab
* Click "Change System Locale" and change it to Japanese
* Restart computer
Alternatively, you could try installing this although I had mixed results: https://pooi.moe/Locale-Emulator/
Usually, just changing the region for non-Unicode programs is enough, but it will still require a restart before it works.
To change the region on Windows:
* Open the control panel
* Click "Clock and Region"
* Click "Region"
* Click "Administrative" tab
* Click "Change System Locale" and change it to Japanese
* Restart computer
Alternatively, you could try installing this although I had mixed results: https://pooi.moe/Locale-Emulator/
Pages:
1













