Increasing a variable through script

● ARCHIVED · READ-ONLY
Started by Capitán 3 posts View original ↗
  1. Okay, so I'm sort of a noob to scripting but I was wondering if there was a way to increase a variable through a script.

    I tried

    $game_variables[3] + 3but that didn't even look right...
  2. Hello! You have to add an equal sign too, like this:

    $game_variables[4] += 4Cheers.
  3. Thanks!