• 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.
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • 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] [HELP] Adapting Water Pond Bubbles

WolfPP

Spriter/ Pixel Artist
  • 1,297
    Posts
    6
    Years
    I'm trying to add this script, made by Klein Studio to my game, but give me this error:
    Spoiler:


    Also, i have Shadow Overworld and it have:
    Code:
    unless Spriteset_Map.respond_to?(:viewport)
      class Spriteset_Map
        def viewport
          return @viewport1
        end
        
        def self.viewport
          return $scene.spriteset.viewport rescue nil
        end
      end
    end

    Is that the problem?

    Thank you!
     
    Put this:

    Code:
    def viewport1; 
        return @@viewport1; 
      end

    before the line:

    Code:
    attr_accessor :character_sprites

    Credit FL and Richard PT for this fix here.
     
    Back
    Top