itu cuma ngedit script
caranya buka script editor, lalu pilih scene_menu, lalu disitu kan ada
- Code:
-
(192, [s1, s2, s3])
ditambahin lagi jadi
- Code:
-
(192, [s1, s2, s3, s4])
kalau mau nambahin option tinggal diatasnya kan ada tulisan begini
- Code:
-
s1 = "New Game"
s2 = "Continue"
s3 = "Shutdown"
dirubah jadi gini
- Code:
-
s1 = "New Game"
s2 = "Continue"
s3 = "Shutdown"
s4 = "Option"
lalu di frame update
dirubah jadi gini
- Code:
-
when 0
command_new_game
when 1
command_continue
when 2
command_shutdown
when 3
command_option
lalu dibawah Command: Shutdown
ditambah gini
- Code:
-
def command_option
$game_system.se_play(data_system.decision_se)
$scene = Scene_Option.new
end
tapi sebelumnya kamu harus buat scene optionnya dulu
eh maaf kalo banyak