How can i make this script call in mv ?

● ARCHIVED · READ-ONLY
Started by NM Play 1 posts View original ↗
  1. Hi, How can i make this script call in mv:

    a = $game_Variables[1]

    $game_map.screen.pictures[3].move(origin, x, y, a, 100, opacity, blendmode, duration)

    I tried in mv:

    a = $gameVariables[1]

    $gameScreen.movePicture(3, origin, x, y, a, 100, opacity, blendmode, duration)

    edit: I solved in MV is:

    a = $gameVariables.value(1)