• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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.

Recent content by JulyArt

  1. JulyArt

    [Scripting Question] Menu script help

    Should be in ways simple enough, I think a simple pbMessage("You did your best \\PN, there's always next time") will suffice. to be placed in the regular 'game over/black out script' I'm on vacation right now, and enjoying myself, so not thinking about coding or art asset or anything for...
  2. JulyArt

    [Scripting Question] Menu script help

    what will the custom blackout screen do?
  3. JulyArt

    [Scripting Question] Menu script help

    Everything is 'doable' per se, the task is just a bit 'awkward' to explain. As it's 'simple' in some ways, but it depends on the desire effect. If just want to change the 'menu' and 'black out screen'. Which menu? You'll need to locate the script which houses said menu and change the flavor...
  4. JulyArt

    [Scripting Question] bug that makes HMs always able to be used

    It's likely due to 'debug' mode. e.g. if start game from RMXP, you'll entire debug mode by default. If you start your game from the game.exe, everything should be proper.
  5. JulyArt

    [Scripting Question] EBDX stopped recognizing this drop script.

    I'm not sure 'why' the error is occurring in sense of I cannot backtrace the error effectively. As I'm on Essnetial v19.1 and not utilizing EBDX. If you coded the drop method, it looks cool. Well done for sure. To debug, you just got to go to Luka's Scripting Utility line 299 to...
  6. JulyArt

    [Scripting Question] EBDX stopped recognizing this drop script.

    add the drop codes to the EBDX pbWildBattleSuccess. or make new method specifically for the drops, and add that method to EBDX. (This way, if EBDX changes again, you can simply add your drop method to it as a 1 liner) because they are the same def (pbWildBattleSuccess), the EBDX is overwriting...
  7. JulyArt

    [Scripting Question] pbRegisterPartner Name Issue

    After registering, you can manually change the partner name by doing. $PokemonGlobal.partner[1] = $game_variables[34] if the name is held in 34. $PokemonGlobal.partner[1] = "Bob Dylan" That's how I think it works anyway.
  8. JulyArt

    [Discussion] A journey shaped by player choice - thoughts?

    Games usually aren't as complex as players desire them to be because of time constraint. Ideas are easy to have, designs are easy to think about, bringing them to actual playability will cost time regardless. The thoughts of making your own fangame is to be able to try to implement the designs...
  9. JulyArt

    [Scripting Question] How to make the game identify the limit of items in the bag automatically and if, only if it is full, these items are automatically sent to PC Storage

    if X == Settings::BAG_MAX_PER_SLOT # There are two more other 'receive item' methods, you'll have to add the edits to each of them before the 'return false'. # If this don't work, oh well. You'll get a sense of what you should do and likely make it work. def pbReceiveItem(item,quantity=1)...
  10. JulyArt

    [Question] Do you know how to start planning a pokemon music theme?

    LMMS is an open source software. Recommend. There are many LMMS tutorial to get you started, and of course like all software, there are help manuals. Just experiment, and create 'sound' that you your self enjoy. Or create your 'vision' (sound vision) of what a track should sound like. LMMS...
  11. JulyArt

    [Error] Animated Sprites EBDX Problem (19.1)

    I actually 'had' this same exact issue yesterday when finally intergrated those two system to get a feel for what the community been up to over so long. I was rather confused regarding how the two systems were supposed to interact. It is purposeful that static sprites overlap animated sprite...
  12. JulyArt

    [Scripting Question] How can I increase PC_ItemStorage space? I realized a limit in a game with a high level of varied items.

    #=============================================================================== # The PC item storage object, which actually contains all the items #=============================================================================== class PCItemStorage attr_reader :items MAX_SIZE = 999 #...
  13. JulyArt

    [Scripting Question] How to kill the female Pokemon used in breeding to avoid their multiplication?

    put either of these codes to when the egg is received. or when the egg is available for pickup. etc. Delete Female PKMN 2.times { |n| $PokemonGlobal.daycare[n][0] = nil if $PokemonGlobal.daycare[n][0].gender == 1} Delete Female PKMN, and shift storage #2 to storage #1 if...
  14. JulyArt

    [Eventing Question] Trainers in v19 - very basic question

    within PBS, there's trainertypes.txt and trainers.txt. The lose text is within trainers.txt The essential wiki is faster in terms of resolving hic-hups being had. Defining_a_trainer If you eventually make it through the videos, congrats for sure, as you'll learn a lot. I got to video 4 or 5...
  15. JulyArt

    [Question] A question about Essentials.

    The short simple answer would be 'no'. It would require 'quite' a lot of effort. The development of Essentials continue to be focused on XP. For the most part however, users may accomplish the 'user's experience' sought after with inventive coding and understanding. 'Some of the codes' could...
Back
Top