PlugSock-et

Villager
Member
Joined
Mar 15, 2023
Messages
14
Reaction score
1
First Language
English
Primarily Uses
RMMV

When a trophy image shows on screen inside my parallel event, the picture is supposed to "Wait 180 Frames" Before disappearing. Sometimes though, (and as i've now found out only the first time a picture shows when a save is loaded) it shows for about a second and the "180 Frame" wait gets ignored. Why is this?
 

AkiraKotatsuhime

炬燵姫
Veteran
Joined
Jan 2, 2013
Messages
285
Reaction score
200
First Language
DE / ドイツ語
Primarily Uses
N/A
Wow, some very odd behaviour of it, thanks for sharing that much detail by video. So if it's really just always the first time happening, the situation has to be somehow different when calling it again later.

When the short one is happening, I noticed a very long fade-in process on the picture before it starts vanishing away. That would fit the commands in first case of your CE... besides that there's no sound, it's only in the second one (and your video shows that pop-check is OFF before your first try). Well up to that, it doesn't seem like making any sense, indeed.

I'd suggest first to add something to both cases that clearly will make visible which of them is being processed, for example some debug-text (like "1" and "2").

Also, you should deactivate the pop-test after pop-check, not before. I'm not familiar with tech-details that deep in RPGMV/MZ in specific, but to my understanding the event might stop before both of them are set to OFF because pop-test is the condition to make it start/continue running at all.

~炬燵あ
 

PlugSock-et

Villager
Member
Joined
Mar 15, 2023
Messages
14
Reaction score
1
First Language
English
Primarily Uses
RMMV
Wow, some very odd behaviour of it, thanks for sharing that much detail by video. So if it's really just always the first time happening, the situation has to be somehow different when calling it again later.

When the short one is happening, I noticed a very long fade-in process on the picture before it starts vanishing away. That would fit the commands in first case of your CE... besides that there's no sound, it's only in the second one (and your video shows that pop-check is OFF before your first try). Well up to that, it doesn't seem like making any sense, indeed.

I'd suggest first to add something to both cases that clearly will make visible which of them is being processed, for example some debug-text (like "1" and "2").

Also, you should deactivate the pop-test after pop-check, not before. I'm not familiar with tech-details that deep in RPGMV/MZ in specific, but to my understanding the event might stop before both of them are set to OFF because pop-test is the condition to make it start/continue running at all.

~炬燵あ


Just keeps getting weirder and weirder.
I also took the "Pop check on" branch out and the short pop still happened
Even weirder, i take out the "pop check = on" switch and everything works. I put it back after the fade in and show up, and the fadeout didn't work, it just disappeared.
 
Last edited:

PlugSock-et

Villager
Member
Joined
Mar 15, 2023
Messages
14
Reaction score
1
First Language
English
Primarily Uses
RMMV


Just keeps getting weirder and weirder.
I also took the "Pop check on" branch out and the short pop still happened
Even weirder, i take out the "pop check = on" switch and everything works. I put it back after the fade in and show up, and the fadeout didn't work, it just disappeared.

 

Shaz

Keeper of the Nuts
Global Mod
Joined
Mar 2, 2012
Messages
46,006
Reaction score
16,823
First Language
English
Primarily Uses
RMMV

@PlugSock-et , please avoid double posting, as it is against the forum rules. You can use the "Edit" function on your posts to add additional information you've forgotten or respond to multiple people. You can review our forum rules here. Thank you.



Can you please post a screenshot of your event, showing the whole window? I'd rather not watch multiple videos up to 7 minutes long hoping to see that one thing.
 

PlugSock-et

Villager
Member
Joined
Mar 15, 2023
Messages
14
Reaction score
1
First Language
English
Primarily Uses
RMMV
[dpost]@PlugSock-et [/dpost]

Can you please post a screenshot of your event, showing the whole window? I'd rather not watch multiple videos up to 7 minutes long hoping to see that one thing.

Capture.PNG
This switch is causing problems, just quickly check video 3. It's 7 minutes long but will provide context to this problem.
 
Last edited:

Andar

Veteran
Veteran
Joined
Mar 5, 2013
Messages
38,461
Reaction score
10,885
First Language
German
Primarily Uses
RMMV
just quickly check video
why should we?
As Shaz' already explained above, there are reasons why quite afew people on this forum refuse to watch videos to help, no matter how short.
And they have different reasons for that, from internet bandwidth limitations over readon on a small phone display to medical reasons and more.
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,833
Reaction score
6,644
First Language
English
Primarily Uses
RMMV
For one thing, off the bat, there's no reason for your second conditional.

Getting rid of the event commands in the middle, you're doing this:
If Pop Check is ON
...
Else
-If Pop Check is OFF
This is pointless, this code can only be seen if Pop Check is OFF. This will always be true.

That wouldn't make your event glitch, but it's some extra layers to read/troubleshoot through. :smile:

In the event you posted, which are the wait commands that are getting skipped?

And why are you moving the same picture to the same place three times? I see the third time is fading it out, but the first two commands look identical.
 

Shaz

Keeper of the Nuts
Global Mod
Joined
Mar 2, 2012
Messages
46,006
Reaction score
16,823
First Language
English
Primarily Uses
RMMV
This is pointless, this code can only be seen if Pop Check is OFF. This will always be true.
No, I think that Else belongs to the If Script: GameJolt.hasTrophy() condition.
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,833
Reaction score
6,644
First Language
English
Primarily Uses
RMMV
No, I think that Else belongs to the If Script: GameJolt.hasTrophy() condition.
Oh, then I retract the point (and have even less idea what the event is doing :wink: ).
 

Shaz

Keeper of the Nuts
Global Mod
Joined
Mar 2, 2012
Messages
46,006
Reaction score
16,823
First Language
English
Primarily Uses
RMMV
If the switch is causing the problems, what else do you have that uses that switch (events AND plugins)?

If you turn off all plugins except this one, does the issue still happen?
 

PlugSock-et

Villager
Member
Joined
Mar 15, 2023
Messages
14
Reaction score
1
First Language
English
Primarily Uses
RMMV
If the switch is causing the problems, what else do you have that uses that switch (events AND plugins)?

If you turn off all plugins except this one, does the issue still happen?
Well, all other trophy events. I got told on a different forum that i shouldn't do that, and should somehow implement the pop check in its own common event. I did try making a pop check switch for individual events but that didn't work.
 

PlugSock-et

Villager
Member
Joined
Mar 15, 2023
Messages
14
Reaction score
1
First Language
English
Primarily Uses
RMMV
For one thing, off the bat, there's no reason for your second conditional.

Getting rid of the event commands in the middle, you're doing this:
If Pop Check is ON
...
Else
-If Pop Check is OFF
This is pointless, this code can only be seen if Pop Check is OFF. This will always be true.

That wouldn't make your event glitch, but it's some extra layers to read/troubleshoot through. :smile:

In the event you posted, which are the wait commands that are getting skipped?

And why are you moving the same picture to the same place three times? I see the third time is fading it out, but the first two commands look identical.
That pop check is there so if a player moves into a new area, the trophy notif doesn't get stuck on screen.
 

Latest Threads

Latest Profile Posts



Chapters advancing demonstration.
Main character roey will be revived after chapter 7, so the animations will be different after it
The title of the main characters will be ascended to celestial as well as wings and rings.
Next Up. The 2nd floor of the Western Academy!

Base:
Map012.png

With a little parallax magic *:



WestAcademyFl2.png


Anything you'd add?
BUwvmx.png


Introducing a new and exciting challenge mode!! Is our demo too easy? Did you get a rare pull and want to show off on stream? Please talk to the mysterious 2nd announcer who has 6 additional challenges PER ROUND! As a game developer, I struggled to complete some of the stage 2 challenges, so I hope you tactics fans have a blast!
AeroPergold wrote on Woratana's profile.
You gucci, Woratana?
so wild I came across a video about side-scrollers for RPG Maker and my game was used as an example in the video. I really felt honored to be honest.

Forum statistics

Threads
131,639
Messages
1,221,822
Members
173,384
Latest member
dreamless
Top