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

General game making help

Status
Not open for further replies.
Hey guys, just wondering... What do you guys edit your tilesets in? Cause Photoshop CS4 would work perfectly for me, the problem is, I can only save the tilesets in .PSB format. I've also seen Paint.net, but that laggs, has an inzoom limit, and doesn't have a nice grid... So I was wondering, what is the best program to edit tilesets in?
 
Hey guys, just wondering... What do you guys edit your tilesets in? Cause Photoshop CS4 would work perfectly for me, the problem is, I can only save the tilesets in .PSB format. I've also seen Paint.net, but that laggs, has an inzoom limit, and doesn't have a nice grid... So I was wondering, what is the best program to edit tilesets in?
MSPaint works great for me :3
 
Really? How do you get the transparency to work?
When you import the tileset into RPG Maker XP, you have the option to pick one colour in the tileset to represent transparency (usually hot pink), and one colour to represent semi-transparency (e.g. for shadows).

Tilesets themselves are a picture with no transparency.
 
When you import the tileset into RPG Maker XP, you have the option to pick one colour in the tileset to represent transparency (usually hot pink), and one colour to represent semi-transparency (e.g. for shadows).

Tilesets themselves are a picture with no transparency.

Really? Where is that option? :)
 
Pardon me, I thought this was a game making help thread.

It is, but there's a special thread here for questions that involve Poccil's Essentials Starter Kit, seeing as there are a lot of questions about that. This thread is for more general questions like the stupid questions I asked a few posts above :)

By the way, thanks Maruno, really didn't see it until now xD
 
Could anyone point me in the direction of a guide on adding the most important part ot a pokemon game, how to make a "choosing your first pokemon" section, where oak gives me 3 pokemon to choose from.

also i need a guide on "editing switches"
thanks
M.B
 
Could anyone point me in the direction of a guide on adding the most important part ot a pokemon game, how to make a "choosing your first pokemon" section, where oak gives me 3 pokemon to choose from.

also i need a guide on "editing switches"
thanks
M.B
Here's a tutorial that explains the basics about events in RPG Maker XP. Using this you'll start to understand how to make the things you asked. There are about 5 tutorials in total that explain the basics about events, look through all of them. Switches are in there as well.

https://www.rmxp.tigerseye.uk.com/tutorial_event0.shtml
 
In the notes.html under trainers it says:

VanishIfSwitch: If the RPG Maker XP switch with this number is ON, the event will not be shown.

So if a certain switch is on, the event wouldn't be shown. In my game, the graphic is still there. If i try to remove the graphic on the third event page, the graphics on all the pages of that event disappear.
 
how do you tell the game to have you battle a wild pokemon. but a specific pokemon... like in emerald how when you save birch, you battle a zigzagoon automaticly

that was weird...
 
Last edited:
how do you tell the game to have you battle a wild pokemon. but a specific pokemon... like in emerald how when you save birch, you battle a zigzagoon automaticly

that was weird...

If you read the notes.html that came with Pokemon Essentials, you should know.

This is from the notes:

Wild Pokémon Battles

To generate a wild Pokémon battle, call pbWildBattle(X,Y,V,C) where X is the species number of the Pokémon, and Y is its level. The optional parameter V represents the number of a variable to store the result of the battle (for example, if V is 2, then the result of the battle -- 1=won; 2=lost; 3=escaped; 4=caught -- will be stored in variable number 2), and the optional parameter C is true if the player can escape from the battle (the default is true).

The following code example initiates a battle against a Kecleon at level 20, and stores the result of the battle in variable number 10.

pbWildBattle(PBSpecies::KECLEON,20,10)
 
Status
Not open for further replies.
Back
Top