• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!

Search results

  1. LinKazamine

    Resource [20.1+] Weather System

    Oh, thank you! I'll fix it and reupload the plugin.
  2. LinKazamine

    Resource [20.1+] Weather System

    If you tell the game 'yes' when it asks if you want to delete the save file, the error stays? I have just tested with an old saved file I had that told me that the save file was either corrupt or incompatible with the game and it solved when I did this. Unfortunately, I don't know what causes...
  3. LinKazamine

    v21.1 [20.1+] Weather System - 1.3.9

    Added seasonal encounter pools. They aren't registered in the plugin but if you add them on 03 - Weather Encounters\01 - Encounter methods (or anywhere else), they should work. The encounter structure added by this plugin should be one of the following: TypeWeather, TypeTimeWeather, TypeSeason...
  4. LinKazamine

    Resource [20.1+] Weather System

    LinKazamine updated [20.1+] Weather System with a new update entry: 1.3.9 Read the rest of this update entry...
  5. LinKazamine

    Resource [20.1+] Weather System

    I'll have a look. I could add the weather based pools so it should be possible to add seasons to it too.
  6. LinKazamine

    Disabling Specific Field Moves in a Certain Map?

    Have you tried editing the line that checks if the player has the badge needed to use surf outside of battle? You could try something like this: next false if $game_switches[60] || !pbCheckHiddenMoveBadge(Settings::BADGE_FOR_SURF, showmsg).
  7. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    You would have to manually register the chosen base, which I don't know how to do.
  8. LinKazamine

    Spin tiles??

    I did manage to have spin tiles work by using the script komeji shared so if you have some knowledge about ruby you can do it too.
  9. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    Try with either pbSecretBase(ID) or pbNewSecretBase(ID). The ID has to be the name you put between [ ] in the secret_bases.txt with : before it. For example, I defined a secret base with the id [HouseRoute1] so the calls would be pbSecretBase(:HouseRoute1) and pbNewSecretBase(:HouseRoute1)...
  10. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    I don't know. Why would you want to add one with a script call?
  11. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    That error has nothing to do with other plugins. What it's telling you is that it can't get the base's price for some reason. Ah, it seems that for the v21 of the plugin there were changes to the other two files I edited too. For the v21, there was no need to change the code for [001] New...
  12. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    Ok, after looking at the code of v3.0.0, it seems the only real change is that the move route changed from "Up" (v20.1) to "UP" (v21+). If you don't want to copy it all again (and risk deleting something by mistake) you only have to search for "PBMoveRoute::Up" and change it to...
  13. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    Ah, sorry, just saw this. The edits are on version 2.2.1 of the plugin, so some things have changed since (like the move route commands that changed between v20.1 and v21+ of pokemon essentials) but you should be able to replicate the changes I did for this. Most of the code for the...
  14. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    Have you deleted everything in [002] Secret Base Classes/005_Base_Creation_Interaction_Exterior? Because the method mentioned in the error is defined in that file and I did not add that to the code I shared there because I did not edit that.
  15. LinKazamine

    Resource [v20\v21] Secret Bases Remade

    I had to edit some files, but I think I didn't forget any changes. As a note, [001] New GameData/002_SecretBase was commented out completelly and [001] New GameData/005_Compiler_Changes had part of it commented so I could have the edits in another file without they conflicting. [002] Secret Base...
  16. LinKazamine

    Resource [20.1+] Pokegear Themes

    In 03 - Options/Pokegear_ThemeOptions is the code for the theme buttons to appear. You can add conditions here for when those buttons will appear. That code is similar to the one for the pokegear apps or the options in the options menu so you can look at them to see how to add conditions for the...
  17. LinKazamine

    v21.1 [20.1+] Weather System - 1.3.8

    Fixed the code for pbInitializeWeather to stop it from creating extra weather zones not defined in the configuration file. With the fix, pbInitializeWeather now resets the weather of all zones (both current and future). Since the plugin loads old saved weather if it exists when opening the...
  18. LinKazamine

    Resource [20.1+] Weather System

    LinKazamine updated [20.1+] Weather System with a new update entry: 1.3.8 Read the rest of this update entry...
  19. LinKazamine

    Resource [20.1+] Weather System

    If you use pbForceUpdateWeather only (without pbInitializeWeather) multiple times, does it work or it causes an error as well? Seeing the last line of the code activated before the error, there seems to be a problem with the seasonal probabilities. Since you said that it works at least once...
  20. LinKazamine

    Resource [20.1+] Weather System

    For the error you are getting: 1) the error log says you have them in the wrong order. You have to initialize the plugin (it should do so as soon as you start a new game or change maps) and then you can update the weather by force. 2) the code you used to force the update is wrong. It is...
Back
Top