RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Another quest question (Answered)

Started by Fufufuwie, January 11, 2009, 07:54:15 PM

0 Members and 1 Guest are viewing this topic.

Fufufuwie

What if you wanted the ncp to give you something and give it to another ncp? :epic:

Revo

I attached a simple demo of what you would do. Just open the project and look at the events and see what they do.

Fufufuwie

Quote from: Revo on January 11, 2009, 08:11:25 PM
I attached a simple demo of what you would do. Just open the project and look at the events and see what they do.

Oh no, it won't open that sucks.. there's a incompatibility between software versions..
Could you or someone else type up the answer :?

Revo

Alright, I guess that means you're using the PK version. Why don't people just pirate the real version. :-\

Anyway, here's what it was.

Event 1(Person giving the item to be delivered):
Page 1:
Text: Go give this pouch to that other guy.
Change Items: +1 Pouch
Self Switch A = On

Page 2(In the 'Conditions' box, check 'Self Switch' and make sure it's set to 'A'):
Conditional Branch: [Pouch] in inventory
  Text: What are you? Stupid? Go give it to him!
else
  Text: Thanks. Here's your reward.
  Play ME: 'Fanfare'
  Change Gold: +98709
  Text: You got a crapton of Gold!
  Self Switch B = On
Branch end

Page 3(In the 'Conditions' box, check 'Self Switch' and make sure it's set to 'B'):
Text: I gave you your reward, no go away.

Event 2(Person receiving the item):
Page 1:
Conditional Branch: [Pouch] in inventory
  Text: Oh good. Thank you for bringing this.
  Change Items: -1 Pouch
  Self Switch A = On
else
  Text: Go talk to the other guy to start the quest.
Branch end

Page 2(In the 'Conditions' box, check 'Self Switch' and make sure it's set to 'A'):
Text: This is what I say after you have given me the item and completed the quest and has nothing to do with the quest.

It can be a bit confusing at first, but after a while you'll understand it easier.

Fufufuwie


Hparthenay

Ummm sorry to ask (and I probably sound stupid but what axactly does the "Control Selfswitch =A" thing do? ???

Railium

A Control Self Switch makes it so that if something already happened, it will not happen again.