Jump to content

Yerochasc

Members
  • Posts

    4
  • Joined

  • Last visited

Reputation

0 Neutral
  1. I'm not going through all 73 pages to verify if it's been pointed out or not but Mega Granbull has no sprite unsure if that's intentional but it's the same as the non-mega variant. Mega Shuckle's line in the document says it has Magic Guard but the actual ability is Shadow Tag in game, and the base speed for Mega Delibird is displayed as "s" in the document instead of the actual value. Minor things I'm sure and don't really affect anything but figured I'd point it out. Edit: Another missing feature I found is Water Veil in the file says it applies Aqua Ring to the effect bearer, it does not. The text is there in game but the healing effect never activates. Nevermind this part I forgot I had the new abilities turned off from the green outfit npc when testing things out, turned them back on and working okay now. Sorry just downloaded the mod so may be late to a lot of things and getting used to the changes figuring out what are mod specific and vanilla.
  2. This is a bit outdated so here's what I've done for the current version of the game. The codes you need to change are for V19.5 there are actually 2 you need to remove. In the Scripts sub-folder of Reborn open both of these files in a text editor, notepad works fine. The first is Battle.rb and remove the line: "i.makeUnmega if i.isMega?" Then go into the Pokemon.rb file and remove the code: "def makeUnmega if !self.originalForm && $Trainer.party.include?(self) print "this mon's original form was not set, somehow. please report this: species:#{@species} form:#{$cache.pkmn[@species].forms[self.form]} thx <3" end self.form = self.originalForm ? self.originalForm : 0 self.ability = self.originalAbility if self.originalAbility self.originalAbility = nil self.originalForm = nil end" Easiest way to find these is by searching "unmega" they should be the only results. If you only remove one of them it won't work and will revert back to the base form at the end of a battle.
  3. The always mega mod download seems to have been deleted, so for anyone who is wondering what the codes you need to change are for V19.5 there are actually 2 you need to remove. In the Scripts sub-folder of Reborn open both of these files in a text editor, notepad works fine. The first is Battle.rb and remove the line: "i.makeUnmega if i.isMega?" Then go into the Pokemon.rb file and remove the code: "def makeUnmega if !self.originalForm && $Trainer.party.include?(self) print "this mon's original form was not set, somehow. please report this: species:#{@species} form:#{$cache.pkmn[@species].forms[self.form]} thx <3" end self.form = self.originalForm ? self.originalForm : 0 self.ability = self.originalAbility if self.originalAbility self.originalAbility = nil self.originalForm = nil end" Easiest way to find these is by searching "unmega" they should be the only results. If you only remove one of them it won't work and will revert back to the base form at the end of a battle.
  4. So for anyone who is wondering what the codes you need to change are for V19.5 there are actually 2 you need to remove. In the Scripts sub-folder of Reborn open both of these files in a text editor, notepad works fine. The first is Battle.rb and remove the line: "i.makeUnmega if i.isMega?" Then go into the Pokemon.rb file and remove the code: "def makeUnmega if !self.originalForm && $Trainer.party.include?(self) print "this mon's original form was not set, somehow. please report this: species:#{@species} form:#{$cache.pkmn[@species].forms[self.form]} thx <3" end self.form = self.originalForm ? self.originalForm : 0 self.ability = self.originalAbility if self.originalAbility self.originalAbility = nil self.originalForm = nil end" Easiest way to find these is by searching "unmega" they should be the only results. If you only remove one of them it won't work and will revert back to the base form at the end of a battle.
×
×
  • Create New...