- Joined
- Apr 5, 2015
- Messages
- 47
- Reaction score
- 24
- First Language
- Spanish
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)
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)
Last edited by a moderator:
