|
|
|
|
Posted 2004-09-06, 01:06 PM
in reply to Draco2003's post "An RPG Maker 2003 Question and an RPG..."
|
|
|
|
Draco2003 said:
My first Question is that in RPG Maker 2003, when I upload or import a Charset from Charset.EX, it always shows the background around the character, no matter what color, and the black ends up being the invisible color!
The other is in PRG Maker XP. Can you give a brief definition of each event, and a short example! Thanks! Oh, one more thing, How can you change the font color in XP?
Sorry, Bluecube, I didn't know what to title this thread!
|
The first one's in the FAQ:
Quote:
Q. When I go to use an image, it sometimes has a square around the image I'm using. This border color is the same as the background for the PNG file I'm using.
A. You need to set the transparency. When you import the image, you'll get a preview of how the file looks, with the ability to zoom in and out. At that point, click on the background - when it flashes, that means it's transparent. The border won't appear around the character again. If you don't actually import it through RPGMaker (in other words, you just copy it manually to your project folder) you should really stop doing that - you'll sometimes get lucky with the transparency, but it's generally not worth it.
|
As to the events commands: Most are the same as in RPG Maker 2003. The ones that are new, are pretty obvious - "Change Weapons" for example, lets you change your weapon. "Tint Fog" allows you to tint the fog, if you have any. "Key Input Processing" is different than usual, because you can't wait for a specific key unless you do a LOOP around it and know the keycode. Basically, just read the event commands' names, and you'll know what they do ("Change BGM"? Changes the BGM..)
I should add that there are no longer separate Battle Event Commands - they're the same as the Event Commands..
The only brand new thing here is the Local Switch, which apparently only affects the map that you're on.
Font color is also the same as in RM2k3: Use "\c[x]" based on what color you want. So in this case:
\c[2]Hello\c[0] World
That shows up as " Hello World."
|
|
|
|
|
|
|
|
|
|
|