- Home>
- RMVX Script , RMVX-Ace Script , RMXP Script >
- [RGSS/2/3] Minigame SusunGambar
Posted by : LiTTleDRAgo
Jan 29, 2012
Explanation
Puzzle minigame (Susun Gambar means Puzzle in Indonesian)
Ported from here (credit to hart for the original script / VX ver)
How to Use
for RMXP and RMVX
$scene = Scene_SusunGambar.new(num_of_columns, num_of_rows, filename )
$scene = Scene_SusunGambar.new(num_of_columns, num_of_rows, filename, time)
for RMVXA
$scene_susun = [num_of_columns, num_of_rows, filename]
$scene_susun = [num_of_columns, num_of_rows, filename, time]
num_of_columns = total column the puzzle
num_of_rows = total rows the puzzle
filename = image used in puzzle (in folder Graphics/Pictures)
time = time to complete the puzzle, you can skip this if you want to
Related Posts :
RMVX Script,
RMVX-Ace Script,
RMXP Script
"syntax error" :(
ReplyDeletedid you copy & insert the script properly?
DeleteSame thing here.
Delete$scene = Scene_SusunGambar.new(9, 9, noise.png [, 999])
^ is that correct?
You forgot to add "". It should be "noise.png"
DeleteAnd [, 999] is optional value, you're not supposed to insert it like that.
DeleteOh well, maybe I worded this wrong in instruction.
Sorry about it.