Recent content by DL Kurosh

  1. D

    Set default rival name if blanked?

    Something like this should work: if $game_variables[12]=="" $game_variables[12]="Blue" end Just put it right after: pbSet(12,pbEnterText("Rival's name?",1,7,"Blue")) I haven't scripted in ages, but it should work.
  2. D

    RuntimeError when playing a game

    You are missing your Pokémon icon sprites. Redownload it.
  3. D

    Pokemon Names Aren't Showing

    Yeah, that is what I was thinking. It's probably an error with the compiler. Have you replaced your compiler script for an unmodified one? Because that's probably the problem.
  4. D

    Pokemon Names Aren't Showing

    I don't know what's the problem, but if it happened right after changing the 10 maximum characters for a Pokémon, maybe you messed up something in the compiler script section. Try copying it from a unmodified Essentials version.
  5. D

    Where is the Mega Evolution animation?

    In fact, it's really easy. Just go to the Editor and create an animation called "Common:MegaEvolution". Then just edit it and do whatever you want there, the game will automatically load it.
  6. D

    Wonder Trade (offline) v1.2

    Which error do you get? We can't help you without more information =P
  7. D

    Error with making a Surf item

    Welp, we don't have your code, so we can't help you, but it looks like you are calling a method that desn't exist.
  8. D

    Ability effects when switching out?

    I think there isn't a "none" weather in-battle, so you may need to create it (I have never created new weathers, so I don't exactly know how they work, but it should be something like this): Go to the script section PBWeather and create a new one like this: NONE = X Where X is the next...
  9. D

    Ability effects when switching out?

    Take a look at regenerator's code: if @hp>0 && @pokemon && isConst?(self.ability,PBAbilities,:REGENERATOR) self.pbRecoverHP((totalhp/3).floor,true) end You just need to put your code inside the def pbInitialize in PokeBattle_Battler. Then just set the weather to 0 and it should work.
  10. D

    [ROM hacking] (Noob) How do i take out gender selection?

    This is the Pokémon Essentials forum. You need to go to the Rom Hacking forum to ask this. ---------------------------------- You can use this to remove the gender selection. It's in spanish, but it only has 2 buttons, so you won't miss it =P. It's "Load ROM" and "Patch".
  11. D

    How to import music to Pokémon Essentials

    I have no idea dude, this is so weird xDD
  12. D

    [Question] Is it possible to program alternate paths?

    All of this are possible in Essentials and ROM hacking.
  13. D

    How to import music to Pokémon Essentials

    You have to hit F1 in-game. You'll see something like this (obviously, in english): You need to have the 2 last squares marked.
  14. D

    All Hidden Abilities disappeared

    No, by the Species i mean the "kind" part of the Pokemon.txt (for example, "Seed" in Bulbasaur or "Transform" in Ditto)
  15. D

    filename is nil error

    I'm pretty sure you are still missing images, because that's literally the same error I got when I was missing Pyroar's icon when introducing 6 gen.
Back
Top