RPGMakerID
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Komunitas RPG Maker Indonesia
 
IndeksIndeks  Latest imagesLatest images  PencarianPencarian  PendaftaranPendaftaran  Login  
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.

 

 tentang title menu

Go down 
3 posters
PengirimMessage
GagakItem
Novice
Novice
GagakItem


Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

Trophies
Awards:
tentang title menu Empty
PostSubyek: tentang title menu   tentang title menu Empty2012-09-24, 19:40

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?
Kembali Ke Atas Go down
Rian01
Advance
Advance
avatar


Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-24, 19:43

@TS itu harus ... :lol:
bikin window selectable baru yang pertama2 gk diaktifin dan visible = false ...
waktu milih shutdown terus di visible dan dibikin aktif.
Kembali Ke Atas Go down
GagakItem
Novice
Novice
GagakItem


Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-24, 19:45

@rian
gimana caranya...
btw, ane baru tahu ma RGSS3 :swt:
Kembali Ke Atas Go down
Rian01
Advance
Advance
avatar


Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-24, 20:24

@TS udah saya buatkan :D
tapi saya kirim lewat PM aja ya untuk mencegah rasa malu timbul :hammer:
Kembali Ke Atas Go down
GagakItem
Novice
Novice
GagakItem


Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-24, 20:42

@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?
Kembali Ke Atas Go down
Rian01
Advance
Advance
avatar


Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-24, 20:48

@TS
dibikin center tulisannya ??
Code:

draw_text(x, y ..........
coba x diatas diganti x + <angka>
angka disitu coba2 aja sampe jadi center :hammer:
Kembali Ke Atas Go down
yeki
Novice
Novice
yeki


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

Trophies
Awards:

tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-24, 21:20

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
Kembali Ke Atas Go down
GagakItem
Novice
Novice
GagakItem


Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-25, 08:04

@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..
Kembali Ke Atas Go down
yeki
Novice
Novice
yeki


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

Trophies
Awards:

tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-25, 09:13

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
Kembali Ke Atas Go down
GagakItem
Novice
Novice
GagakItem


Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-25, 14:36

@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...?
Kembali Ke Atas Go down
yeki
Novice
Novice
yeki


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

Trophies
Awards:

tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-25, 15:54

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
Kembali Ke Atas Go down
GagakItem
Novice
Novice
GagakItem


Level 5
Posts : 235
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-25, 20:58

@yeki
malah keluar error,kk

"Script 'qmsg' line 27: ArgumentError occured"
"wrong number of arguments (1 for 0)"
Kembali Ke Atas Go down
Rian01
Advance
Advance
avatar


Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner

Trophies
Awards:
tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty2012-09-25, 21:21


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
Kembali Ke Atas Go down
Sponsored content





tentang title menu Empty
PostSubyek: Re: tentang title menu   tentang title menu Empty

Kembali Ke Atas Go down
 
tentang title menu
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» [Ask] Title Menu dan cara menghilangkan pilihan menu skill
» [ask] cara customize title menu
» [Solved] Warna menu title
» req script menambah pilihan di menu title
» [Req] Tutorial cara mengkustom Title Menu

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