- Joined
- Nov 17, 2019
- Messages
- 1,934
- Reaction score
- 983
- First Language
- English
- Primarily Uses
- RMXP
AktorEkuip XP
by Kyonides
by Kyonides
Introduction
My scriptlet allows you to add more weapons or armors to a Hero's official lists during gameplay.
This can be enabled from the very beginning as well.
You see, there are 2 Constants defined in the AktorEkuip module below that will let you set a list of Actors that might get Extra Equippable Weapons or Armors from the very beginning.
It does not specify which Weapons or Armors at all. That will be setup dynamically during your game session.
It also features 2 special flags or Script Calls to enable or disable those lists for any given Actor at any time during gameplay.
Side Note
This scriptlet could be considered the RMXP port of EkuipFeatures ACE, even if both systems have pretty much nothing in common.
Settings
There are 2 Constants in the AktorEkuip module, namely:
- ACTORS_WITH_EXTRA_WEAPONS
- ACTORS_WITH_EXTRA_ARMORS
What happens to all the other actors?
Nothing at all, guys!
Ruby:
module AktorEkuip
# some comment here
ACTORS_WITH_EXTRA_WEAPONS = []
ACTORS_WITH_EXTRA_ARMORS = []
Heroes, listen to me now!
Behave decently or face the consequences of your actions in no time!
Behave decently or face the consequences of your actions in no time!
Guys, it is also possible to restore them at any given time.
List of Old Script Calls
Ruby:
# - First find an Actor - 2 Methods:
# actor = $game_party.actors[Index]
# actor = $game_actors[ActorID]
# - Enable an Actor's Ability to Equip more Weapons or Armors
# actor.enable_weapons = true
# actor.enable_armors = true
# - Enable an Actor's Ability to Equip more Weapons or Armors
# actor.enable_weapons = false
# actor.enable_armors = false
# - Weapons List - Add or Remove or Clear a WeaponID
# actor.increase_weapon_list(WeaponID)
# actor.reduce_weapon_list(WeaponID)
# actor.clear_weapon_list!
# - Armors List - Add or Remove or Clear a ArmorID
# actor.increase_armor_list(ArmorID)
# actor.reduce_armor_list(ArmorID)
# actor.clear_armor_list!
List of New Script Calls
Ruby:
# - Delist a Hero's Class Weapon or Armor
# actor.delist_weapon(WeaponID)
# actor.delist_armor(WeaponID)
# - Delist All of the Hero's Class Weapon or Armor
# actor.delist_weapons!
# actor.delist_armors!
# - Restore a Hero's Class Weaponset or Armorset or Both of them
# actor.restore_weapon_set!
# actor.restore_armor_set!
# actor.restore_class_sets!
Terms & Conditions
Free for use in any game.
Include my nickname in your game credits.
Don't adopt stay cats.
That's it!
Last edited: