Zelaron Gaming Forum  
Stats Arcade Portal Forum FAQ Community Calendar Today's Posts Search
Go Back   Zelaron Gaming Forum > Zelaron Gaming > RPGMaker

 
 
Thread Tools Display Modes

 
Where and How do I put i NPC's?
Reply
Posted 2004-09-02, 10:56 AM
Okay, series of question:

1)NPC's. I have no idea how to place them, needless to say where they are.
Where are they?

2)How do is set where they go?

3)How do I incorporate a story?
I mean, what do I have to do to make text, etc...To make a good game.
4)I downloaded some sprites, and when I try to import them, it says invalid image size. Why?
Old
Profile PM WWW Search
EvilLeprechaun is neither ape nor machine; has so far settled for the in-betweenEvilLeprechaun is neither ape nor machine; has so far settled for the in-between
 
 
EvilLeprechaun
 



 
Reply
Posted 2004-09-02, 11:05 AM in reply to EvilLeprechaun's post "Where and How do I put i NPC's?"
NPC's - usually just put them in as an event --> set the picture the the character you want as an NPC.

To set where they go, click the drop down menu next to Type, in the movement Pattern, and choose custom. Below the drop down menu, a button will become active (Define route), click the button and choose the directions you want the NPC to move. If you want them to repeat this over and over then make sure Repeating is checked. Once you have done, click the drop down menu in the top right of the define route screen, and make sure it is set to This Event.

To incorporate a story, use a series of events. If you are using rmxp, then click the blue cube on the toolbar to choose the event layer, then double click on a square on the grid. This will bring up the event menu. If you double click on the <> then it will bring up the different events you can use. Many speak for themselves, but others may do things you don't know. Ask Bluecube for more info.

As for the sprites, the way I stopped that was to download iDraw (search Google for it), then opened the sprites in iDraw, and saved them as pics (png. bmp.) in a folder. Then go into rmxp, and import them into the Character folder, it will ask you to set the transparent colour, choose the background of the sprites (e.g if the colour behind the sprites is green, then LEFT click somewhere on the green). Look the translucent colour blank. Press the clear button next to it if you want to make sure it is blank. Your sprites should then work. All you need to do is choose them for your characters onm the database.
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 
Reply
Posted 2004-09-02, 11:28 AM in reply to EvilLeprechaun's post "Where and How do I put i NPC's?"
Beaten because I had to upload a picture, bah.

Quote:
1)NPC's. I have no idea how to place them, needless to say where they are.
Where are they?
1) NPCs are just Events that can move around. Observe (RM2k3, since RMXP still refuses to work):



Quote:
2)How do is set where they go?
2) Either using randomized movement, or by building a "custom pattern" (check the "Movement Type" dropdown box). You can also move Events by using other events, using the event command <>"Move Event"

Quote:
3)How do I incorporate a story?
I mean, what do I have to do to make text, etc...To make a good game.
3) Event command <>"Message" will put text on the screen. Using multiple <>Message commands, you can have the effect of conversation. How to make a good game, though, is an unanswerable question - just make a game that you won't mind playing over and over to fix random errors.

Quote:
4)I downloaded some sprites, and when I try to import them, it says invalid image size. Why?
4) Because.. the image.. is an invalid size? What's the image type / RPGMaker version, and the size of the image in pixels? And are you clicking on the proper folder to import first? (On the left side of the Resource Manager, there's a bunch of folders. Click on the file type you want to import, THEN attempt to import it.)

Last edited by BlueCube; 2004-09-02 at 11:32 AM.
Old
Profile PM WWW Search
BlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzBlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
BlueCube
 



 
Reply
Posted 2004-09-02, 11:59 AM in reply to BlueCube's post starting "Beaten because I had to upload a..."
When I said incorporate, I mean, How can I have a conversation with someone?
When I talk to someone, I don't want them to just talk. Also, how do I set up a store? I want to have stores to buy stuff. i have no clue how to set that stuff.
Old
Profile PM WWW Search
EvilLeprechaun is neither ape nor machine; has so far settled for the in-betweenEvilLeprechaun is neither ape nor machine; has so far settled for the in-between
 
 
EvilLeprechaun
 



 
Reply
Posted 2004-09-02, 01:28 PM in reply to EvilLeprechaun's post starting "When I said incorporate, I mean, How..."
Stores are also an event, search through the pages og events to find it.
--

Conversations: So you want people to say different things depending on what's going on?

This can be done with simple 'conditional bracnhes'
What you do is make a switch for each set of text you want the NPC/Character to say when they talk and have the appropriate switch turned on after whatever event you want(make sure to turn off other convo events) and just have the text put in under the rite branch.

<>Branch if Switch [0001: Dialogue 1] is ON
<> Message:Bob: (Bob talks)
<> Message:Jamesjames talks)((they just go back and forth))
:END
<>Branch if Switch [0002: Dialogue 2] is ON
<> Message:Bob: (Bob talks)
<> Message:Jamesjames talks)((they just go back and forth))
<>
:END

<>Branch if Switch [0003: Dialogue 3] is ON
<> Message:Bob: (Bob talks)
<> Message:Jamesjames talks)((they just go back and forth))
<>
:END
-- And so on. Basic rundown.


~ KAMAHAME---Oh shit it's happening again.... ~
Old
Profile PM WWW Search
Tyrannicide enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzTyrannicide enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
Tyrannicide
 



 
Reply
Posted 2004-09-02, 03:47 PM in reply to Tyrannicide's post starting "Stores are also an event, search..."
RM2k3 again (I STILL DON'T KNOW WHAT YOU HAVE RIGHT NOW):

There's an event command called <>Open Shop Window for the store. Page 2 of the event commands. Put whatever items you want to sell in there (it'll be based on the prices you set in the Items tab, so you have to have items set up to sell)

--

For conversation in general, you can put as many <>Message event commands as you need, right after the other. Just double-click on an empty <> line and you'll be fine. I THINK there's a limit on event commands in a single event (it's something like 65535 though)

---

Tyrannicide:

I'll also say that pages are preferred for conversation changes, since they don't require you to turn off other event switches to see them alone. In this case, that allows "King Assassinated" and "Boss Destroyed" to affect their own events (say, the king sprite not being there and the boss sprite not being there), while making the townspeople say different things depending on the situation. Of course, it's even better (if it's a linear story line) to use variables for story advancement, but that's more of a "squeeze everything into the smallest possible file" thing.

Last edited by BlueCube; 2004-09-02 at 03:53 PM.
Old
Profile PM WWW Search
BlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzBlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
BlueCube
 



 
Reply
Posted 2004-09-02, 03:54 PM in reply to EvilLeprechaun's post "Where and How do I put i NPC's?"
EvilLeprechaun said:
Okay, series of question:

1)NPC's. I have no idea how to place them, needless to say where they are.
Where are they?

2)How do is set where they go?

3)How do I incorporate a story?
I mean, what do I have to do to make text, etc...To make a good game.
4)I downloaded some sprites, and when I try to import them, it says invalid image size. Why?
You how the game has three placement modes Event and then the two others ("you need to play around with those modes before starting a project" I think thats bluecubes words) Well in the event you can place the NPCs
Old
Profile PM WWW Search
Aurvian is neither ape nor machine; has so far settled for the in-betweenAurvian is neither ape nor machine; has so far settled for the in-between
 
 
Aurvian
 



 
Reply
Posted 2004-09-02, 06:42 PM in reply to Aurvian's post starting "You how the game has three placement..."
Aurvian said:
You how the game has three placement modes Event and then the two others ("you need to play around with those modes before starting a project" I think thats bluecubes words) Well in the event you can place the NPCs
I ssid this without scrolling down hehe my fault
Old
Profile PM WWW Search
Aurvian is neither ape nor machine; has so far settled for the in-betweenAurvian is neither ape nor machine; has so far settled for the in-between
 
 
Aurvian
 



 
Reply
Posted 2004-09-03, 12:52 PM in reply to BlueCube's post starting "RM2k3 again (I STILL DON'T KNOW WHAT..."
Yes, that is true. But he wasn't specific enough with it, I figured he'd always want the person to be there, just different conversations. We''l wait and see.


~ KAMAHAME---Oh shit it's happening again.... ~
Old
Profile PM WWW Search
Tyrannicide enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzTyrannicide enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
Tyrannicide
 
 

Bookmarks

« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules [Forum Rules]
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 10:28 AM.
'Synthesis 2' vBulletin 3.x styles and 'x79' derivative
by WetWired the Unbound and Chruser
Copyright ©2002-2008 zelaron.com
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.