A script I made in 5-10 minutes or so because someone requested it.
I am to lazy to write a proper topic and to write comments.
It should be compatible to most scripts.
To use it just put something like this in a call script:
$data_armors[18].hp_plus = 50
$data_armors[16].sp_plus = 25
$data_weapons[4].hp_plus = 500
$data_weapons[6].sp_plus = 20
You can use it where ever you want in the game.
If you have loads to setup to start with you can insert a script like this:
class WeaponAndArmorSetup
def self.run
$data_armors[18].hp_plus = 50
$data_armors[16].sp_plus = 25
$data_weapons[4].hp_plus = 500
$data_weapons[6].sp_plus = -20
end
end
By default every weapon and armor adds 0 to hp and sp.
Use negative values to decrease the amount.
And put this in a call script:
WeaponAndArmorSetup.run
It will setup the weapons and armors.