Do you need to prevent your hero from fighting dangerous monsters while emptyhanded?
Do you hate the idea of facing real danger without any coat of mail?
If the answer is yes, then this script should become your latest addition to your game project!
You just need to add an Actor's ID or Armor Kind to one of the 2 lists (arrays).
Here's an example:
Ruby:
module RealEkuip
WEAPON_ONLY = [1, 3, 7]
ARMOR_ONLY = {} # Leave it alone!
ARMOR_ONLY[1] = [2, 4]
ARMOR_ONLY[2] = [1, 3]
end
复制代码
Yes, that number makes a huge difference if talking about pieces of armor!