• 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!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • 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] Is it possible for an event to call a graphic based on the leading Pokémon in the party?

  • 6
    Posts
    1
    Years
    • Seen Dec 23, 2024
    I'm trying to make the player interact a bit more with their party Pokémon without using the Follower Pokémon script (because it doesn't exist for v19 anymore) through events, but I have absolutely no idea how I can convert the information gotten with $player.first_party into a specific overworld graphic of that exact leading Pokémon. As mentioned, I am using Essentials v19.

    Any help would be appreciated and thank you in advance!
     
    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/

    However, good luck replicating Following Pokemon, it is a very complex script. Are you sure it is not available for v19? I could have sworn that it is!
     
    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/

    However, good luck replicating Following Pokemon, it is a very complex script. Are you sure it is not available for v19? I could have sworn that it is!
    I only found Following Pokémon for v19 that was on Relic Castle, but that site is long gone unfortunately.

    Still, thank you for the reply! I will try out your solution the next time I work on the game again!
     
    Back
    Top