Recent content by NotACoolName

  1. NotACoolName

    Mega Mania (Playable on Aqua)

    You can only change abilities right now (by setting nickname, like "Pickup/Blaze" without the quotation marks, it makes the base ability Pickup and the mega ability Blaze)
  2. NotACoolName

    Mega Mania (Playable on Aqua)

    config/formats.js { name: "Mega Mania", section: "Other Metagames", mod: "megamania", ruleset: ['Pokemon', 'Standard', 'Team Preview', 'Swagger Clause', 'Baton Pass Clause', 'Mega Mania'], banlist: ['Uber', 'Soul Dew', 'Gengarite', 'Kangaskhanite'...
  3. NotACoolName

    Megas For All V2 (Induction Phase)

    Actually 8 abilities are missing and we're still handling learnsets.
  4. NotACoolName

    Move Equality (Now playable on Aqua Server!)

    I see the problem here, I used Moves instead of Movedex. Here's the fix: mods/moveequality/scripts.js exports.BattleScripts = { init: function () { for (var i in this.data.Movedex) { var move = this.data.Movedex[i]; if (move.priority === 0 &&...
  5. NotACoolName

    Move Equality (Now playable on Aqua Server!)

    config/formats.js { name: "Move Equality", section: "Other Metagames", mod: "moveequality", ruleset: ["OU"], banlist: ["Greninja", "Dynamic Punch"] } mods/moveequality/scripts.js exports.BattleScripts = { init: function () { for...
  6. NotACoolName

    Noble Items

    I could probably code this thing, it's not really hard as it only involve modifying/adding items. Until all the items are done and coded, Snaquaza could implement this on his server.
  7. NotACoolName

    The Power Within

    config/formats.js { name: "The Power Within", section: "XY Singles", ruleset: ['OU'], banlist: ['The Power Within'] }, team-validator.js if (format.banlistTable && format.banlistTable['thepowerwithin']) { var hpTypesX, hpTypes = ['Fighting'...
  8. NotACoolName

    400

    config/formats.js { name: "400", section: "Other Metagames", ruleset: ['OU'] banlist: ['400 Clause'] }, team-validator.js if (format.banlistTable && format.banlistTable['400clause']) { var bst; for (var i in template.baseStats) { bst +=...
  9. NotACoolName

    Old Name and Profile Change Requests

    I would like to change my name to NotACoolName because 00001111a is obviously NotACoolName. k - oglemi
  10. NotACoolName

    Ladder Balanced Hackmons

    Yes. XY changed so that you can't have more than 510 EVs when you're battling (on wifi)
  11. NotACoolName

    Megas For All V2 (Induction Phase)

    Just wanted to let you know, Megas For All now works! (sorta?) (multiple megas + abilities included) If anyone wants to contribute or host the mod, here's the code (updated in an almost daily basis). Several abilities aren't coded yet but you can still play it (if someone hosts it of course).
  12. NotACoolName

    Stat-Preference

    config/formats.js { name: "Stat Preference", section: "XY Singles", mod: 'statpreference', ruleset: ['OU'], banlist: [''] }, mods/statpreference/scripts.js exports.BattleScripts = { pokemon: { formeChange: function (template...
  13. NotACoolName

    Other Metagame of the Month Archive

    Stat Switch
  14. NotACoolName

    Stat Switch [Azumarill+Regice Banned]

    Alright, I've worked on the fix, the code right now says that mega's HP inherits base form's. mods/statswitch/scripts.js Array.min = function( array ){ return Math.min.apply( Math, array ); }; Array.max = function( array ){ return Math.max.apply( Math, array ); }; exports.BattleScripts...
Back
Top