Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

Toggle Script When Not in Cutscene?

  • #10, by sebastian 9 years ago Zitieren
    "if keycode==80"  is allright, but whats with the statement "97" ? it stands for itself. Its like saying "if keycode ==80 or true" . So it will be always be triggering the first if branch..
    make it
    "keycode==80 or keycode==97". 
  • #11, by ygmantell 9 years ago Zitieren
    Oh, okay, I wasn't aware I needed to restate the variable that's being checked after the Or in an If statement.
    Thanks so much!