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 | 
 

 [VX]Shortcut Scene

Topik sebelumnya Topik selanjutnya Go down 
[VX]Shortcut Scene Empty2011-12-27, 10:58
Post[VX]Shortcut Scene
#1
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
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
[VX]Shortcut Scene Empty2011-12-27, 11:43
PostRe: [VX]Shortcut Scene
#2
shikami 
Member 1000 Konsep
avatar

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


[VX]Shortcut Scene Vide
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
[VX]Shortcut Scene Empty2011-12-27, 11:47
PostRe: [VX]Shortcut Scene
#3
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
bisa sih pake vampyr keyboard, tnggal ganti aja :)
Tapi vampyr keyboard conflict sama input button pada event :hmm:
[VX]Shortcut Scene Empty2011-12-27, 12:07
PostRe: [VX]Shortcut Scene
#4
Masrinduz 
Pendekar Psycho
Masrinduz

Level 5
Posts : 1230
Thanked : 13
Engine : Multi-Engine User
Skill : Skilled
Type : Artist
Awards:
[VX]Shortcut Scene Vide
Dhoom btw ditunggu versi RMXPnya yaa.
Btw. ini tu sebenernya gimana sih makenya?? :hammer:
Wa bisanya eventing cuman yang basic2 doank ajjajajajajajjaa~
[VX]Shortcut Scene Empty2011-12-27, 12:29
PostRe: [VX]Shortcut Scene
#5
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
@tam: XP version ada disini
https://rmid.forumotion.net/t3872p50-xpdhoom-script-workshop#82331

Makenya sama kayak yang ada discriptnya :hmm:
[VX]Shortcut Scene Empty2011-12-27, 17:35
PostRe: [VX]Shortcut Scene
#6
esamudra 
Newbie
Newbie
esamudra

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

[VX]Shortcut Scene Vide
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~
[VX]Shortcut Scene Empty2011-12-27, 18:06
PostRe: [VX]Shortcut Scene
#7
shikami 
Member 1000 Konsep
avatar

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


[VX]Shortcut Scene Vide
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
[VX]Shortcut Scene Empty2011-12-27, 18:08
PostRe: [VX]Shortcut Scene
#8
esamudra 
Newbie
Newbie
esamudra

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

[VX]Shortcut Scene Vide
kalo di demo bisa dipanggil di Menu

padahal udah aku ganti jadi
Spoiler:
[VX]Shortcut Scene Empty2011-12-27, 18:41
PostRe: [VX]Shortcut Scene
#9
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
coba ganti jadi :
Omega_Quest_View.new
btw, error nya gmn? :hmm:
[VX]Shortcut Scene Empty2011-12-27, 18:49
PostRe: [VX]Shortcut Scene
shikami 
Member 1000 Konsep
avatar

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


[VX]Shortcut Scene Vide
coba pasang CMS yang bisa masukin scene lain seperti KGC Extension menu :hmm:
taruh dibawah script ini.. mungkin bisa :hmm:
[VX]Shortcut Scene Empty2011-12-27, 19:31
PostRe: [VX]Shortcut Scene
Blackcat 
Novice
Novice
Blackcat

Level 5
Posts : 194
Thanked : 6
Engine : Other

[VX]Shortcut Scene Vide
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...
[VX]Shortcut Scene Empty2011-12-28, 10:12
PostRe: [VX]Shortcut Scene
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
oh yeah... aku ga liat bagian itu :hammer:
udah bisa bang esamudra?
[VX]Shortcut Scene Empty2011-12-28, 13:39
PostRe: [VX]Shortcut Scene
esamudra 
Newbie
Newbie
esamudra

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

[VX]Shortcut Scene Vide
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~
[VX]Shortcut Scene Empty2011-12-28, 13:58
PostRe: [VX]Shortcut Scene
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
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)
[VX]Shortcut Scene Empty2011-12-28, 14:21
PostRe: [VX]Shortcut Scene
esamudra 
Newbie
Newbie
esamudra

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

[VX]Shortcut Scene Vide
dah kuganti seperti yang disarankan om Dhoom tapi masih tetep error

kayak gini
[VX]Shortcut Scene Captur14
[VX]Shortcut Scene Empty2011-12-28, 14:54
PostRe: [VX]Shortcut Scene
DrDhoom 
Doomed Zombie
DrDhoom

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

[VX]Shortcut Scene Vide
UPDATE!
ukh trnyata ksalahan pada scriptku :hammer: script omega nya ga masalah :hammer:
coba copas scriptnya lagi XD
[VX]Shortcut Scene Empty2011-12-28, 16:57
PostRe: [VX]Shortcut Scene
esamudra 
Newbie
Newbie
esamudra

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

[VX]Shortcut Scene Vide
Yeahhhh..udah bisa om...terima kasih baget yaaaaaa......
bener-bener Scripter handal.....



~Thx~
[VX]Shortcut Scene Empty
PostRe: [VX]Shortcut Scene
Sponsored content 




[VX]Shortcut Scene Vide
 

[VX]Shortcut Scene

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 
Halaman 1 dari 1

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