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 | 
 

 Menghilangkan beberapa menu

Topik sebelumnya Topik selanjutnya Go down 
Menghilangkan beberapa menu Empty2011-07-12, 19:29
PostMenghilangkan beberapa menu
#1
ReydVires 
The First ThV©
ReydVires

Level 5
Posts : 538
Thanked : 5
Engine : RMVX
Skill : Skilled
Type : Event Designer

Menghilangkan beberapa menu Vide
gan... ada yg tau gak cara ngilangin menu Save & Skill di menu RPGM VX ??? ane gak butuh untuk game ane.... (Lg gak butuh) tolong.. om2 scripter... ane butuh bantuan supaya tuh skill & save di menu ane hilang....

mohon pencerahannya
Thx! sebelumnya
Menghilangkan beberapa menu Empty2011-07-12, 19:40
PostRe: Menghilangkan beberapa menu
#2
wltr3565 
Senior
Senior
wltr3565

Level 5
Posts : 870
Thanked : 28
Engine : RMVX
Skill : Skilled
Type : Scripter
Awards:

Menghilangkan beberapa menu Vide
Ku buat patchnya nih:
Code:
class Scene_Menu < Scene_Base
  def create_command_window
    s1 = Vocab::item
    s2 = Vocab::skill
    s3 = Vocab::equip
    s4 = Vocab::status
    s5 = Vocab::save
    s6 = Vocab::game_end
    @command_window = Window_Command.new(160, [s1, s3, s4, s6])
    @command_window.index = @menu_index
    if $game_party.members.size == 0          # If number of party members is 0
      @command_window.draw_item(0, false)    # Disable item
      @command_window.draw_item(1, false)    # Disable skill
      @command_window.draw_item(2, false)    # Disable equipment
      @command_window.draw_item(3, false)    # Disable status
    end
    if $game_system.save_disabled            # If save is forbidden
      @command_window.draw_item(4, false)    # Disable save
    end
  end
  #--------------------------------------------------------------------------
  # * Update Command Selection
  #--------------------------------------------------------------------------
  def update_command_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      $scene = Scene_Map.new
    elsif Input.trigger?(Input::C)
      if $game_party.members.size == 0 and @command_window.index < 4
        Sound.play_buzzer
        return
      elsif $game_system.save_disabled and @command_window.index == 4
        Sound.play_buzzer
        return
      end
      Sound.play_decision
      case @command_window.index
      when 0      # Item
        $scene = Scene_Item.new
      when 1,2  # Skill, equipment, status
        start_actor_selection
      when 3    # End Game
        $scene = Scene_End.new
      end
    end
  end
 
  def update_actor_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      end_actor_selection
    elsif Input.trigger?(Input::C)
      $game_party.last_actor_index = @status_window.index
      Sound.play_decision
      case @command_window.index
      when 1  # equipment
        $scene = Scene_Equip.new(@status_window.index)
      when 2  # status
        $scene = Scene_Status.new(@status_window.index)
      end
    end
  end
end
Taruh aja diatas main :hmm:
Menghilangkan beberapa menu Empty2011-07-12, 19:42
PostRe: Menghilangkan beberapa menu
#3
ReydVires 
The First ThV©
ReydVires

Level 5
Posts : 538
Thanked : 5
Engine : RMVX
Skill : Skilled
Type : Event Designer

Menghilangkan beberapa menu Vide
wltr3565 wrote:
Ku buat patchnya nih
wah gann.... rada error pasbuka end game.. pas cencel.. malah ini yang dihasilkan

Spoiler:

kayanya blm 100% complet
Menghilangkan beberapa menu Empty2011-07-13, 17:52
PostRe: Menghilangkan beberapa menu
#4
wltr3565 
Senior
Senior
wltr3565

Level 5
Posts : 870
Thanked : 28
Engine : RMVX
Skill : Skilled
Type : Scripter
Awards:

Menghilangkan beberapa menu Vide
:doh: Aku lupa bilang "semoga beruntung" :kabur:

Code:
class Scene_Menu < Scene_Base
  def create_command_window
    s1 = Vocab::item
    s2 = Vocab::skill
    s3 = Vocab::equip
    s4 = Vocab::status
    s5 = Vocab::save
    s6 = Vocab::game_end
    @command_window = Window_Command.new(160, [s1, s3, s4, s6])
    @command_window.index = @menu_index
    for i in 0...4
      @command_window.draw_item(i)
    end
  end
  #--------------------------------------------------------------------------
  # * Update Command Selection
  #--------------------------------------------------------------------------
  def update_command_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      $scene = Scene_Map.new
    elsif Input.trigger?(Input::C)
      if $game_party.members.size == 0 and @command_window.index < 4
        Sound.play_buzzer
        return
      elsif $game_system.save_disabled and @command_window.index == 4
        Sound.play_buzzer
        return
      end
      Sound.play_decision
      case @command_window.index
      when 0      # Item
        $scene = Scene_Item.new
      when 1,2  # Skill, equipment, status
        start_actor_selection
      when 3    # End Game
        $scene = Scene_End.new
      end
    end
  end
 
  def update_actor_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      end_actor_selection
    elsif Input.trigger?(Input::C)
      $game_party.last_actor_index = @status_window.index
      Sound.play_decision
      case @command_window.index
      when 1  # equipment
        $scene = Scene_Equip.new(@status_window.index)
      when 2  # status
        $scene = Scene_Status.new(@status_window.index)
      end
    end
  end
end
Tuh yang baru, dan semoga beruntung :hmm:
Menghilangkan beberapa menu Empty2011-07-13, 18:54
PostRe: Menghilangkan beberapa menu
#5
SerpentZ 
Advance
Advance
SerpentZ

Level 5
Posts : 425
Thanked : 2
Engine : Multi-Engine User
Skill : Intermediate
Type : Mapper

Menghilangkan beberapa menu Vide
Patch Yang sebelumnya Work di Project ane,,, :v
Tapi kenapa di project @Reyd ga jadi??? :hmm:

Sedikit Tambahan
Spoiler:
Semoga dibantu XD :v
Menghilangkan beberapa menu Empty2011-07-13, 19:16
PostRe: Menghilangkan beberapa menu
#6
LowlingLife 
Administrator
Administrator
LowlingLife

Kosong
Posts : 2000
Thanked : 25
Engine : Multi-Engine User
Awards:

Menghilangkan beberapa menu Vide
kalo mau savenya aja yang diilangin, nih patchnya :
Spoiler:
Menghilangkan beberapa menu Empty2011-07-13, 19:23
PostRe: Menghilangkan beberapa menu
#7
SerpentZ 
Advance
Advance
SerpentZ

Level 5
Posts : 425
Thanked : 2
Engine : Multi-Engine User
Skill : Intermediate
Type : Mapper

Menghilangkan beberapa menu Vide
:sembah: :sembah: bwt Lowlinglife
Menghilangkan beberapa menu Empty2011-07-13, 19:28
PostRe: Menghilangkan beberapa menu
#8
LowlingLife 
Administrator
Administrator
LowlingLife

Kosong
Posts : 2000
Thanked : 25
Engine : Multi-Engine User
Awards:

Menghilangkan beberapa menu Vide
itu cuma minor edit doang.... gak usah dipuji-puji... btw, thx! :thumbup:
Menghilangkan beberapa menu Empty2011-07-13, 19:54
PostRe: Menghilangkan beberapa menu
#9
SerpentZ 
Advance
Advance
SerpentZ

Level 5
Posts : 425
Thanked : 2
Engine : Multi-Engine User
Skill : Intermediate
Type : Mapper

Menghilangkan beberapa menu Vide
Oke :thumbup:
Menghilangkan beberapa menu Empty2011-07-14, 08:48
PostRe: Menghilangkan beberapa menu
maihime 
Senior
Senior
maihime

Level 5
Posts : 677
Thanked : 143
Engine : Multi-Engine User
Skill : Very Beginner
Type : Artist

Menghilangkan beberapa menu Vide
@ Serpentz: Lho? Bukannya klo
ngilangin menu save di menu
tinggal pake change save access?
Save-nya tinggal di disable... :- :kabur:
Menghilangkan beberapa menu Empty2011-07-14, 10:52
PostRe: Menghilangkan beberapa menu
hyperkudit 
Pahlawan Super
hyperkudit

Level 5
Posts : 2288
Thanked : 30
Engine : RMXP
Skill : Very Beginner
Type : Artist
Awards:

Menghilangkan beberapa menu Vide
@mai : itu buat ngilangin akses save di menu
di menu tetep ada tulisannya, cuma gk bisa dipake.. CMIIW
TSnya ingin dimenu gk ada tulsan save
Menghilangkan beberapa menu Empty2011-07-14, 11:27
PostRe: Menghilangkan beberapa menu
redlagart 
Advance
Advance
redlagart

Level 5
Posts : 342
Thanked : 5
Engine : Multi-Engine User
Skill : Intermediate
Type : Artist
Awards:
Menghilangkan beberapa menu Vide
ilangin aja dibagian scriptnya bro,
:D :D
Menghilangkan beberapa menu Empty2011-07-14, 11:37
PostRe: Menghilangkan beberapa menu
ReydVires 
The First ThV©
ReydVires

Level 5
Posts : 538
Thanked : 5
Engine : RMVX
Skill : Skilled
Type : Event Designer

Menghilangkan beberapa menu Vide
redlagart wrote:
ilangin aja dibagian scriptnya bro,
:D :D

ane bukan scripter omm :swt: :jedug

tp udah berhasil kak =))
Menghilangkan beberapa menu Empty2011-07-14, 11:49
PostRe: Menghilangkan beberapa menu
bungatepijalan 
Moe Princess
bungatepijalan

Level 5
Posts : 1487
Thanked : 30
Engine : Multi-Engine User
Skill : Intermediate
Type : Developer
Awards:
Menghilangkan beberapa menu Vide
@TS
Uda berhasil ya? :swt:
padahal.. ane mo nunjukkin ini :swt:
Code:
#==============================================================================
# ** Scene_Menu
#------------------------------------------------------------------------------
#  This class performs the menu screen processing.
#==============================================================================

class Scene_Menu < Scene_Base
  #--------------------------------------------------------------------------
  # * Object Initialization
  #    menu_index : command cursor's initial position
  #--------------------------------------------------------------------------
  def initialize(menu_index = 0)
    @menu_index = menu_index
  end
  #--------------------------------------------------------------------------
  # * Start processing
  #--------------------------------------------------------------------------
  def start
    super
    create_menu_background
    create_command_window
    @gold_window = Window_Gold.new(0, 360)
    @status_window = Window_MenuStatus.new(160, 0)
  end
  #--------------------------------------------------------------------------
  # * Termination Processing
  #--------------------------------------------------------------------------
  def terminate
    super
    dispose_menu_background
    @command_window.dispose
    @gold_window.dispose
    @status_window.dispose
  end
  #--------------------------------------------------------------------------
  # * Frame Update
  #--------------------------------------------------------------------------
  def update
    super
    update_menu_background
    @command_window.update
    @gold_window.update
    @status_window.update
    if @command_window.active
      update_command_selection
    elsif @status_window.active
      update_actor_selection
    end
  end
  #--------------------------------------------------------------------------
  # * Create Command Window
  #--------------------------------------------------------------------------
  def create_command_window
    s1 = Vocab::item
    s2 = Vocab::skill
    s3 = Vocab::equip
    s4 = Vocab::status
    s5 = Vocab::save
    s6 = Vocab::game_end
    @command_window = Window_Command.new(160, [s1, s3, s4, s6])
    @command_window.index = @menu_index
    if $game_party.members.size == 0          # If number of party members is 0
      @command_window.draw_item(0, false)    # Disable item
      @command_window.draw_item(1, false)    # Disable equipment
      @command_window.draw_item(2, false)    # Disable status
    end
    if $game_system.save_disabled            # If save is forbidden
      #@command_window.draw_item(4, false)    # Disable save
    end
  end
  #--------------------------------------------------------------------------
  # * Update Command Selection
  #--------------------------------------------------------------------------
  def update_command_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      $scene = Scene_Map.new
    elsif Input.trigger?(Input::C)
      if $game_party.members.size == 0 and @command_window.index < 4
        Sound.play_buzzer
        return
      elsif $game_system.save_disabled and @command_window.index == 4
        Sound.play_buzzer
        return
      end
      Sound.play_decision
      case @command_window.index
      when 0      # Item
        $scene = Scene_Item.new
      when 1,2  # equipment, status
        start_actor_selection
      when 3      # End Game
        $scene = Scene_End.new
      end
    end
  end
  #--------------------------------------------------------------------------
  # * Start Actor Selection
  #--------------------------------------------------------------------------
  def start_actor_selection
    @command_window.active = false
    @status_window.active = true
    if $game_party.last_actor_index < @status_window.item_max
      @status_window.index = $game_party.last_actor_index
    else
      @status_window.index = 0
    end
  end
  #--------------------------------------------------------------------------
  # * End Actor Selection
  #--------------------------------------------------------------------------
  def end_actor_selection
    @command_window.active = true
    @status_window.active = false
    @status_window.index = -1
  end
  #--------------------------------------------------------------------------
  # * Update Actor Selection
  #--------------------------------------------------------------------------
  def update_actor_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      end_actor_selection
    elsif Input.trigger?(Input::C)
      $game_party.last_actor_index = @status_window.index
      Sound.play_decision
      case @command_window.index
      when 1  # equipment
        $scene = Scene_Equip.new(@status_window.index)
      when 2  # status
        $scene = Scene_Status.new(@status_window.index)
      end
    end
  end
end
..dan berhasil! :banana:
tapi ada fail nya saat setelah milih Game End, lalu di-cancel buat balik ke Menu nya :hmm:

Btw, script ente juga ada fail spt ini ga? :hmm:
Okay, tunggu ya ane mikir dulu :hmm:

~ Salam Ngacay dari Alissa Liu :ngacay2: ~
Menghilangkan beberapa menu Empty2011-07-14, 11:51
PostRe: Menghilangkan beberapa menu
ReydVires 
The First ThV©
ReydVires

Level 5
Posts : 538
Thanked : 5
Engine : RMVX
Skill : Skilled
Type : Event Designer

Menghilangkan beberapa menu Vide
bungatepijalan wrote:
@TS
Uda berhasil ya? :swt:
padahal.. ane mo nunjukkin ini :swt:
Code:
#==============================================================================
# ** Scene_Menu
#------------------------------------------------------------------------------
#  This class performs the menu screen processing.
#==============================================================================

class Scene_Menu < Scene_Base
  #--------------------------------------------------------------------------
  # * Object Initialization
  #    menu_index : command cursor's initial position
  #--------------------------------------------------------------------------
  def initialize(menu_index = 0)
    @menu_index = menu_index
  end
  #--------------------------------------------------------------------------
  # * Start processing
  #--------------------------------------------------------------------------
  def start
    super
    create_menu_background
    create_command_window
    @gold_window = Window_Gold.new(0, 360)
    @status_window = Window_MenuStatus.new(160, 0)
  end
  #--------------------------------------------------------------------------
  # * Termination Processing
  #--------------------------------------------------------------------------
  def terminate
    super
    dispose_menu_background
    @command_window.dispose
    @gold_window.dispose
    @status_window.dispose
  end
  #--------------------------------------------------------------------------
  # * Frame Update
  #--------------------------------------------------------------------------
  def update
    super
    update_menu_background
    @command_window.update
    @gold_window.update
    @status_window.update
    if @command_window.active
      update_command_selection
    elsif @status_window.active
      update_actor_selection
    end
  end
  #--------------------------------------------------------------------------
  # * Create Command Window
  #--------------------------------------------------------------------------
  def create_command_window
    s1 = Vocab::item
    s2 = Vocab::skill
    s3 = Vocab::equip
    s4 = Vocab::status
    s5 = Vocab::save
    s6 = Vocab::game_end
    @command_window = Window_Command.new(160, [s1, s3, s4, s6])
    @command_window.index = @menu_index
    if $game_party.members.size == 0          # If number of party members is 0
      @command_window.draw_item(0, false)    # Disable item
      @command_window.draw_item(1, false)    # Disable equipment
      @command_window.draw_item(2, false)    # Disable status
    end
    if $game_system.save_disabled            # If save is forbidden
      #@command_window.draw_item(4, false)    # Disable save
    end
  end
  #--------------------------------------------------------------------------
  # * Update Command Selection
  #--------------------------------------------------------------------------
  def update_command_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      $scene = Scene_Map.new
    elsif Input.trigger?(Input::C)
      if $game_party.members.size == 0 and @command_window.index < 4
        Sound.play_buzzer
        return
      elsif $game_system.save_disabled and @command_window.index == 4
        Sound.play_buzzer
        return
      end
      Sound.play_decision
      case @command_window.index
      when 0      # Item
        $scene = Scene_Item.new
      when 1,2  # equipment, status
        start_actor_selection
      when 3      # End Game
        $scene = Scene_End.new
      end
    end
  end
  #--------------------------------------------------------------------------
  # * Start Actor Selection
  #--------------------------------------------------------------------------
  def start_actor_selection
    @command_window.active = false
    @status_window.active = true
    if $game_party.last_actor_index < @status_window.item_max
      @status_window.index = $game_party.last_actor_index
    else
      @status_window.index = 0
    end
  end
  #--------------------------------------------------------------------------
  # * End Actor Selection
  #--------------------------------------------------------------------------
  def end_actor_selection
    @command_window.active = true
    @status_window.active = false
    @status_window.index = -1
  end
  #--------------------------------------------------------------------------
  # * Update Actor Selection
  #--------------------------------------------------------------------------
  def update_actor_selection
    if Input.trigger?(Input::B)
      Sound.play_cancel
      end_actor_selection
    elsif Input.trigger?(Input::C)
      $game_party.last_actor_index = @status_window.index
      Sound.play_decision
      case @command_window.index
      when 1  # equipment
        $scene = Scene_Equip.new(@status_window.index)
      when 2  # status
        $scene = Scene_Status.new(@status_window.index)
      end
    end
  end
end
..dan berhasil! :banana:
tapi ada fail nya saat setelah milih Game End, lalu di-cancel buat balik ke Menu nya :hmm:

Btw, script ente juga ada fail spt ini ga? :hmm:
Okay, tunggu ya ane mikir dulu :hmm:

~ Salam Ngacay dari Alissa Liu :ngacay2: ~

ane gak ngedit tuh script gan (Nemu, trus edit, tp bkan yg ini)... :swt: malah pas ane pilih end game, trus di cancel, eh ada 2 blok yg blank.....
Menghilangkan beberapa menu Empty2011-07-14, 11:56
PostRe: Menghilangkan beberapa menu
bungatepijalan 
Moe Princess
bungatepijalan

Level 5
Posts : 1487
Thanked : 30
Engine : Multi-Engine User
Skill : Intermediate
Type : Developer
Awards:
Menghilangkan beberapa menu Vide
@^
Ya itu fail yg seperti q maksud :swt:
Okay, ane dapet deh....
nih tambahan script nya :v
Code:
#==============================================================================
# ** Scene_End
#------------------------------------------------------------------------------
#  This class performs game end screen processing.
#==============================================================================

class Scene_End < Scene_Base
  #--------------------------------------------------------------------------
  # * Return to Original Screen
  #--------------------------------------------------------------------------
  def return_scene
    $scene = Scene_Menu.new
  end
end
Btw, owh rupanya ini kekakuan script default nya yg nulisnya $scene = Scene_Menu.new(5) =))

~ Salam Ngacay dari Alissa Liu :ngacay2: ~
Menghilangkan beberapa menu Empty2011-07-14, 11:56
PostRe: Menghilangkan beberapa menu
maihime 
Senior
Senior
maihime

Level 5
Posts : 677
Thanked : 143
Engine : Multi-Engine User
Skill : Very Beginner
Type : Artist

Menghilangkan beberapa menu Vide
@kudit dan Serpentz: Oh! Betul juga! :shocked:
Tnggu, aku temukan cara yang lbih mudah... :3
Yaitu di scene menu,
cari baris ke 60, hapus tuh s5. :D
Selesai... XD
Harusnya sih hilang tuh menu savenya... :3
Menghilangkan beberapa menu Empty2011-07-14, 11:59
PostRe: Menghilangkan beberapa menu
ReydVires 
The First ThV©
ReydVires

Level 5
Posts : 538
Thanked : 5
Engine : RMVX
Skill : Skilled
Type : Event Designer

Menghilangkan beberapa menu Vide
maihime wrote:
@kudit dan Serpentz: Oh! Betul juga! :shocked:
Tnggu, aku temukan cara yang lbih mudah... :3
Yaitu di scene menu,
cari baris ke 60, hapus tuh s5. :D
Selesai... XD
Harusnya sih hilang tuh menu savenya... :3

pasti ada yg error gan =))
Menghilangkan beberapa menu Empty2011-07-14, 12:05
PostRe: Menghilangkan beberapa menu
bungatepijalan 
Moe Princess
bungatepijalan

Level 5
Posts : 1487
Thanked : 30
Engine : Multi-Engine User
Skill : Intermediate
Type : Developer
Awards:
Menghilangkan beberapa menu Vide
@maihime
ya error lah, gak segampang yg ente pikirkan =))

@^
Ehem.. uda coba tambahan script ku ini lum? :v
udah dijamin berhasil lho :v
Kalo gitu solved aja deh... okay? :v

~ Salam Ngacay dari Alissa Liu :ngacay2: ~
Menghilangkan beberapa menu Empty2011-07-14, 12:14
PostRe: Menghilangkan beberapa menu
ReydVires 
The First ThV©
ReydVires

Level 5
Posts : 538
Thanked : 5
Engine : RMVX
Skill : Skilled
Type : Event Designer

Menghilangkan beberapa menu Vide
bungatepijalan wrote:
@maihime
ya error lah, gak segampang yg ente pikirkan =))

@^
Ehem.. uda coba tambahan script ku ini lum? :v
udah dijamin berhasil lho :v
Kalo gitu solved aja deh... okay? :v

~ Salam Ngacay dari Alissa Liu :ngacay2: ~

oce Solved ajee... Thx all udah mau bantu
Menghilangkan beberapa menu Empty2011-07-14, 12:47
PostRe: Menghilangkan beberapa menu
SerpentZ 
Advance
Advance
SerpentZ

Level 5
Posts : 425
Thanked : 2
Engine : Multi-Engine User
Skill : Intermediate
Type : Mapper

Menghilangkan beberapa menu Vide
Okay............. Solved :RMID:
Menghilangkan beberapa menu Empty2011-07-14, 13:13
PostRe: Menghilangkan beberapa menu
dnasman 
Admin
Kodok Ganteng Indonesia™

AdminKodok Ganteng Indonesia™
dnasman

Kosong
Posts : 1361
Thanked : 21
Engine : RMXP
Skill : Intermediate
Type : Event Designer
Awards:

Menghilangkan beberapa menu Vide
Solved => Locked.

Thnx.
Menghilangkan beberapa menu Empty
PostRe: Menghilangkan beberapa menu
Sponsored content 




Menghilangkan beberapa menu Vide
 

Menghilangkan beberapa menu

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 1

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Engines :: RMVX :: RMVX Archive-