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.
|
|
| [XP]Dhoom Script Workshop | |
| |
2011-05-13, 22:08 | [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| Ok... engg... (bingung mau nulis apaan). Karna aku sedang mendalami RGSS, tpi g punya ide mau bkin apaan, jadi aku bikin trid ini. Kalian bisa request script XP disini. Tapi, tidak semua request aku terima (seperti battle system yang aku masih belum sanggup). Hanya satu request yang kukerjakan hingga selesai, jadi yang lain ngantri ya (copas dari yg VX ) Ok, Request kubuka! Template RequestTipe/Nama Script: Deskripsi Script: Basic Attack Common Event for nisamerica - Code:
-
#=============================================================================== #---------------------=• Basic Attack Common Event •=--------------------------- #---------------------------=• by: DrDhoom •=----------------------------------- # Version: 1.0 (For Default Battle System) # Date Published: 19 - 05 - 2011 # RPGMakerID Community #------------------------------------------------------------------------------- # Introduction: # Execute commont event when using basic attack #------------------------------------------------------------------------------- # How to use: # - Insert this script above Main #=============================================================================== ]module Dhoom module CEW COMMON_WEAPON = [] #<--- Don't Delete this line #COMMON_WEAPON[Weapon ID] = Common Event ID COMMON_WEAPON[1] = 4 COMMON_WEAPON[2] = 1 COMMON_WEAPON[3] = 2 ENEMY = [] #ENEMY[enemy id] = common event id ENEMY[1] = 1 #ENE_ACTIVE = [enemy id] ENE_ACTIVE = [1] #ACTIVE = [weapon id] ACTIVE = [1,2] end end
class Game_Enemy def enemy? return true end end
class Game_Actor def enemy? return false end end
class Scene_Battle alias dhoom_basic_action make_basic_action_result def make_basic_action_result dhoom_basic_action if @active_battler.current_action.basic == 0 if Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id] != nil if Dhoom::CEW::ACTIVE.include?(@active_battler.weapon_id) common_event = $data_common_events[Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id] end elsif @active_battler.enemy? and Dhoom::CEW::ENEMY[@active_battler.id] != nil if Dhoom::CEW::ENE_ACTIVE.include?(@active_battler.id) common_event = $data_common_events[Dhoom::CEW::ENEMY[@active_battler.id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::ENEMY[@active_battler.id] end end end end end - Code:
-
#=============================================================================== #---------------------=• Basic Attack Common Event •=--------------------------- #---------------------------=• by: DrDhoom •=----------------------------------- # Version: 1.0 (For Atoa CBS) # Date Published: 19 - 05 - 2011 # RPGMakerID Community #------------------------------------------------------------------------------- # Introduction: # Execute commont event when using basic attack #------------------------------------------------------------------------------- # How to use: # - Insert this script above Main #=============================================================================== module Dhoom module CEW COMMON_WEAPON = [] #<--- Don't Delete this line #COMMON_WEAPON[Weapon ID] = Common Event ID COMMON_WEAPON[1] = 4 COMMON_WEAPON[2] = 1 COMMON_WEAPON[3] = 2 ENEMY = [] #ENEMY[enemy id] = common event id ENEMY[1] = 1 #ENE_ACTIVE = [enemy id] ENE_ACTIVE = [1] #ACTIVE = [weapon id] ACTIVE = [1,2] end end
class Game_Enemy def enemy? return true end end
class Game_Actor def enemy? return false end end
class Scene_Battle alias dhoom_basic_action make_basic_action_result def make_basic_action_result(battler) dhoom_basic_action(battler) if battler.current_action.basic == 0 if Dhoom::CEW::COMMON_WEAPON[battler.weapon_id] != nil if Dhoom::CEW::ACTIVE.include?(battler.weapon_id) common_event = $data_common_events[Dhoom::CEW::COMMON_WEAPON[battler.weapon_id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::COMMON_WEAPON[battler.weapon_id] end elsif battler.enemy? and Dhoom::CEW::ENEMY[battler.id] != nil if Dhoom::CEW::ENE_ACTIVE.include?(battler.id) common_event = $data_common_events[Dhoom::CEW::ENEMY[battler.id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::ENEMY[battler.id] end end end end end Common Event Before Skill for nisamerica - Code:
-
#=============================================================================== #---------------------=•Common Event Before Skill •=--------------------------- #---------------------------=• by: DrDhoom •=----------------------------------- # Version: 1.0 # Date Published: 18 - 05 - 2011 # RPGMakerID Community #------------------------------------------------------------------------------- # Introduction: # Execute commont event before using skill #------------------------------------------------------------------------------- # How to use: # - Insert this script above Main #=============================================================================== module Dhoom module CEBA COMMON_EVENT = [] #<--- Don't Delete this line #COMMON_EVENT[skill id] = common event id COMMON_EVENT[1] = 4 end end
class Scene_Battle alias dhoom_make_skill make_skill_action_result def make_skill_action_result dhoom_make_skill if Dhoom::CEBA::COMMON_EVENT[@skill.id] != nil common_event = $data_common_events[Dhoom::CEBA::COMMON_EVENT[@skill.id]] $game_system.battle_interpreter.setup(common_event.list, 0) end end end Inferno CMS V1.1 for superkudit - Code:
-
http://www.media*fire.com/?oj0jxrt88muu8mq Note: hilangkan tanda *. Thanks untuk superkudit yang udah ngaplud ulang Screenshoot: Shortcut Scene V1.0 for rezpect & esamudra - 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, Scene_Item],[Input::L, Scene_Skill]] end end
class Scene_Map include Dhoom::ShortcutScene alias dhoom_map_shortcut_update update def update dhoom_map_shortcut_update update_shortcut end def update_shortcut return if $game_system.map_interpreter.running? for key in Shortcut if Input.trigger?(key[0]) $game_player.straighten $scene = key[1].new return end end end end Semua script yang aku post di thread ini
Terakhir diubah oleh DrDhoom tanggal 2011-12-29, 10:50, total 8 kali diubah |
| | | 2011-05-13, 23:32 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| WOHOHO~~ Serius?? Sep2, gwa dah tunggu ini buka dari kapan Bisa ga ngutak-ngatik common event? Kalo bisa langsung aja ke sini gan >> https://rmid.forumotion.net/t2852-butuh-beberapa-script-tentang-common-eventGa terlalu mendesak kok, jadi just take your time... - quote dari diriku sendiri :
- nisamerica wrote:
- Jadi gini, gwa butuh beberapa script
Dan walaupun judul tritnya common event, sebetulnya ada request script lain Tapi awal2 kita liat dulu faktanya
- Common event kan biasanya terjadi setelah skill kan?
- Terus, attack biasa ga ada common event kan?
- Dalam battle, event misalnya [turn 2], terjadi di awal turn 2 kan?
- Satu lagi. Status yang bisa diakses oleh weapon, armor, dan state kan beda2.
Weapon: ATK, PDEF, dll. Armor: EVA, INT, dll. State: Bisa semua.
Nah, ada ga script agar:
- Common event ada dua tiap kali skill, sebelum dan sesudah pengaktifan skill, atau paling ngga, minimal bisa diset kapan common event terjadi. (sangat diperlukan)
- Common event setelah attack biasa, baik untuk player maupun enemy.
Mungkin harus ada common event yang terpasang di weapon biasa? (lumayan diperlukan)
- Misal pada battle, set event pada [Turn 2], dan bisa di set apakah terjadi di awal atau akhir dari turn. (sangat diperlukan)
- Weapon dan Armor bisa menambah/mengurangi seluruh status yang ada, atau minimal Armor bisa menambah ATK. (tidak begitu diperlukan, hanya sebagai pelengkap, tapi akan sangat berterimakasih bila ada)
- Tambahan, biar ga bikin trid baru
Script untuk transfer ke map lain dari menu, dan kembali ke menu dan map sebelumnya (agak susah dijelasin, tapi sangat diperlukan) Ada contoh, tapi filenya gede, dan itu game... "H"
Nomer 1, 3, dan 5 adalah prioritas utama, mohon dibantu bila ada Kalo ada yang bersedia membuatkan scriptnya, saya akan sangat berterimakasih Cendol & credit is ready
ENGINE: XP BS: DEFAULT FRONTVIEW BS
O iya nomor 5 gwa dah bisa ngulik sendiri, jadi udah oke Nomor 4 juga dipikir2 ga perlu deh |
| | | 2011-05-14, 15:56 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| ok... gw dh kelarin yg no 1 sama 2... ntar d post... lg mob mode Edit: 1. - Code:
-
module Dhoom module CEBA COMMON_EVENT = [] #<--- Don't Delete this line #COMMON_EVENT[skill id] = common event id COMMON_EVENT[1] = 4 end end
class Scene_Battle alias dhoom_make_skill make_skill_action_result def make_skill_action_result dhoom_make_skill if Dhoom::CEBA::COMMON_EVENT[@skill.id] != nil common_event = $data_common_events[Dhoom::CEBA::COMMON_EVENT[@skill.id]] $game_system.battle_interpreter.setup(common_event.list, 0) end end end itu buat common event sebelum skill... 2. - Code:
-
module Dhoom module CEW COMMON_WEAPON = [] #<--- Don't Delete this line #COMMON_WEAPON[Weapon ID] = Common Event ID COMMON_WEAPON[1] = 4 COMMON_WEAPON[2] = 1 COMMON_WEAPON[3] = 2 #ACTIVE = [weapon id] ACTIVE = [1,2] end end
class Scene_Battle alias dhoom_basic_action make_basic_action_result def make_basic_action_result dhoom_basic_action if @active_battler.current_action.basic == 0 if Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id] != nil if Dhoom::CEW::ACTIVE.include?(@active_battler.weapon_id) common_event = $data_common_events[Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id] end end end end end Yg dalam ACTIVE jlan sebelum nyerang... |
| | | 2011-05-18, 14:36 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| Uwoh keren, wahaha thanks Dhoom, gwa ga sangka cepet begini... Gila, belum satu hari request gwa lewat padahal Gwa dah coba, keren lol Tapi sayang, ga compatible dengan Atoa ATB... Boleh request biar compatible? Cendol sent btw, kalo gwa masih make BS default XP script ini super keren |
| | | 2011-05-19, 11:09 | Re: [XP]Dhoom Script Workshop |
---|
LiTTleDRAgo Senior
Posts : 712 Thanked : 27 Engine : RMXP Skill : Skilled Type : Scripter
Awards:
| | | | 2011-05-19, 11:48 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| Eh iya, gwa baru keingetan Mengenai yang common event tuk serangan biasa, kalo buat enemy gimana? Kan enemy ga make weapon tuh Plus kalo bisa compatible ama Atoa |
| | | 2011-05-19, 13:33 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| @nisa: mnta link Atoa atb nya donk... g punya nih yg ada enemy nya - Code:
-
module Dhoom module CEW COMMON_WEAPON = [] #<--- Don't Delete this line #COMMON_WEAPON[Weapon ID] = Common Event ID COMMON_WEAPON[1] = 4 COMMON_WEAPON[2] = 1 COMMON_WEAPON[3] = 2 ENEMY = [] #ENEMY[enemy id] = common event id ENEMY[1] = 1 #ENE_ACTIVE = [enemy id] ENE_ACTIVE = [1] #ACTIVE = [weapon id] ACTIVE = [1,2] end end
class Game_Enemy def enemy? return true end end
class Game_Actor def enemy? return false end end
class Scene_Battle alias dhoom_basic_action make_basic_action_result def make_basic_action_result dhoom_basic_action if @active_battler.current_action.basic == 0 if Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id] != nil if Dhoom::CEW::ACTIVE.include?(@active_battler.weapon_id) common_event = $data_common_events[Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::COMMON_WEAPON[@active_battler.weapon_id] end elsif @active_battler.enemy? and Dhoom::CEW::ENEMY[@active_battler.id] != nil if Dhoom::CEW::ENE_ACTIVE.include?(@active_battler.id) common_event = $data_common_events[Dhoom::CEW::ENEMY[@active_battler.id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::ENEMY[@active_battler.id] end end end end end @drago: gw coba dulu... (lu request ny yg susah mulu ) |
| | | 2011-05-19, 13:40 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| Buset thanks Dhoom, ini link Battle System Atoa >> http://www.hbgames.org/forums/viewtopic.php?t=62914 Hati2 mabok Wogh yang enemy juga udah jadi Berhubung cendol gwa buat hari ni udah abis, besok aja gwa kasi cendolnya |
| | | 2011-05-19, 13:54 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| @nisa: mslah cendol mah gmpng... btw, atoa cbs nya kok g bisa dibuka? "Project from old version can't be loaded"... cara bkanya gimana? Edit: udah bisa... coba ini - Code:
-
#=============================================================================== #---------------------=• Basic Attack Common Event •=--------------------------- #---------------------------=• by: DrDhoom •=----------------------------------- # Version: 1.0 (For Atoa CBS) # Date Published: 19 - 05 - 2011 # RPGMakerID Community #------------------------------------------------------------------------------- # Introduction: # Execute commont event when using basic attack #------------------------------------------------------------------------------- # How to use: # - Insert this script above Main #=============================================================================== module Dhoom module CEW COMMON_WEAPON = [] #<--- Don't Delete this line #COMMON_WEAPON[Weapon ID] = Common Event ID COMMON_WEAPON[1] = 4 COMMON_WEAPON[2] = 1 COMMON_WEAPON[3] = 2 ENEMY = [] #ENEMY[enemy id] = common event id ENEMY[1] = 1 #ENE_ACTIVE = [enemy id] ENE_ACTIVE = [1] #ACTIVE = [weapon id] ACTIVE = [1,2] end end
class Game_Enemy def enemy? return true end end
class Game_Actor def enemy? return false end end
class Scene_Battle alias dhoom_basic_action make_basic_action_result def make_basic_action_result(battler) dhoom_basic_action(battler) if battler.current_action.basic == 0 if Dhoom::CEW::COMMON_WEAPON[battler.weapon_id] != nil if Dhoom::CEW::ACTIVE.include?(battler.weapon_id) common_event = $data_common_events[Dhoom::CEW::COMMON_WEAPON[battler.weapon_id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::COMMON_WEAPON[battler.weapon_id] end elsif battler.enemy? and Dhoom::CEW::ENEMY[battler.id] != nil if Dhoom::CEW::ENE_ACTIVE.include?(battler.id) common_event = $data_common_events[Dhoom::CEW::ENEMY[battler.id]] $game_system.battle_interpreter.setup(common_event.list, 0) else @common_event_id = Dhoom::CEW::ENEMY[battler.id] end end end end end |
| | | 2011-05-19, 20:32 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| Uwoah, too fast! Gwa tau cuma ganti beberapa bagian, but this is too fast! X_X (ga ada emot silau ya, kapan2 bikin ah ) Sayang lagi ga bisa nyoba, tapi gwa percaya bisa Thanks yaw Eh wait, yang common event untuk skill ga dibikin yang compatiblenya? Ah sudahlah, thanks |
| | | 2011-05-21, 17:46 | Re: [XP]Dhoom Script Workshop |
---|
hyperkudit Pahlawan Super
Posts : 2288 Thanked : 30 Engine : RMXP Skill : Very Beginner Type : Artist
Awards:
| saya mau reques dok script menu dari kemaren2 mo request selalu sahaja ada halangan.. yang pertama : - Quote :
script menu utama, ubah punya moghunter aja, opsinya cuman item, skill, character, sama end game.. save game diilangin, trus panah buat milih opsi gerakannya kyk jarum jam, porosnya di pangkal jarum tampilan CG karakter di menu utamanya horizontal (nyamping kiri kanan gitu).. HP, SP sama EXP nya gk usah ditampilin. dibawah cuma ada play time sama gold... sisanya sama kyk moghunter..
untuk lebih jelas lihat gambar
- Spoiler:
yang kedua : - Quote :
Script menu equip sekaligus status..
BG nya pake gambar, nampilin CG untuk equip yang dipilih, parameternya bentuk kayak hexagonal (tapi 7 sudutnya), statusbarnya ngikutin sudut hexagonalnya itu nanti.. ada potrait char, HP bar, SP bar, EXP... dikasi window yg isinya deskripsi karakter yg lagi dipilih. dan karena saya mengunakan script two hands nya atoa, sangat diharapkan script ini kompatible sama script Atoa two hands.. jadi misalnya karakter menggunakan 2 buah pedang, maka kita bisa memilih pedang utk ditangan kanan dan ditangan kiri sesuai script atoa, kalo charnya bukan tipe dual wielding berarti tangan kirinya tetep shield... kalo bisa edit moghunter aja untuk lebih jelas lihat gambar
- Spoiler:
ini script Moghunternya.. - Code:
-
http://www.media*fire.com/?3brht2ncab7lr7f ini script atoa, two hands itu add on nya, ada didalem - Code:
-
http://www.media*fire.com/?8c1k23q8g6wmm6w |
| | | 2011-05-23, 21:42 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| Wogh menu sekern itu mah kalo free keknya gwa juga pake tuh, gila Ijin joinan |
| | | 2011-05-24, 12:18 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| @drago: gw bingung bkin ny gmn... basic ny sih bisa... tpi... ah jdi bngung @kudit & nisa: sabar deh klo gitu... krna jdinya mngkin agak lama |
| | | 2011-05-24, 15:59 | Re: [XP]Dhoom Script Workshop |
---|
hyperkudit Pahlawan Super
Posts : 2288 Thanked : 30 Engine : RMXP Skill : Very Beginner Type : Artist
Awards:
| @dokter : gpp dok saya sabar, asalkan nanti hasilnya bisa selamat @nisa : diijinkan |
| | | 2011-05-24, 18:37 | Re: [XP]Dhoom Script Workshop |
---|
LiTTleDRAgo Senior
Posts : 712 Thanked : 27 Engine : RMXP Skill : Skilled Type : Scripter
Awards:
| gw sih uda nyoba ngeedit game_map sama autotile tapi hasilnya ga ngerti di autotilenya |
| | | 2011-05-24, 18:58 | Re: [XP]Dhoom Script Workshop |
---|
fachiru Sherlockian
Posts : 634 Thanked : 6 Engine : RMXP Skill : Beginner Type : Writer
| bisakah saya request juga? *mata berbinar binar* (doh ga ada emotnya lage) err sepele sih, kan kalo kita pake sprite battler, di script menu moghunter jadi ancur kan ya nah bisa ga kalo battlernya di ganti sprite, tapi di menunya tetep cg/potraitnya? (btw aku ga tau pasti, sekalian nanya neh ) bikinin custom save menu dong aku mau yg dari RMID segitu aja |
| | | 2011-05-24, 19:05 | Re: [XP]Dhoom Script Workshop |
---|
hyperkudit Pahlawan Super
Posts : 2288 Thanked : 30 Engine : RMXP Skill : Very Beginner Type : Artist
Awards:
| ijin menjawab pertanyaannya fachri bukannya di moghunter udah tersedia?? kalo kita mau charnya dimenu pake potrait, tinggal bikin gambar dengan nama file namachar_fc (CMIIW) |
| | | 2011-05-24, 19:11 | Re: [XP]Dhoom Script Workshop |
---|
Kuro Ethernite The Creator
Posts : 1631 Thanked : 24 Engine : RMVX Ace Skill : Masterful Type : Jack of All Trades
Awards:
| It just me..... or tampang q menghilang dari trit ini....??? EDIT : Owh XP area toh~ NB : just numpang lewat nyari sensasi ~ |
| | | 2011-05-24, 21:18 | Re: [XP]Dhoom Script Workshop |
---|
nisamerica Living Skeleton
Posts : 1668 Thanked : 25 Engine : RMVX Skill : Very Beginner Type : Artist
Awards:
| @Kudit Makasih Tapi ntar diedit2 lagi lah yaw biar beda @Dhoom OH IYA DHOOM! GWA KELUPAAN SESUATU!! Item, loh, item! Yang common event sebelum item, gwa lupa item juga ada common event Yah, berarti itu intinya, request gwa adalah "Common event sebelum action", mencakup attack biasa, skill, dan item, terus compatible ama Atoa Sori ngerepotin Request ini dikerjain terakhir2 aja, ga butuh cepet kok |
| | | 2011-05-25, 20:40 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| @nisa: nih yg ktinggalan - Code:
-
#=============================================================================== #---------------------=•Common Event Before Skill •=--------------------------- #---------------------------=• by: DrDhoom •=----------------------------------- # Version: 1.0 (Atoa BS) # Date Published: 18 - 05 - 2011 # RPGMakerID Community #------------------------------------------------------------------------------- # Introduction: # Execute commont event before using skill #------------------------------------------------------------------------------- # How to use: # - Insert this script above Main #=============================================================================== module Dhoom module CEBA COMMON_SEVENT = [] #<--- Don't Delete this line #COMMON_SEVENT[skill id] = common event id COMMON_SEVENT[1] = 4 COMMON_IEVENT = [] #<--- Don't Delete this line #COMMON_IEVENT[item id] = common event id COMMON_IEVENT[1] = 4 end end
class Scene_Battle alias dhoom_make_skill make_skill_action_result def make_skill_action_result(battler) dhoom_make_skill(battler) if Dhoom::CEBA::COMMON_SEVENT[battler.current_skill.id] != nil common_event = $data_common_events[Dhoom::CEBA::COMMON_SEVENT[battler.current_skill.id]] $game_system.battle_interpreter.setup(common_event.list, 0) end end alias dhoom_make_item make_item_action_result def make_item_action_result(battler) dhoom_make_item(battler) if Dhoom::CEBA::COMMON_IEVENT[battler.current_item.id] != nil common_event = $data_common_events[Dhoom::CEBA::COMMON_IEVENT[battler.current_item.id]] $game_system.battle_interpreter.setup(common_event.list, 0) end end end sdh dtmbhin item nya juga |
| | | 2011-05-26, 11:25 | Re: [XP]Dhoom Script Workshop |
---|
LiTTleDRAgo Senior
Posts : 712 Thanked : 27 Engine : RMXP Skill : Skilled Type : Scripter
Awards:
| requestku yang sebelumnya bisa ngga? kalo ternyata kesusahan gw ganti aja deh yang lebih gampang ^^ editin scene_shop nya moghunter donk http://atelier-rgss.com/RGSS/Menu/XP_Menu07.html biar bisa pake variable buat transaksinya (bisa pake gold sama variabel di transaksinya) terus sama ada pilihan sell only, buy only atau bisa 2-2nya kalo bisa cara pemakaiannya kyk gini $scene_shop.var = VARIABLE ID # (kalo var = variable sesuai IDnya, kalo ga pake ini nanti pake gold) $scene_shop.type = 1 # (0 = bisa buy & sell / default, 1 = cuma sell, 2 = cuma buy) |
| | | 2011-05-26, 12:19 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| @drago: ya ksusahan bnget got it! gw usahain |
| | | 2011-05-26, 13:29 | Re: [XP]Dhoom Script Workshop |
---|
rexoholic Advance
Posts : 330 Thanked : 2 Engine : Multi-Engine User Skill : Beginner Type : Jack of All Trades
| kk request dong ! tolong bikinin mini game drag race dong ! |
| | | 2011-05-26, 13:52 | Re: [XP]Dhoom Script Workshop |
---|
DrDhoom Doomed Zombie
Posts : 629 Thanked : 22 Engine : Multi-Engine User Skill : Intermediate Type : Scripter
| @rexo: mksud? yg jelas donk... g ngrti gw |
| | | 2011-05-26, 14:40 | Re: [XP]Dhoom Script Workshop |
---|
chymenk87 Newbie
Posts : 1 Thanked : 0 Engine : RMVX Skill : Beginner Type : Artist
| Gan, mw request nih.. script bagian yg bwt ganti menu awal di mana ya..? cz ane mw ubah gmabr bckground n menu pilihannya gt.. tolong dbantu y gan.. plus crany..hehe.. thnx b 4.. bwt RM Xp gan.. |
| | | | Re: [XP]Dhoom Script Workshop |
---|
Sponsored content
| | | | | [XP]Dhoom Script Workshop | |
|
Similar topics | |
|
Similar topics | |
| |
Halaman 1 dari 3 | Pilih halaman : 1, 2, 3 | |
| Permissions in this forum: | Anda tidak dapat menjawab topik
| |
| |
Latest 10 Topics | [Web Novel] Gloria Infidelis 2016-11-17, 21:27 by LightNightKnight
[Announcement] Forum baru untuk RMID 2016-08-25, 16:39 by TheoAllen
Where I'm Wrong ? 2016-07-24, 16:10 by ReydVires
flakeheartnet's Resources part III 2016-07-08, 14:30 by flakeheartnet
Keira's Art Warehouse 2016-06-28, 19:27 by KeiraBlaze
Theo Core Time System + Bingung 2016-06-27, 16:24 by Lockin
Error Script, Maybe ? 2016-06-27, 16:20 by Lockin
Nusaimoe @ RMID Lounge 2016-06-21, 05:02 by Jihad Bagas
Call Random Battle 2016-06-15, 17:04 by Lockin
Flakeheartnet Resources Part II [come back gift] 2016-06-07, 15:51 by flakeheartnet
|
Statistics
|
Members: [ 4947 ]
Topics: [ 8258 ]
Posts: [ 112606 ]
Newest member: [ https://rmid.forumotion.net/u4968 ]
|
|
|
|
|
|