RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[pretty much RESOLVED] Several 2k3 questions--message issues

0 Members and 2 Guests are viewing this topic.

****
Rep:
Level 88
wrath of winter
1) Say the hero enters a mini-game and has to collect money.  I want the announcer to say "You picked up (x) money" and then award a prize for the amount of money.  Issue here:  How do I display "x" (variable MoneyCollected) within the message?  (variable MoneyCollected is kicked up with each coin collected)  I also wanna use this in a side-quest kinda like the Skulltula mini-quest in Zelda: Ocarina of Time.

2) How do I display a character's name in a message?  For example, if the player renames a character, how do I make the message use the current name?  (e.g.  player renames hero1 to "John", how do I make the message say "hey there, (hero1 name)"?)

3) Are there only two available fonts?  I ask because I'm getting a little tired of capital M's and lowercase i's running into each other and becoming one letter.  The fonts are also a bit blocky and my friends can't read it well when I ask them to test a section of a game.

4) Is there a way to avoid the cutoff of a message when a face is added to the message box?  It's a bit awkward trying to calibrate messages so they fill only half the "Message" box...is there a way around this?

5) Can text speed be slowed down?  For instance, if a character is looking at some powerful enemy and is stuttering, can I slow down the text speed to give more of a stuttering or hesitant effect?

6) (still concerning messages) Is there a program or anything that'll help me make face sets?  I've looked and looked but all I find are girly fashion-design Flash screens.  I'm good at spriting but horrible at creating faces from scratch.
« Last Edit: July 10, 2007, 12:04:21 AM by iceflame1019 »

Want a personal sig like this? Ask Firerain:
http://rmrk.net/index.php/topic,20203.0.html

*******
Communism<3
Rep:
Level 91
1) Say the hero enters a mini-game and has to collect money.  I want the announcer to say "You picked up (x) money" and then award a prize for the amount of money.  Issue here:  How do I display "x" (variable MoneyCollected) within the message?

Just have it as a preset amount. It may be possible with switches or variables, but I haven't opened my copy of 2k3 for several months and I don't feel like working it out.

Quote
2) How do I display a character's name in a message?  For example, if the player renames a character, how do I make the message use the current name?  (e.g.  player renames hero1 to "John", how do I make the message say "hey there, (hero1 name)"?)

You use the Enter Hero Name event command to change the desired name, then you use this command: \n[n]   in place of the name in the text box, the second "n" is to be replace with the characters number (go to database, check out the characters and the first person in the list is 1, the second 2, the third 3 etc...).

Quote
3) Are there only two available fonts?  I ask because I'm getting a little tired of capital M's and lowercase i's running into each other and becoming one letter.  The fonts are also a bit blocky and my friends can't read it well when I ask them to test a section of a game.

There's a fix for this;

+------------------------------------------+
| If the In-Game Fonts Don't Look Right... |
+------------------------------------------+

If the in-game fonts appear squishy and the letters run together, try the following steps,
in order, to solve the problem:

1. Install the "msgothi0.ttc" and "msmincho.ttc" fonts by copying them from the fonts
directory included in the installation to the  \windows\fonts directory and double-clicking on them.  See if the fonts look correct now.

2. If the step above didn't work, install the "RM2000.fon" and "RMG2000.fon" font files
into windows\fonts as described above (note that installing these files isn't necessary if you already have RPG Maker 2000 installed), then copy the "RPG_RT.exe.dat" file included in
the fonts directory over the one in the main application directory (the same directory as the RPG2003.exe file).  Create a new project and see if the fonts look correct in that new project.

TIP: I have been told that downloading Japanese language support for Internet Explorer makes the fonts used for method #1 work reliably.  Try it and see.

NOTE: If you have to use method #2 above to fix the fonts, projects you created before performing the fix will not be fixed.  You must copy the RPG_RT.exe file from the new project over the one in your existing project(s).

Quote
4) Is there a way to avoid the cutoff of a message when a face is added to the message box?  It's a bit awkward trying to calibrate messages so they fill only half the "Message" box...is there a way around this?

Yes, learn to hit enter at the right time. This is how I did it, there may be a fix, may not.

Quote
5) Can text speed be slowed down?  For instance, if a character is looking at some powerful enemy and is stuttering, can I slow down the text speed to give more of a stuttering or hesitant effect?

Yes. Enter this command before you start typing in the text box: \s[n]   

Replace "n" with a number between 1 and 20. 1 is the fastest and "\" are replaced with a Yen $ sign, which is normal.

Quote
6) (still concerning messages) Is there a program or anything that'll help me make face sets?  I've looked and looked but all I find are girly fashion-design Flash screens.  I'm good at spriting but horrible at creating faces from scratch.

Don't? I got anime pics and cut out faces from them.
« Last Edit: July 09, 2007, 09:49:08 AM by Deliciously_Saucy »

****
Rep:
Level 88
wrath of winter
1) Say the hero enters a mini-game and has to collect money.  I want the announcer to say "You picked up (x) money" and then award a prize for the amount of money.  Issue here:  How do I display "x" (variable MoneyCollected) within the message?

Just have it as a preset amount. It may be possible with switches or variables, but I haven't opened my copy of 2k3 for several months and I don't feel like working it out.

Welll...I've been trying switches and variables but I was looking for for some little code segment to put into the message.  I can probably work around it, though, if I can't find the code or whatever.  Something like conditional branch if variable is higher than 24, message "yadeyadeyah"...

Quote
Quote
2) How do I display a character's name in a message?  For example, if the player renames a character, how do I make the message use the current name?  (e.g.  player renames hero1 to "John", how do I make the message say "hey there, (hero1 name)"?)

You use the Enter Hero Name event command to change the desired name, then you use this command: \n[n]   in place of the name in the text box, the second "n" is to be replace with the characters number (go to database, check out the characters and the first person in the list is 1, the second 2, the third 3 etc...).

Hmmm...  I think I got it.  Thanks!

Quote
Quote
3) Are there only two available fonts?  I ask because I'm getting a little tired of capital M's and lowercase i's running into each other and becoming one letter.  The fonts are also a bit blocky and my friends can't read it well when I ask them to test a section of a game.

There's a fix for this;

+------------------------------------------+
| If the In-Game Fonts Don't Look Right... |
+------------------------------------------+

If the in-game fonts appear squishy and the letters run together, try the following steps,
in order, to solve the problem:

1. Install the "msgothi0.ttc" and "msmincho.ttc" fonts by copying them from the fonts
directory included in the installation to the  \windows\fonts directory and double-clicking on them.  See if the fonts look correct now.

2. If the step above didn't work, install the "RM2000.fon" and "RMG2000.fon" font files
into windows\fonts as described above (note that installing these files isn't necessary if you already have RPG Maker 2000 installed), then copy the "RPG_RT.exe.dat" file included in
the fonts directory over the one in the main application directory (the same directory as the RPG2003.exe file).  Create a new project and see if the fonts look correct in that new project.

TIP: I have been told that downloading Japanese language support for Internet Explorer makes the fonts used for method #1 work reliably.  Try it and see.

NOTE: If you have to use method #2 above to fix the fonts, projects you created before performing the fix will not be fixed.  You must copy the RPG_RT.exe file from the new project over the one in your existing project(s).

I'll hafta copy this down...RPGM is on my personal computer.  Do I hafta get RPG2k for those fonts or are they available as patches or whatever?  (i ask because my browser's crappy slow and I wanna know where I'm going instead of freezing up trying to find it)

Quote
Quote
4) Is there a way to avoid the cutoff of a message when a face is added to the message box?  It's a bit awkward trying to calibrate messages so they fill only half the "Message" box...is there a way around this?

Yes, learn to hit enter at the right time. This is how I did it, there may be a fix, may not.

That's what I already do...oh well.  Thanks anyway.

Quote
Quote
5) Can text speed be slowed down?  For instance, if a character is looking at some powerful enemy and is stuttering, can I slow down the text speed to give more of a stuttering or hesitant effect?

Yes. Enter this command before you start typing in the text box: \s[n]   

Replace "n" with a number between 1 and 20. 1 is the fastest and "\" are replaced with a Yen $ sign, which is normal.

Okay, thanks!  I'm starting to wonder why I've never seen these in the Help files...

Quote
Quote
6) (still concerning messages) Is there a program or anything that'll help me make face sets?  I've looked and looked but all I find are girly fashion-design Flash screens.  I'm good at spriting but horrible at creating faces from scratch.

Don't? I got anime pics and cut out faces from them.
[/quote]

I was hoping there was a way around that...looks like not.  Tysm for the advice though, it should really help!


Want a personal sig like this? Ask Firerain:
http://rmrk.net/index.php/topic,20203.0.html

*
A Random Custom Title
Rep:
Level 96
wah
Okay, thanks!  I'm starting to wonder why I've never seen these in the Help files...
I thought it was in there... Also, wow, lots of help. I also never knew DS did RM2k3.

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Code: [Select]
\v[x]


displays the value of a variable, where x is the variable number, so if you are keeping track of how much money you collect, you can display it with that.
« Last Edit: July 09, 2007, 05:00:18 PM by modern algebra »

****
Rep:
Level 88
wrath of winter
tysm!

this helps a lot!

Want a personal sig like this? Ask Firerain:
http://rmrk.net/index.php/topic,20203.0.html