Advertisement
heroofhyla

NoItemsInBattle

Oct 15th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*:
  2.  * @plugindesc Removes the items option from the battle menu
  3.  * @author Michael Stroud
  4.  *
  5.  * No warranty, express or implied. I can't guarantee that it will
  6.  * work at all. If it's useful to you, credit is appreciated.
  7.  * You may redistribute, but do not remove any of the above.
  8.  */
  9.  
  10. (function(){
  11.     Window_ActorCommand.prototype.makeCommandList = function() {
  12.     if (this._actor) {
  13.         this.addAttackCommand();
  14.         this.addSkillCommands();
  15.         this.addGuardCommand();
  16.         //this.addItemCommand();
  17.     }
  18. };
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement