Â
p "Blaa blaa."
Â
Â
if $game_switches[1] == false
 p "Blaa blaa."
 else
end
Â
I even tried adding an initialize (Don't ask why, I had no idea if it'd help or not, I'm still a rookie scripter, lol);
Â
def initialize
 if $game_switches[1] == false
  p "Blaa blaa."
 else
 end
end
Â
Â
Script "TestPopupText" line 1: NoMethodError occured.
Â
undefined method `[]' for nil:NilClass
Â