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.

 

 [VX]Shortcut Scene

Go down 
5 posters
PengirimMessage
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 10:58

Shortcut Scene
Versi: 1.1
Tipe: Ga tau


Pengenalan

Well, sebenarnya sih cuman buat ngelarin requestan script XP, tapi sudah terlanjur bikinnya di VX :hammer:


Fitur


  • Bisa men-set Tombol untuk memanggil Scene pada Map
  • Dapat membuat Shortcut berapapun yang kamu mau



Screenshots

Ga perlu


Demo

Ga Perlu


Scripts

Code:
#===============================================================================
#---------------------------= Shortcut Scene =----------------------------------
#-----------------------------= by: DrDhoom =-----------------------------------
# Version: 1.1
# Date Published: 27 - 12 - 2011
#-------------------------------------------------------------------------------
# Introduction:
# With this script, you can make a Shortcut for calling scene.
#-------------------------------------------------------------------------------
# How to use:
#  - Insert this script above Main 
#-------------------------------------------------------------------------------
#===============================================================================

module Dhoom
  module ShortcutScene
    #Shortcut = [[Button, Scene], [Button, Scene], ...]

    # Button = Input button, look at Game Properties>Keyboard(F1 when playing)
    #          for more keys. The format is "Input::Keys".
    # Scene = Scene class.
    # You can add as many shortcut as you want.
   
    Shortcut = [[Input::R, Omega_Quest],[Input::L, Scene_Skill]]
  end
end

class Scene_Map < Scene_Base
 
  include Dhoom::ShortcutScene
 
  alias dhoom_map_shortcut_update update
 
  def update
    dhoom_map_shortcut_update
    unless $game_message.visible
      update_shortcut
    end
  end
 
  def update_shortcut
    return if $game_map.interpreter.running?
    return if $game_player.moving?
    for key in Shortcut
      if Input.trigger?(key[0])
        $scene = key[1].new
        return
      end
    end
  end
end


Credits


  • DrDhoom


Terakhir diubah oleh DrDhoom tanggal 2011-12-28, 15:53, total 2 kali diubah
Kembali Ke Atas Go down
shikami
Member 1000 Konsep
avatar


Level 5
Posts : 3744
Thanked : 31
Engine : Multi-Engine User
Skill : Beginner
Type : Developer

Trophies
Awards:


[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 11:43

have this one... coba pake keyboard vampyr script biar bisa custom pemanggilannya
dalam scene apapu :hmm:

tapi sepertinya ini bukan yang gw maksud sih haha
Kembali Ke Atas Go down
http://shikamicro.wordpress.com
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 11:47

bisa sih pake vampyr keyboard, tnggal ganti aja :)
Tapi vampyr keyboard conflict sama input button pada event :hmm:
Kembali Ke Atas Go down
Masrinduz
Pendekar Psycho
Masrinduz


Level 5
Posts : 1230
Thanked : 13
Engine : Multi-Engine User
Skill : Skilled
Type : Artist

Trophies
Awards:
[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 12:07

Dhoom btw ditunggu versi RMXPnya yaa.
Btw. ini tu sebenernya gimana sih makenya?? :hammer:
Wa bisanya eventing cuman yang basic2 doank ajjajajajajajjaa~
Kembali Ke Atas Go down
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 12:29

@tam: XP version ada disini
https://rmid.forumotion.net/t3872p50-xpdhoom-script-workshop#82331

Makenya sama kayak yang ada discriptnya :hmm:
Kembali Ke Atas Go down
esamudra
Newbie
Newbie
esamudra


Level 5
Posts : 75
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Artist

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 17:35

Whooa..dibikin untuk VX juga ternyata...keren nih
......ambil juga ah.. :D

~Thx~

MERGED

Om...koq aku error ya waktu aku kasih

Shortcut = [[InputA, Omega_Quest.new],[InputS, Scene_Skill.new]]
gak compatible sama Omegas_7 Quests system ya?
aku mau yang di compatible dengan Omega Quests om

nih Script buatan om Dr Dhoom
Spoiler:


nih Script Omegas_7 Quests system-ku
Spoiler:

sebelumnya mohon maaf karena ngerepotin...dan terima kasih


~Thx~
Kembali Ke Atas Go down
shikami
Member 1000 Konsep
avatar


Level 5
Posts : 3744
Thanked : 31
Engine : Multi-Engine User
Skill : Beginner
Type : Developer

Trophies
Awards:


[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 18:06

sepertinya emang ga kompatible, gw liat ga ada pemanggilan scenenya di script.
kalo didemo cara manggilnya gmna ? :hmm:
not scripter, don't know so much
Kembali Ke Atas Go down
http://shikamicro.wordpress.com
esamudra
Newbie
Newbie
esamudra


Level 5
Posts : 75
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Artist

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 18:08

kalo di demo bisa dipanggil di Menu

padahal udah aku ganti jadi
Spoiler:
Kembali Ke Atas Go down
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 18:41

coba ganti jadi :
Omega_Quest_View.new
btw, error nya gmn? :hmm:
Kembali Ke Atas Go down
shikami
Member 1000 Konsep
avatar


Level 5
Posts : 3744
Thanked : 31
Engine : Multi-Engine User
Skill : Beginner
Type : Developer

Trophies
Awards:


[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 18:49

coba pasang CMS yang bisa masukin scene lain seperti KGC Extension menu :hmm:
taruh dibawah script ini.. mungkin bisa :hmm:
Kembali Ke Atas Go down
http://shikamicro.wordpress.com
Blackcat
Novice
Novice
Blackcat


Level 5
Posts : 194
Thanked : 6
Engine : Other

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-27, 19:31

Code:
Shortcut = [[InputA, Omega_Quest.new],[InputS, Scene_Skill.new]]
coba di ubah gini...
Code:
Shortcut = [[Input::R, Omega_Quest.new],[Input::L, Scene_Skill.new]]

kalo input bawaan gak ada event keyboard, jadi musti per button... contoh :

Input <<< Key

Input::A <<< keyboard Shift dan keyboard C dan tombol Joystick 1 (triangle)
Input::B <<< keyboard Escape dan keyboard X dan tombol Joystick 2 (circle)
Input::C <<< keyboard Space dan keyboard Z dan tombol Joystick 3 (cross)
Input::X <<< keyboard A dan tombol Joystick 4 (square)
Input::Y <<< keyboard S dan tombol Joystick 5 (L Top)
Input::Z <<< keyboard D dan tombol Joystick 6 (R Top)
Input::L <<< keyboard Q dan tombol Joystick 7 (L Bottom)
Input::R <<< keyboard W dan tombol Joystick 8 (R Bottom)

CMIIW, udah gak pernah nyentuh RM, seingatku ini bentuknya... lain lagi kalo pake script Vampire_Keyboard...
kalo pake script itu bakal berubah tiap input hanya mencakup satu key...

edit : sepertinya situ pengen kalo keyboard A dan keyboard S yang di isi scene?
ya begini...
Input::X <<< keyboard A dan tombol Joystick 4 (square)
Input::Y <<< keyboard S dan tombol Joystick 5 (L Top)
jadinya
Code:
Shortcut = [[Input::X, Omega_Quest.new],[Input::Y, Scene_Skill.new]]
di coba lagi deh...
Kembali Ke Atas Go down
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-28, 10:12

oh yeah... aku ga liat bagian itu :hammer:
udah bisa bang esamudra?
Kembali Ke Atas Go down
esamudra
Newbie
Newbie
esamudra


Level 5
Posts : 75
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Artist

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-28, 13:39

Aku udah ngikutin langkahnya om Black cat tapi tetep g bisa... :(
nih errornya

[VX]Shortcut Scene Captur13
semoga para Scripter handal disini bisa bantu


~Thx~
Kembali Ke Atas Go down
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-28, 13:58

baris ini yang error:

@background = snapshot_for_background #Sprite_Base.new
@background.bitmap = snapshot_for_background #Cache.system(BACKGROUND.to_s)

coba ganti jadi gini:

@background = Sprite_Base.new
@background.bitmap = Cache.system(BACKGROUND.to_s)
Kembali Ke Atas Go down
esamudra
Newbie
Newbie
esamudra


Level 5
Posts : 75
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Artist

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-28, 14:21

dah kuganti seperti yang disarankan om Dhoom tapi masih tetep error

kayak gini
[VX]Shortcut Scene Captur14
Kembali Ke Atas Go down
DrDhoom
Doomed Zombie
DrDhoom


Level 5
Posts : 629
Thanked : 22
Engine : Multi-Engine User
Skill : Intermediate
Type : Scripter

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-28, 14:54

UPDATE!
ukh trnyata ksalahan pada scriptku :hammer: script omega nya ga masalah :hammer:
coba copas scriptnya lagi XD
Kembali Ke Atas Go down
esamudra
Newbie
Newbie
esamudra


Level 5
Posts : 75
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Artist

[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty2011-12-28, 16:57

Yeahhhh..udah bisa om...terima kasih baget yaaaaaa......
bener-bener Scripter handal.....



~Thx~
Kembali Ke Atas Go down
Sponsored content





[VX]Shortcut Scene Empty
PostSubyek: Re: [VX]Shortcut Scene   [VX]Shortcut Scene Empty

Kembali Ke Atas Go down
 
[VX]Shortcut Scene
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» [XP/VX] Map Shortcut
» [SOLVED] Shortcut keyboard
» [XP]Nufus Simple Shortcut Key
» [VXA] Simple Discussing/Shortcut System
» Your Scene Sensitivity

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