Per 2016, RMID pindah ke RMID Discord (Invite link dihapus untuk mencegah spambot -Theo @ 2019). Posting sudah tidak bisa dilakukan lagi.
Mohon maaf atas ketidaknyamanannya dan mohon kerjasamanya.

Share | 
 

 tentang title menu

Topik sebelumnya Topik selanjutnya Go down 
tentang title menu Empty2012-09-24, 19:40
Posttentang title menu
#1
GagakItem 
Novice
Novice
GagakItem

Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades
Awards:
tentang title menu Vide
kk, ane mau nanya...
setiap title screen bagian menu "Shutdown"
tiap di pilih langsung keluar
ane liat2 rupanya dia make method "Scene_Manager.exit"
nah ane kepikiran buat menu choice shutdown
kayak "Are you sure want to Exit in this game?"

btw, gimana caranya? apa harus main rombak script?
tentang title menu Empty2012-09-24, 19:43
PostRe: tentang title menu
#2
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
tentang title menu Vide
@TS itu harus ... :lol:
bikin window selectable baru yang pertama2 gk diaktifin dan visible = false ...
waktu milih shutdown terus di visible dan dibikin aktif.
tentang title menu Empty2012-09-24, 19:45
PostRe: tentang title menu
#3
GagakItem 
Novice
Novice
GagakItem

Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades
Awards:
tentang title menu Vide
@rian
gimana caranya...
btw, ane baru tahu ma RGSS3 :swt:
tentang title menu Empty2012-09-24, 20:24
PostRe: tentang title menu
#4
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
tentang title menu Vide
@TS udah saya buatkan :D
tapi saya kirim lewat PM aja ya untuk mencegah rasa malu timbul :hammer:
tentang title menu Empty2012-09-24, 20:42
PostRe: tentang title menu
#5
GagakItem 
Novice
Novice
GagakItem

Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades
Awards:
tentang title menu Vide
@rian
secara fungsi, memang bener :thumbup:
yang kurang, bagian peletakan text questionnya doang
"Are you sure to exit" lebih bagus ditengah
yang mana yang harus dirubah peletakan text quest tsb?
tentang title menu Empty2012-09-24, 20:48
PostRe: tentang title menu
#6
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
tentang title menu Vide
@TS
dibikin center tulisannya ??
Code:

draw_text(x, y ..........
coba x diatas diganti x + <angka>
angka disitu coba2 aja sampe jadi center :hammer:
tentang title menu Empty2012-09-24, 21:20
PostRe: tentang title menu
#7
yeki 
Novice
Novice
yeki

Level 5
Posts : 182
Thanked : 6
Engine : RMVX Ace
Skill : Beginner
Type : Scripter
Awards:

tentang title menu Vide
mungkin bisa aku ganti sedikit.
begini bila mana ingin ditengah windownya biasanya :
si x diisi dengan (Graphics.width - lebar windownya) / 2
si y diisi dengan (Graphics.height - tinggi windownya) / 2
tentang title menu Empty2012-09-25, 08:04
PostRe: tentang title menu
#8
GagakItem 
Novice
Novice
GagakItem

Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades
Awards:
tentang title menu Vide
@yeki...
iya sih, tapi bagian situ cuma berpengaruh ke
choice doang (Tutup, Batal)

nah yang ane tanyain bagian window
are you sure to quit... itu terlalu keatas (urusan text ane udah perbaikin)
caranya gimana biar bisa kebawah dikit?
(btw sorry bang rian, ane comot dlu scriptnya, demi diskusi bersama :D)
nanti ane PM script contohnya..
tentang title menu Empty2012-09-25, 09:13
PostRe: tentang title menu
#9
yeki 
Novice
Novice
yeki

Level 5
Posts : 182
Thanked : 6
Engine : RMVX Ace
Skill : Beginner
Type : Scripter
Awards:

tentang title menu Vide
nah kalau begitu yang ini sudah di coba ?
Code:

def create_quit_confirmation_window
    @commandquit_window = Window_QuitCommand.new
    @commandquit_window.x = (Graphics.width - @commandquit_window.width) / 2
    @commandquit_window.y = (Graphics.height - @coomandquit_window.height) / 2
    @commandquit_window.set_handler(:confirm_quit, method(:command_shutdown))
    @commandquit_window.set_handler(:cancel_quit, method(:command_back))
    @commandquit_window.visible = false
  end
tentang title menu Empty2012-09-25, 14:36
PostRe: tentang title menu
GagakItem 
Novice
Novice
GagakItem

Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades
Awards:
tentang title menu Vide
@yeki
sudah, tapi berpengaruh pada menu Quit dengan Batal saja
tapi yang ane inginkan
bagian window yang berisi text "Are you sure to quit?"
itu terlalu keatas...

dan pertanyaan terakhir...
itu cuma main menu saja kan
klo untuk Game End (di CMS), apa nama method nya dari script yang dibuat...?
tentang title menu Empty2012-09-25, 15:54
PostRe: tentang title menu
yeki 
Novice
Novice
yeki

Level 5
Posts : 182
Thanked : 6
Engine : RMVX Ace
Skill : Beginner
Type : Scripter
Awards:

tentang title menu Vide
waduh..maaf salah baca...nih coba yang ini
Code:

class Window_QuitInfo < Window_Base

  def initialize
    super((Graphics.width - window_width) / 2, (Graphics.height -fitting_height(1)) /2, window_width ,fitting_height(1))
    refresh
  end
tentang title menu Empty2012-09-25, 20:58
PostRe: tentang title menu
GagakItem 
Novice
Novice
GagakItem

Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades
Awards:
tentang title menu Vide
@yeki
malah keluar error,kk

"Script 'qmsg' line 27: ArgumentError occured"
"wrong number of arguments (1 for 0)"
tentang title menu Empty2012-09-25, 21:21
PostRe: tentang title menu
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
tentang title menu Vide

BlackCrows wrote:
@yeki
malah keluar error,kk

"Script 'qmsg' line 27: ArgumentError occured"
"wrong number of arguments (1 for 0)"

berati di baris 27 itu ada code yang bertanda kurung ... padahal harusnya enggak CMIIW
boleh minta scriptnya ? selama yeki tidak di sini saya ingin membantu :hammer:


EDIT
@TS
udah beres kan ??
udah saya PM
tentang title menu Empty
PostRe: tentang title menu
Sponsored content 




tentang title menu Vide
 

tentang title menu

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 1

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Scripts & Event Systems :: RMVX Ace Scripts :: RGSS3 Request-