Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

 
Reply to this topicStart new topic
> NPC joining into the main character, The title sounds confusing...sorry.
AphidRuin
post Nov 24 2012, 10:25 AM
Post #1


Level 9
Group Icon

Group: Revolutionary
Posts: 139
Type: Developer
RM Skill: Beginner




Greetings, everyone. thumbsup.gif

I believe everyone has seen a tutorial for this somewhere, but I just couldn't find the suitable keywords to key in in Google. confused.gif

The idea here is very simple. As depicted in several vanilla RPGs such as Final Fantasy or even some RMXP games as well, after a cutscene with certain game character, they will walk into the main character and disappear off. I can't really find a screenshot for this, because it's virtually impossible to confused.gif .

I'm posting this near my sleeping time, so I'm a bit lethagic right now. sweat.gif Sorry for the inadequacy of description.

I remembered having another issue with Ccoa's UMS system, but I guess I'll post that later as an edit to prevent necroposting. pinch.gif

Thank you for the attention and enjoy game-making!

Sincerely,
AphidRuin


__________________________

Which Final Fantasy Character Are You?
Final Fantasy 7



Current Projects
First game - Shawn's Story]
Second game - TAE (Paused in order to complete Shawn's Story)

[Show/Hide] Cna uyo raed tihs?
Hleeo.Tahnk you for tkanig the tmie to raed tihs.I am bsaing tihs on the frist {oigranl} can you raed tihs?Yaeh olny smoe poelpe can sikm sneentces lkie tehse woituht hvanig to sotp.You rllaey olny hvae to konw the frist and end lttres of the wrod you are tyrnig to raed for yuor mnid to pcik tehm up esaily.Olny 55% of poelpe can raed tihs.I tihnk taht snice you konw waht you are raendig aoubt you can gesus the wrods.If you can raed tihs, palce it in yuor sgitanrue.Dnoe by Senapho.Oops.Sanehpo.


"Creative people don't say themselves as creative because they are creative." -Cheong Cheng Wen a.k.a AphidRuin
Go to the top of the page
 
+Quote Post
   
Shaddow
post Nov 24 2012, 10:41 AM
Post #2


The Eventer Inventor
Group Icon

Group: Local Mod
Posts: 1,250
Type: Event Designer
RM Skill: Masterful
Rev Points: 90




So you are basically wanting the other character to walk into the main character and then vanish yes? This can be done really easily with a move event.

Simply set the move route to this:

CODE
Target: Character 2

Through on
Step Towards Player
Step Towards Player
Step Towards Player
Wait 20
Change Opacity 0
wait 20


Use as many moves route as needed. I would post you a Screen shot of this in effect, but I do not have XP anymore as it broke. Perhaps someone else could provide one if needed?

You can also do this for multiple characters at once, if you just post this each time and only have the 'wait until completion' box checked on the final one, this will allow them to all move at once.


__________________________




I support these projects! -------------





Go to the top of the page
 
+Quote Post
   
Jens of Zanicuud
post Nov 25 2012, 02:26 AM
Post #3


Dark Jentleman
Group Icon

Group: Local Mod
Posts: 904
Type: Scripter
RM Skill: Skilled
Rev Points: 120




Everythig's alright about Shadd's solution but one thing:
in RMXP, there's no wait for movement completion checkbox.
You have to set (for example) three move events (one for each character) structured exactly as Shadd's said and then set the wait for movement completion command after the third move event. Anyway, I really don't reccomend using that command, I'd simply put a wait 20 frames (or higher) since that damn wait for movement completion can give problems since it waits for every movement completion (even the ones from parallel processes)... so you should rely on wait.

Another way to do something similar is creating three blank events around the position the player should be when the video begins, then in the main event:
1. Change Screen Tone: 20 frames - Tone(-255,-255,-255,0);
2. wait 20 frames;
3. Change Screen Tone: 20 frames - Tone(0,0,0,0);
4. Move Event::Change Graphics (or opacity, just your choice) to each one of the NPC-Events;
5. Cutscene, dialogues, etc,etc;
6. Change Screen Tone: 20 frames - Tone(-255,-255,-255,0);
7. wait 20 frames;
8. Move Event::Change Graphics to "None" to each one of the NPC-Events;
9. Change Screen Tone: 20 frames - Tone(0,0,0,0);

I hope this can help,

Jens


__________________________
"Thorns are the rose's sweetest essence..."
-Jens of Zanicuud


Games I'm working on:
>

official website: TryAdIne eFfeCt

>

Games I worked on (mainly as a scripter):
>
(Warning: it's a 3rr3's project and it's in Italian!)


Awards

Go to the top of the page
 
+Quote Post
   
AphidRuin
post Nov 25 2012, 06:50 AM
Post #4


Level 9
Group Icon

Group: Revolutionary
Posts: 139
Type: Developer
RM Skill: Beginner




QUOTE (Jens of Zanicuud @ Nov 25 2012, 06:26 PM) *
1. Change Screen Tone: 20 frames - Tone(-255,-255,-255,0);
2. wait 20 frames;
3. Change Screen Tone: 20 frames - Tone(0,0,0,0);
4. Move Event::Change Graphics (or opacity, just your choice) to each one of the NPC-Events;
5. Cutscene, dialogues, etc,etc;
6. Change Screen Tone: 20 frames - Tone(-255,-255,-255,0);
7. wait 20 frames;
8. Move Event::Change Graphics to "None" to each one of the NPC-Events;
9. Change Screen Tone: 20 frames - Tone(0,0,0,0);

I hope this can help,

Jens

Thanks, that really helped to resolve my problem! thumbsup.gif I've been experimenting for months, but to no avail. Looks my eventing skills still need A LOT of work! pinch.gif [RESOLVED]

Problems with Ccoa UMS

Issue 1
I tried playing through Reincarnations RPG, and I must say, the eventing and mapping skills over there is over 9000! pinch.gif

In the midst of inspiration and motivation, I found out a crucial problem in my game while contrasting to find out what can I improve on. I found out that Reincarnations had no problem with its textbox even with the presence of the character facesets.

What do I mean by that? I've been using Ccoa's UMS according to recommandation, but I found out soon that when I introduce a faceset to each dialogue box, the lines of text overshot and the ends of each line of words could not be seen. confused.gif

To resolve this problem, I tried extending the width of the textbox to 550 instead of 480. I was able to see the whole lines of text now, but as for NPCs without facesets, there would always be that bleak space after the paragraph of text and it looks unsightly pinch.gif

I had also referred to a similar problem in another forum using Google. However, the topic was left doment for 2 years and was still not resolved.

Please do provide a feasible solution pinch.gif If my explanation is rather unfathomable, I'll get some screenshots of the problem I am facing.

Issue 2
This is a rather minor issue here. ph34r.gif

I understand there is a 'pause' function in default text system. It is annotated as "\p[i]", where i is the time of pausing of texts in frames. This is also mentioned in the tutorial above the whole script. However, when I played through Reincarnations, I found that while being able to skip texts using spacebar, the appearing of the words will still stop at the desired point of dialogue, whereas I am unable to do this for my game. When spacebar is pressed, the whole paragraph just flashes straight at me, skipping through the "\p[i]" that was supposed to be in place.

Is there any other commands I can use to make delibrate pausing of dialogue printing? pinch.gif

Thanks in advance! thumbsup.gif

With regards,
AphidRuin


__________________________

Which Final Fantasy Character Are You?
Final Fantasy 7



Current Projects
First game - Shawn's Story]
Second game - TAE (Paused in order to complete Shawn's Story)

[Show/Hide] Cna uyo raed tihs?
Hleeo.Tahnk you for tkanig the tmie to raed tihs.I am bsaing tihs on the frist {oigranl} can you raed tihs?Yaeh olny smoe poelpe can sikm sneentces lkie tehse woituht hvanig to sotp.You rllaey olny hvae to konw the frist and end lttres of the wrod you are tyrnig to raed for yuor mnid to pcik tehm up esaily.Olny 55% of poelpe can raed tihs.I tihnk taht snice you konw waht you are raendig aoubt you can gesus the wrods.If you can raed tihs, palce it in yuor sgitanrue.Dnoe by Senapho.Oops.Sanehpo.


"Creative people don't say themselves as creative because they are creative." -Cheong Cheng Wen a.k.a AphidRuin
Go to the top of the page
 
+Quote Post
   
Jens of Zanicuud
post Nov 26 2012, 09:01 AM
Post #5


Dark Jentleman
Group Icon

Group: Local Mod
Posts: 904
Type: Scripter
RM Skill: Skilled
Rev Points: 120




You should open a help request topic in the Script Development&Support section, since this is for generic RMXP help.
Maybe you should even post a link to the script, so someone could give it a look and help you wink.gif

Jens


__________________________
"Thorns are the rose's sweetest essence..."
-Jens of Zanicuud


Games I'm working on:
>

official website: TryAdIne eFfeCt

>

Games I worked on (mainly as a scripter):
>
(Warning: it's a 3rr3's project and it's in Italian!)


Awards

Go to the top of the page
 
+Quote Post
   

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 18th May 2013 - 11:12 PM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker