RPG Maker MV

RPG Maker MV

Event switches are note working.
I am encountering an issue with setting up event switches. I am assuming that I am overlooking something as I am new to using the program and I appear to be doing everything the book I am following suggests.

I am just creating a simple event so that when I step on a button a door appears and then that door makes my characters appear at a different point.

However when I move to step on the said switch nothing happens in the test. I have my event set, the switch is set to on

I have it set to fixed, Below player, and activate on player touch.

am I just overlooking something or is there a bug?
< >
Showing 1-4 of 4 comments
Fuel Jan 7, 2017 @ 6:23pm 
Can you explain the setup in depth? I could answer better if I knew the event's setup. I can't really speculate what happened, as I don't know if you are using 1 event or many.
Last edited by Fuel; Jan 7, 2017 @ 6:23pm
DigitalZeryphim Jan 7, 2017 @ 8:36pm 
Originally posted by Fuel:
Can you explain the setup in depth? I could answer better if I knew the event's setup. I can't really speculate what happened, as I don't know if you are using 1 event or many.

So basically I was starting with just a simple single event at first. A switch that when you step on will show text that reads, "you have pressed the button". Once I got that to work I was going to have the button also make a door appear. However when I step on the spot the event switch should be nothing happens like it isn't even there. RIght now it is just a single event.

I have checked switch, set it to play the text, and where to show it, and made sure the control was set to on. The switch is set to below player, and player touch for activation. By means of all tutorials I have watched it should work, but for me it isn't.

I have a screen shot posted on the forums for RPG maker here

http://forums.rpgmakerweb.com/index.php?/topic/73271-events-not-working/&_fromLogin=1#replyForm
Last edited by DigitalZeryphim; Jan 7, 2017 @ 9:02pm
Being already answered in the thread you linked.
Fuel Jan 8, 2017 @ 3:23pm 
Sounds like a condition is set on the event (upper-left side). Make sure the initial part of the event the player is supposed to interact with has no conditions or that the conditions are meetable before the player is even able to touch it.

Also, make sure that the event did not get moved to a different location, like where the door is supposed to appear. If none of this works I will provide a template below as to how one can achieve this effect.

-- Template --

The best way I can think to do this is:

1. Create a switch event.

2. Create a door event.

3. Set the switch event to display text, then either use a 'Control Variables' or 'Control Switches' to control the door. ( I recommend Variables as switches lingering in On position can mess with other maps.)

4. Use the variable or switch conditions on the door event so that when the condition is met the door will then appear.

Exampe Switch event:

Page 1:

Conditions: None,
Image: Switch,
Priority: Below Player,
Trigger: Player Touch,

Event Page Commands:

Display Text command;
Control Variable 1 and set it to 1,
Control SelfSwitch A = On; (this is make the buttion move down)

Page 2:

Conditions: Self Switch A = On,
Image: Pressed Switch,
Priority: Below Player,
Trigger: Anything but Autorun,

Example Door Event:

Page1:

Conditions: Variable 1 >= 1,
Image: Door,
Priority, Same As Character,
Trigger: Action Button.

This event setup will accomplish what you desire. Also it is a template so feel free to change it as necessary. Hope this helps.
Last edited by Fuel; Jan 8, 2017 @ 3:26pm
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Jan 6, 2017 @ 5:53pm
Posts: 4