• 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 LenSho

  1. LenSho

    [Completed] Markiplier RPG Adventure

    Download GameJolt Hello everyone. This is a Fangame dedicated to the Youtuber Markiplier and his fans. I had been working on an actual Pokémon Fangame for quite some time, but I felt like there was still so much to do. So I decided to take a break from it and focus on a different project. It...
  2. LenSho

    Gen VI-type Pokemon Trainer Entrance for battles

    I can read spanish. The links are broken and it says it's using PokeXY Engine (merge of PJEngine and WAE 2.0), so I don't think it would work for essentials anyway. Not entirely sure, I don't even know what those are.
  3. LenSho

    Call a common event from the script section?

    Hmm, I'm not sure. Is your Item called with the handler UseFromBag like this? ItemHandlers::UseFromBag.add(:ITEM,proc{|item| #Item effect code (probably pbCommonEvent(id)) next 2 else Kernel.pbMessage(_INTL("Text")) next 0 end }) Cause according to the wiki, 2 or 4 should...
  4. LenSho

    Call a common event from the script section?

    I use this code and it works fine pbCommonEvent(id)
  5. LenSho

    Custom Option in Options Menu?

    I tried doing that but it didn't work. I was able to do it with a variable though, so it's kind of the same. in script PokemonOptions below attr_accessor :language add attr_accessor :custom Then under @PokemonOptions=[ add EnumOption.new(_INTL("Custom"),[_INTL("On"),_INTL("Off")]...
  6. LenSho

    Temporarily disable the Trainer Card

    In script PokemonPauseMenu, find this line: commands[cmdTrainer=commands.length]=$Trainer.name add a condition like commands[cmdTrainer=commands.length]=$Trainer.name if $game_switches[XXX]==true XXX is the number of your switch. The game won't let you see the Trainer Card in the menu until...
  7. LenSho

    Mining mini game

    You see, the script reads the picture on a grid like this: The first line of the script is: [:DOMEFOSSIL,20, 0,3, 5,4,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0]], Where: :DOMEFOSSIL is the internal name of the item 20 is the probability of finding that item. (If you look at RootFossil, it...
  8. LenSho

    Switch sprite from 160x160 to 96x96

    Yes, you can. You just need to edit them in a program like Photoshop or Paint.Net.
  9. LenSho

    Publishing a game with Essentials 13

    I saw someone asking this before. If I remember correctly you just need to remove all the audio files before compressing, and then add them inside the right folder along your game's files. I had this problem with a non Pokémon RPG Maker XP game I made and I had to do that. Hope this helps.
  10. LenSho

    adding gender diferences with moves

    Lucidious89 posted this in the Gen 6 AddOn thread It goes in PokemonMultipleForm MultipleForms.register(:MEOWSTIC,{ "ability"=>proc{|pokemon| next if pokemon.gender==0 # Male Meowstic if pokemon.abilityflag && pokemon.abilityflag=2 next getID(PBAbilities,:COMPETITIVE) #...
  11. LenSho

    Pokemon Contests Script 1.5

    Oh ok, thanks. By the way, what does the 50 and the 20 mean in the lines: (50,PBSpecies::MILOTIC,20,PBSpecies::MAGMAR,20,PBSpecies::VILEPLUME,20) Is that their level?
  12. LenSho

    Pokemon Contests Script 1.5

    This is awesome! Is there a way to edit the opponent Pokémon's moves? EDIT: I'm getting this error (in an unedited version) in Round 2 in Porygon's turn (Smart contest) Only when it's Porygon's turn
  13. LenSho

    [Essentials Tutorial] How to add more features to the Pokégear

    Oh I tried that, but then when I opened the Pokédex from that option the Dex List didn't show up at first, took me straight to the first Dex. I tried again and this time it showed up. This doesn't happen when catching new Pokémon though. They show up in the Pokédex right after catching/getting...
  14. LenSho

    [Essentials Tutorial] How to add more features to the Pokégear

    I tried to add the PokéDex to the PokéGear and got this error:
  15. LenSho

    Changing All Fonts Colors

    In PokemonMoveRelearner script, line 66 you'll find text="<c2=318c675a><ac>"+_INTL("BATTLE MOVES")+"</ac>\n\n" c2=318c675a is the color If you don't know what that means, according to this article: http://pokemonessentials.wikia.com/wiki/Messages <c2=XXXXyyyy>...</c2> Makes the text between...
Back
Top