• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • 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.

Help and Request Thread

Status
Not open for further replies.
But your head looks so juicy and nice.. Mmmm...
You can find D/P Battle sprites and Trainer sprites *pokemonelite2000 link removed*

My page >:3
 
Last edited:
But your head looks so juicy and nice.. Mmmm...
You can find D/P Battle sprites and Trainer sprites *pokemonelite2000 link removed*

Meehh!! Thank you Dash. My head does not look juicy. It does not look nice. It looks like a normal head. Thanks you for the sprites. Only problem is, it's gonna take a frickin hour to rip all these:S

EDIT: Ok, I KNOW this question has been asked before. But I'll ask it nonetheless. (Search screws up for me.:@)
How do you make new characters in RMXP? I want to add in the Pokémon but I don't know how!:( Please tell me.
 
Last edited:
*Sigh* Use the Database Editor, it's not that hard to find ¬_¬

Don't you *sigh* me! It's not like I am as experienced as you at this o.0
Thanks;)
 
Yeah but it's like.. One of the most simple things you can do in RPG Maker.

Lol, saying that I still don't know what I'm looking for. So I go into the Database and then what? (yeah I'm a n00b, but what're you gonna do?)
 
Guys, you could stop chit chating...

RMXP HELP FILE said:
Database Contents

To edit database contents, select [Tools], then [Database] from the main menu. Move through the tabs in the dialog box to edit the following data types:

"Actors": Data for the player-controlled party members.

(...)


Editing Data Entries

Apart from [System], the screen for each page is divided vertically, with the data ID and name listed on the left and the contents of that data entry displayed on the right. To edit an entry, click to select the entry from the list on the left and edit its contents on the right. Check the Tool Tips for more information on each entry.

Press [F4] and [F5] in the database window to quickly select the previous and next entries in the list. This can increase your efficiency when modifying multiple data entries.

Right-click on a data entry to make a pop-up menu appear that will allow you to copy, paste, and use other editing commands. Select [Multicopy] to bring up a dialog box that will let you specify the number of entries to copy at the same time. This is especially effective when copying over a portion of data from another project.


Changing Maximums

To change the number of data entries, click the [Change Maximum] button at the bottom of the list. A dialog box will appear, allowing you to set the maximum at any number between 1 and 999.

Increasing the maximum will increase the amount of memory necessary for the game to run, as well as slow down the speed at which it reads the data. Try not to make it any higher than is necessary.

Decreasing the maximum will erase any entries that may exist above that number.

Hope that helps


~Azura
 
Hey, everybody, me again. In my modded Exteradude CBS I'm trying to show the skill's element, (there's only one), but whenever I type skill.element_set it says cannot convert array into string, so I guess I have to specify but I don't know how to. Thanks in advance.
 
can someone rip the chipset of saffron city for me I know that there is one in the resources
thread but the silph. co building isn't in it

I need one for RM2K3
 
I think the reason Silph. Co building isn't in the chipset is because it wouldn't... fit there.

I don't really see any blank space there...
^^
 
Here's the RM2K3 chipset of the saffron city and sliph co. I tried to squeeze as much in as I could. Enjoy.
[PokeCommunity.com] Help and Request Thread
 
Ok, for that you need to do two things:

1) Set the terrain tag where wild pokémon appears:

Press F9 to go to Database. Click on Tileset tab and choose what tileset you'll be editing. After that, click on the last button on the right, called "Terrain Tag". Choose which tile will be the one you'll find wild pokémon (normally that tall grass tile). Click on it until you have a number different from 0 (I use 5).

Now click ok and let's go to part two.

2) Modifying script:

Press F11 to go to Script Editor, then search for Scene_Map class.

Scroll down until you see this:

Code:
if $game_player.encounter_count == 0 and $game_map.encounter_list != []

And change that for this piece of code:


Code:
if $game_player.encounter_count == 0 and $game_map.encounter_list != [] and $game_map.terrain_tag($game_player.x,$game_player.y) == 5


That's it... battles will only start when you step into tall grass.


Not tested, btw...


~Azura.
 
Ruyin, what exactly are you trying to do?

In the CBS that I'm modding, I want to be able to show the skill's element under the PP. I know how to put text there, but not the syntax to show the skill's element.
 
Ruyin, the syntax for showing an array with elements is:

Code:
$data_skills[skill_id].element_set

Remember that it's an array, so you should put an [0] for the first element, [1] for the second, etc...

Like:

Code:
$data_skills[skill_id].element_set[0]

Would show the first element for that move.


=)
 
Status
Not open for further replies.
Back
Top