lonequeso 1,921 Posted August 28, 2015 I can't code to save my life. One little scriptlet I do know is to turn on another event's self switch. If you're a coder, I'm sure you've seen/used this a million times: $game_self_switches[[1,1,"A"]] = true My question is this: Is there a way using that format to turn on a batch of switches? As in if I wanted to turn on self switch "A" for events 1-50, could that be done, and what's the correct syntax? I could've sworn I've seen it on here before, but I can't seem to find it. Share this post Link to post Share on other sites
Tsukihime 1,489 Posted August 28, 2015 1.upto(50) do |id| $game_self_switches[[1,id,"A"]] = true end Share this post Link to post Share on other sites
lonequeso 1,921 Posted August 28, 2015 I would have never figured that out in a million years. Thanks! That was quick. This topic can be closed now. Share this post Link to post Share on other sites
Tsarmina 2,612 Posted August 28, 2015 Cuz Hime's amazing Closing as solved~ 1 Share this post Link to post Share on other sites