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

[Archive] Pokemon Essentials: Starter Kit for RPG Maker XP

Status
Not open for further replies.

partyghoul2000

Intermediate Game Designer
175
Posts
18
Years
    • Age 36
    • USA
    • Seen Jun 24, 2014
    Thanks Partygoul!

    But, I have another problem...

    Well, 2.

    Anyways,
    1. How can I change the animation from the rolling side by side, to a vibrating sprite?
    2. How can I change the badges to ribbons if I turn a switch on?

    Thanx in advance! :D

    well, for number two all you'd have to do is change edit the badges.png under Graphics\Pictures and it'll show up as ribbons on the trainer card. as for the rolling animation go to find and put in:
    Code:
    def pokeballThrow
    and that will take you to where to you need to edit. as to how to edit it though, i have no clue.
     
    81
    Posts
    15
    Years
  • Me again. Ok so i added a new pokémon to the game (editing the Pokémon txt file and importing the sprites. On my test map when the character chooses the pokéball which has the pokémon in it; I get the following message:

    ---------------------------
    Pokemon Essentials
    ---------------------------
    Exception: SyntaxError
    Message: (eval):2:in `pbExecuteScript'compile error
    (eval):2: syntax error
    Interpreter:238:in `pbExecuteScript'
    Interpreter:1623:in `eval'
    Interpreter:238:in `pbExecuteScript'
    Interpreter:1623:in `command_355'
    Interpreter:467:in `execute_command'
    Interpreter:190:in `update'
    Interpreter:104:in `loop'
    Interpreter:195:in `update'
    Scene_Map:100:in `update'
    Scene_Map:98:in `loop'

    Thanks.

    EDIT: Damn those funny Teddiursa faces, it should be a colon and a 2 there.

    Can I have help please?
     
    249
    Posts
    16
    Years
    • Seen Jul 24, 2011
    can you show us the script that you used to give the pokemon? because it's saying that there was an error when it tride to run it. (i think)
     
    489
    Posts
    16
    Years
  • Does anyone have a moves.txt for PBS that has all of the Pokemon D/P/P moves in it and if so can they please upload it, because I just noticed that the moves.txt in PBS doesn't have D/P/P moves in it, only 1st-3rd Gen moves.
    All credit will go to whoever uploads it if they want credit. (Name in the Credits of my game).
     
    81
    Posts
    15
    Years
  • can you show us the script that you used to give the pokemon? because it's saying that there was an error when it tride to run it. (i think)

    It's alright now thanks, there was just a space in the script command.

    New questions (eventually i'll stop)

    1. When the hero whites out, where do i change where he goes - or does he automatically go to a pokémon centre/somewhere that can heal his pokémon?

    2. This is just a simple rpg xp question but, when choosing the starter I want a picture of the pokémon to appear above the pokéball. I realise that i use the show/erase pictures commands. But when I try to positiong it it jut appears in the top left corner.

    Thanks
     
    386
    Posts
    17
    Years
    • Seen Aug 10, 2015
    1: The point where the player goes after losing a battle is set for each Pokemon Center, as well as the metadata setting called "Home" (set it in the editor, under "Set Metadata", then "Global").

    Though this approach is rarely necessary, you can also change the position within an event, by putting a Script event command consisting of the text "Kernel.pbSetPokemonCenter" within that event, which sets it to the player's current position. If you use this approach, there must be another event page on that event with an Autorun trigger and the condition "Switch '0005: Starting Over' is ON". That event page must heal all Pokemon (use the event command "Recover All: Entire Party") and set the switch '0005: Starting Over' to OFF. For an example, see the event for any Pokemon Center receptionist.

    2: In the "Show Picture" event command, click "Center" under "The Origin", to make a picture appear centered on the desired point. Also, change "X" and "Y" to specify the pixel coordinates of the picture.
     
    Last edited:

    venom12

    Pokemon Crystal Rain Relased
    476
    Posts
    17
    Years
    • Age 33
    • Seen Dec 28, 2023
    I have Problem, if i move on one map i have this error
    Message: undefined method `[]' for nil:NilClass
    TilemapXP:868:in `refresh'
    TilemapXP:164:in `update'
    TilemapLoader:57:in `update'
    Spriteset_Map:227:in `_animationSprite_update'
    AnimationSprite:92:in `update'
    Scene_Map:51:in `updateSpritesets'
    Scene_Map:45:in `each'
    Scene_Map:45:in `updateSpritesets'
    Scene_Map:112:in `update'
    Scene_Map:67:in `main'
     

    PoKéMaKeR1

    Pokemon Rancher creator!
    282
    Posts
    16
    Years
  • I have Problem, if i move on one map i have this error
    Message: undefined method `[]' for nil:NilClass
    TilemapXP:868:in `refresh'
    TilemapXP:164:in `update'
    TilemapLoader:57:in `update'
    Spriteset_Map:227:in `_animationSprite_update'
    AnimationSprite:92:in `update'
    Scene_Map:51:in `updateSpritesets'
    Scene_Map:45:in `each'
    Scene_Map:45:in `updateSpritesets'
    Scene_Map:112:in `update'
    Scene_Map:67:in `main'

    Is it a connected map, cause if so you need to make sure every event page with the "erase this event" command has to be "player touch"
    I hope this helped!

    PoKéMaKeR
     
    386
    Posts
    17
    Years
    • Seen Aug 10, 2015
    venom12:

    That happened because of a bug. In the script section TilemapXP, in two places
    starting at lines 847 and 867, replace this:

    Code:
       if !@priotilesrect || !@priotilesfast || 
          @priorect[0]!=minX ||
          @priorect[1]!=minY ||
          @priorect[2]!=maxX ||
          @priorect[3]!=maxY

    with this:
    Code:
       if !@priotilesrect || !@priotilesfast || 
          @priotilesrect[0]!=minX ||
          @priotilesrect[1]!=minY ||
          @priotilesrect[2]!=maxX ||
          @priotilesrect[3]!=maxY

    And in line 858, change this line:
    Code:
         @priorect=[minX,minY,maxX,maxY]

    to this:

    Code:
         @priotilesrect=[minX,minY,maxX,maxY]
     
    386
    Posts
    17
    Years
    • Seen Aug 10, 2015
    shinylugia249:

    The documentation already mentions how more terrain tags can be added: "RPGXP's tileset editor only supports seven terrain tags. That's why Pokemon Essentials contains a built-in terrain tag editor. It can be accessed by choosing "Edit Terrain Tags" from the "Debug" option in the game menu, or from the Pokemon Essentials Editor
    (editor.exe)."
     

    Nero9121

    Fire Maker
    18
    Posts
    15
    Years
    • Seen Sep 29, 2008
    for the server that comes with it...do the players play in game with each other or is it only a server that allows them to trade with each other?
     

    partyghoul2000

    Intermediate Game Designer
    175
    Posts
    18
    Years
    • Age 36
    • USA
    • Seen Jun 24, 2014
    would there be a script that would stop wild encounters or change the encounter rates? maybe with variables and switches?
     
    81
    Posts
    15
    Years
  • Ok. You know the switch 'Starting Over'? Well that was annoying me, so i deleted the test map that it was on, but now if i lose a battle i get the error info telling me that it's really bad. How do i change this?
     
    Status
    Not open for further replies.
    Back
    Top