Recent content by Swdfm

  1. Swdfm

    [Scripting Question] Game freezes after event finishes

    this one is a bit of a mystery to test if it actually finishes, are you able to put a test text thing at the end of page 1? if it never runs, then your move route back is wrong Not relevant to the error, but will cause another if you dont fix. On page 2, there is an empty text box that runs...
  2. Swdfm

    [Scripting Question] Trying to add a second Ability that turns off other Abilities, get "Stack level too deep" error

    After a little bit of examining abilityActive? and hasActiveAbility? (Battler) and pbCheckGlobalAbility (Battle), I worked the following out: The code is written in that order for a reason. If the ability checked, or the user has Neut Gas, it does not even run the check for the global ability...
  3. Swdfm

    [Scripting Question] Give Eevee with tackle, growl and tailwhip

    have a look at the "give demo party" section in debug im also pretty sure that there is an event in the vanilla that does that too
  4. Swdfm

    [Scripting Question] Emerald/FRLF UI for 21.1?

    This is taking quite a while I will finish this at some point Here is what I have come up with in the meantime It functions, but is extremely messy. It also requires changing the name of the "Pictures " folder to "UI" General Tips for porting: 1) Look at any differences between the script and...
  5. Swdfm

    [Scripting Question] Emerald/FRLF UI for 21.1?

    I strongly believe that this can be ported For the record, it is Gen 3, not 4 Leave this with me
  6. Swdfm

    Parental Bond ability clone PEv21.1

    Parental Bond is pretty complex! What are you trying to do exactly?
  7. Swdfm

    [Scripting Question] Is it possible for an event to call a graphic based on the leading Pokémon in the party?

    im not sure what you're looking for exactly, but try something like: species = $player.pokemon_party[0].species ev = get_character(EVENT_ID) ev.character = "Following/#{species}" This would change an event's graphic with ID EVENT_ID to a file from a folder in Graphics/Characters/Following/...
  8. Swdfm

    [Scripting Question] Emerald/FRLF UI for 21.1?

    are there any examples for older versions of essentials? if so, a port can be made
  9. Swdfm

    [Scripting Question] Form change on evolution screen

    okay, so what you are supposed to do is actually a bit different you are supposed to change mime jr's form BEFORE any evolution, this makes things smooth for an example, take a look at the rockruff code
  10. Swdfm

    [Scripting Question] Need help for a new Ability

    #------------------------------- # Tricky Battle::AbilityEffects::EndOfRoundEffect.add(:TRICKY, proc { |ability, battler, battle| next unless battler.turnCount == 0 || battle.turnCount == 0 # First turn out! battle.pbShowAbilitySplash(battler) if...
  11. Swdfm

    Script: Modular Messages + Add Ons

    Yo! Modular Messages Plugin Compatible with Essentials v21 Credits Download What does this Plugin do? How to install: Text Controls New/Updated Text Controls Adding Your Own Text Controls Add Ons Bosh! Thanks for using, and if you are having any problems with the plugin...
  12. Swdfm

    [Completed] [v4.2 Out!] Pokémon Radiant Version!

    no to both for now, sorry both of those issues have been heavily reported over the years i am aware, and they are both due to be fixed thanks for your patience
  13. Swdfm

    How to define more specific Battle Frontier Pokemonmovesets?

    And it is done! https://www.pokecommunity.com/threads/frontier-plus-smogon-converter.532218/ If you can't access, try again in like 48 hours
  14. Swdfm

    Script: Frontier Plus + Smogon Converter

    Sorry? What's that? It's only another resource from your friendly neighbourhood resourceman! Is that a word? It is now! So, as much as we all love our Maruno, the PBS file for the battle frontier pokemon is... messy to say the least: WHY;ARE;THERE;SO,MANY;SEMICOLONS;AND,WHAT,IS,THE,ORDER So...
Back
Top