• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Scripting Question] Second Evil Team battle intro EBS

  • 14
    Posts
    5
    Years
    • Seen May 28, 2022
    So I've been able to code in a second evil team intro animation to EBS but it won't then show the other battle intro i.e. Plasma, Digital. However, when I try this on my first evil team list, it works just fine. What have I done wrong or what should I code to get this working?
     
    You don't really explain what you changed.
    But I do see sections that loop over checking each variant in turn if it's an evil team, so as long as it's in the EVIL_TEAM_LIST you can just name the file plasmaXXX or digitalXXX (just don't double up for the same XXX trainer id because there is an order and it will pick the highest priority variant.)

    Code:
        # methods used to determine special variants
        ext = ["trainer","special","elite","crazy","ultra","digital","plasma","skull"]
    The last one in the list is the highest priority.
     
    Back
    Top