Chaos Project

RPG Maker => Event Systems => Event System Troubleshooting => Topic started by: Globock on June 04, 2013, 06:46:45 pm

Title: Zexion's Title screen
Post by: Globock on June 04, 2013, 06:46:45 pm
I've been working on event based title screen, so I modifed Zexion's title screen but it doesn't really work, though it works in a new project. It simply means one of scripts causes it, and I guess it's Blizz ABS. I would really appreciate if someone could check out my project and find how to fix this issue. BTW. Menu screen is in Polish, but I guess it's possible to figure out as commands are in classic order ^^'
http://www12.zippyshare.com/v/29130890/file.html
Title: Re: Zexion's Title screen
Post by: KK20 on June 04, 2013, 07:10:17 pm
You'll have to use the scripted way instead because Blizz-ABS comes with it's own Input module.
Conditional Branch, Tab 4, Script

Input.press?(Input::UP)

Of course, replace UP with DOWN for the other conditional branches.
Title: Re: Zexion's Title screen
Post by: Globock on June 04, 2013, 07:18:01 pm
Thank you ;) I've been trying that but I typed it wrong (Input.press?(Key::UP) for some reason... RESOLVED
Title: Re: Zexion's Title screen
Post by: Globock on June 04, 2013, 07:31:35 pm
Sorry for double posting, but this time I want to repleace C button (Enter) for button I use as confirm in my game. I've tried (Input.press?(Key::CONFIRM), (Input.press?(Key::F) and (Input.press?(Key::C) but nothing worked ; /
Title: Re: Zexion's Title screen
Post by: Zexion on June 04, 2013, 08:04:06 pm
Input.press?(Input::CONFIRM)

:P
Title: Re: Zexion's Title screen
Post by: Globock on June 04, 2013, 08:05:49 pm
It doesn't work ; /
Title: Re: Zexion's Title screen
Post by: Zexion on June 04, 2013, 08:46:09 pm
Ah hold up, I used to have blizz-abs in an old kh game. gonna see how i did it lol

Edit: Apperently I simply used the diffault "if c button pressed" fourth page 5th option
It works with BABS o.o
Title: Re: Zexion's Title screen
Post by: Globock on June 05, 2013, 08:22:22 am
Problem is I'm using F as confirm button (Mount and Blade style), and if I use button C only Enter works. Is there a way to fix it?
Title: Re: Zexion's Title screen
Post by: Zexion on June 05, 2013, 04:38:51 pm
Oh okay, then use
Input.press?(Input::Key['F'])
Title: Re: Zexion's Title screen
Post by: Globock on June 05, 2013, 04:52:38 pm
Thanks, it works! ;) But now I have another issue... Over a month ago I made event based day and night system and it worked perfectly until today - can it be caused by evented title screen? I mean, I haven't changed day&night system at all so it seems like something causes it to crash (it also works when copied to empty project). Here is a demo:
http://www27.zippyshare.com/v/5357448/file.html

It worked perfectly until I added evented title screen so I can't think of anything else causing problems... And sorry for trouble ;x
Title: Re: Zexion's Title screen
Post by: Zexion on June 05, 2013, 05:06:02 pm
No trouble, I'm just relaxing atm anyway haha. What exactly is the problem and how is it normal supposed to behave?
Title: Re: Zexion's Title screen
Post by: Globock on June 05, 2013, 05:13:22 pm
It's suppose to change between day and night (fog&tone change) in a loop. I also made feature that makes smoke from chimney dissapear while day and appear at night. Problem is that now it's always bright like day and smoke is up, like at night. It's strange because it worked for over a month and I just realized it stopped just today...
Title: Re: Zexion's Title screen
Post by: Zexion on June 05, 2013, 05:28:19 pm
It has nothing to do with the evented title, unless you moved around some variables. The problem is that the MAWS you're using uses the same switch as the "Start Time" and the same variable as "Minutes" which causes the minutes to always randomly move around and the common event to stop.
Title: Re: Zexion's Title screen
Post by: Globock on June 05, 2013, 05:48:43 pm
OK, I changed switches and varibables so they wouldn't collide with MAWS but it still doesn't work ;/ now smoke dissapears for few second and than comes back, and it's only thing that changed ;x