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 | 
 

 [SOLVED] Script Background For Victory Scene

Topik sebelumnya Topik selanjutnya Go down 
Pilih halaman : 1, 2  Next
[SOLVED] Script Background For Victory Scene Empty2012-09-21, 18:25
Post[SOLVED] Script Background For Victory Scene
#1
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
gini.... XD
aku punya 1 permintaan...
gimana cara nampilin background setelah menang?
aku cuman minta script background victory scene...
aku pakai Engine RMVXAce...
pakai script Yanfly Engine Victory Aftermath....
mohon di jawab... :D
[SOLVED] Script Background For Victory Scene Empty2012-09-21, 19:17
PostRe: [SOLVED] Script Background For Victory Scene
#2
kareem_ramd 
Novice
Novice
kareem_ramd

Level 5
Posts : 189
Thanked : 1
Engine : RMXP
Skill : Beginner
Type : Spriter

[SOLVED] Script Background For Victory Scene Vide
knapa gk pake event aja? :hmm:
lgian kan lebih gampang pake event :hmm:
lgian saya perhatiin game RM biasanya victory scene nya pake event :hmm:
lgian lu kan jago maen event deen =w=b
[SOLVED] Script Background For Victory Scene Empty2012-09-21, 19:45
PostRe: [SOLVED] Script Background For Victory Scene
#3
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
maksud aku....
kan lagi victory scene nih...
nanti muncul background...
nanti muncul battle result...
dari EXP, dan item found...
yang pernah main chrono cross pasti ngerti...
[SOLVED] Script Background For Victory Scene Empty2012-09-21, 20:12
PostRe: [SOLVED] Script Background For Victory Scene
#4
wltr3565 
Senior
Senior
wltr3565

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

[SOLVED] Script Background For Victory Scene Vide
Code:
module WLTR
AFTERMATH_BG = "bg1" # File background. Harus ada di Graphics/System
end
class Scene_Battle < Scene_Base
alias create_back_aftermath show_victory_display_exp
def show_victory_display_exp
    create_back_aftermath
    @aftermath_back = Sprite.new
    @aftermath_back.bitmap = Cache.system(WLTR::AFTERMATH_BG)
    @aftermath_back.z = @victory_exp_window_back.z - 1
  end

alias close_back_aftermath close_victory_windows
def close_victory_windows
close_back_aftermath
@aftermath_back.dispose
end
end

Aku belum tes sama sekali ya, ditambah aku langsung buat ini di replier tridnya. Good luck.
[SOLVED] Script Background For Victory Scene Empty2012-09-21, 22:00
PostRe: [SOLVED] Script Background For Victory Scene
#5
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
sudah aku tess...
rupanya gambarnya gx ilang....
[SOLVED] Script Background For Victory Scene Empty2012-09-21, 22:29
PostRe: [SOLVED] Script Background For Victory Scene
#6
larkuzo 
Advance
Advance
larkuzo

Level 5
Posts : 445
Thanked : 12
Engine : RMXP
Skill : Beginner
Type : Event Designer

[SOLVED] Script Background For Victory Scene Vide
Gambar apanya yang ilang?
Gambar backgroundnya kah? :v

Kalo begitu coba yang ini

Code:

module WLTR
AFTERMATH_BG = "bg1" #
File background. Harus ada
di Graphics/System
end
class Scene_Battle < Scene_
Base
alias create_back_aftermath
show_victory_display_exp
def show_victory_display_
exp
create_back_aftermath
@aftermath_back =
Sprite.new
@aftermath_back.bitmap =
Cache.system
(WLTR::AFTERMATH_BG)
@aftermath_back.z = @
victory_exp_window_back.z -
1
end
alias close_back_aftermath
close_victory_windows
def close_victory_windows
close_back_aftermath
@aftermath_back.bitmap.dispose
@aftermath_back.dispose
end
end

Untested :tf:
Error gak tanggung jawab :lol:
[SOLVED] Script Background For Victory Scene Empty2012-09-22, 05:53
PostRe: [SOLVED] Script Background For Victory Scene
#7
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
pada saat selesai battle tuh gambar gx mau ilang...
dan apa nama command di script untuk ganti color tone screen? :o
[SOLVED] Script Background For Victory Scene Empty2012-09-22, 13:44
PostRe: [SOLVED] Script Background For Victory Scene
#8
larkuzo 
Advance
Advance
larkuzo

Level 5
Posts : 445
Thanked : 12
Engine : RMXP
Skill : Beginner
Type : Event Designer

[SOLVED] Script Background For Victory Scene Vide
Buka help, search 'tone' :v

Itu yang script editan ane dah dicoba?
[SOLVED] Script Background For Victory Scene Empty2012-09-22, 17:34
PostRe: [SOLVED] Script Background For Victory Scene
#9
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
udah wa coba script lo...
tapi masih gx berhasil :ngacay2:
[SOLVED] Script Background For Victory Scene Empty2012-09-22, 20:35
PostRe: [SOLVED] Script Background For Victory Scene
wltr3565 
Senior
Senior
wltr3565

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

[SOLVED] Script Background For Victory Scene Vide
Code:
module WLTR
AFTERMATH_BG = "bg1" #File background. Harus adadi Graphics/System
end
class Scene_Battle < Scene_Base
alias create_back_aftermath
show_victory_display_exp
def show_victory_display_exp
create_back_aftermath
@aftermath_back =Sprite.new
@aftermath_back.bitmap =Cache.system(WLTR::AFTERMATH_BG)
@aftermath_back.z = @victory_exp_window_back.z -1
end
alias close_back_aftermath
close_victory_windows
def close_victory_windows
@aftermath_back.dispose
@aftermath_back = nil
close_back_aftermath
end
end

Coba ini. Untested, gak tanggung jawab :tf:
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 07:34
PostRe: [SOLVED] Script Background For Victory Scene
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
@wltr masih gx mau hilang tuh background...
gimana nih?
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 07:42
PostRe: [SOLVED] Script Background For Victory Scene
wltr3565 
Senior
Senior
wltr3565

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

[SOLVED] Script Background For Victory Scene Vide
Kamu taruh dibawah victory aftermath kan patchnya?
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 08:39
PostRe: [SOLVED] Script Background For Victory Scene
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
@wltr tepat dibawah sekali....
tapi gx mau2 hilang tuh backgroundnya T_T
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 11:05
PostRe: [SOLVED] Script Background For Victory Scene
aidilriski 
Senior
Senior
aidilriski

Level 5
Posts : 643
Thanked : 2
Engine : Multi-Engine User
Type : Mapper

[SOLVED] Script Background For Victory Scene Vide
bntar, maksud'e gk ilang gimana? Ane tes ilang kok bg nya :hmm:
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 11:17
PostRe: [SOLVED] Script Background For Victory Scene
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
@aidil boleh minta scriptnya? :hmm:
nanti wa cek soalnya wa pakai yanfly battle engine, yanfly victory aftermath, dan tankentai VXA...
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 11:29
PostRe: [SOLVED] Script Background For Victory Scene
aidilriski 
Senior
Senior
aidilriski

Level 5
Posts : 643
Thanked : 2
Engine : Multi-Engine User
Type : Mapper

[SOLVED] Script Background For Victory Scene Vide
skrip nya yg buatan om wltr pertama kli :hmm:
Btw, ane gk pke Yanfly Battle Engine ama tankentai :-
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 16:25
PostRe: [SOLVED] Script Background For Victory Scene
larkuzo 
Advance
Advance
larkuzo

Level 5
Posts : 445
Thanked : 12
Engine : RMXP
Skill : Beginner
Type : Event Designer

[SOLVED] Script Background For Victory Scene Vide
Code:

module WLTR
AFTERMATH_BG = "bg1" #
File background. Harus ada
di Graphics/System
end
class Scene_Battle < Scene_
Base
alias create_back_aftermath
show_victory_display_exp
def show_victory_display_
exp
create_back_aftermath
@aftermath_back =
Sprite.new
@aftermath_back.bitmap =
Cache.system
(WLTR::AFTERMATH_BG)
@aftermath_back.z = @
victory_exp_window_back.z -
1
end
alias close_back_aftermath
close_victory_windows
def close_victory_windows
close_back_aftermath
@aftermath_back.bitmap.opacity = 0
@aftermath_back.bitmap.dispose
@aftermath_back.dispose
end
end
Untested, ada kemungkinan error :-
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 16:49
PostRe: [SOLVED] Script Background For Victory Scene
aidilriski 
Senior
Senior
aidilriski

Level 5
Posts : 643
Thanked : 2
Engine : Multi-Engine User
Type : Mapper

[SOLVED] Script Background For Victory Scene Vide
bntar :hmm: Bkannya semua editan om wltr ama om lar dari skrip wltr yg pertama cman ngutak ngatik fungsi dispose aja y? :hmm: Tpi ane msih ga ngerti apa mksud ts yang "Ga bisa ilang", dimanaya? Apa abis battle msih ada pict nya? Seharusnya sih udah ilang :hmm:

OOT:
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:11
PostRe: [SOLVED] Script Background For Victory Scene
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
ok...
masalah background aftermath gx mau wa pakai lagi...
gara2 gx mau kehapus :swt:...
sekarang rikues wa yang kedua...
gimana nambahin EXP bar pada main menu (bukan status)...
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:20
PostRe: [SOLVED] Script Background For Victory Scene
larkuzo 
Advance
Advance
larkuzo

Level 5
Posts : 445
Thanked : 12
Engine : RMXP
Skill : Beginner
Type : Event Designer

[SOLVED] Script Background For Victory Scene Vide
Loh kenapa gak jadi dipake om?
Kan gak membahayakan ojekan :v
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:28
PostRe: [SOLVED] Script Background For Victory Scene
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
[SOLVED] Script Background For Victory Scene Vide
@deenos main menu maksudnya Scene Menu itu ya???

@aidil Alias berfungsi untuk membaca perintah2 dan variable dalam def dan class yang sama << saya gk pandai merangkai kata2 nya :hammer:

misal
Code:

alias create_back_aftermath
show_victory_display_exp
def show_victory_display_
exp
create_back_aftermath
@aftermath_back =
Sprite.new
@aftermath_back.bitmap =
Cache.system
(WLTR::AFTERMATH_BG)
@aftermath_back.z = @
victory_exp_window_back.z -
1
end
Quote :


alias create_back_aftermath
show_victory_display_exp
def show_victory_display_exp
berarti pembuat skrip hanya menambahkan beberapa code di def show_victory_display_exp yang sebelumnya telah dibuat di halaman lain.
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:35
PostRe: [SOLVED] Script Background For Victory Scene
aidilriski 
Senior
Senior
aidilriski

Level 5
Posts : 643
Thanked : 2
Engine : Multi-Engine User
Type : Mapper

[SOLVED] Script Background For Victory Scene Vide
sory oot :tf:
Jdi, alias itu kayak meng-kopi apa yg udah ada di def/class sebelumnya, lalu ditambahkan, gitu to? :ngacay2:
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:40
PostRe: [SOLVED] Script Background For Victory Scene
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
[SOLVED] Script Background For Victory Scene Vide
@aidil ya gitu deh yang jelas alias membaca def yang sebelumnya telah ditulis pembuat..
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:40
PostRe: [SOLVED] Script Background For Victory Scene
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[SOLVED] Script Background For Victory Scene Vide
@rian
iya di Scene_Menu...
wa udah utak atik tapi gx mau2 :hmm:...
[SOLVED] Script Background For Victory Scene Empty2012-09-23, 20:41
PostRe: [SOLVED] Script Background For Victory Scene
Rian01 
Advance
Advance
avatar

Level 5
Posts : 318
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Awards:
[SOLVED] Script Background For Victory Scene Vide
@deenos bisa share scriptnya ?
mungkin saya bisa bantu :)
[SOLVED] Script Background For Victory Scene Empty
PostRe: [SOLVED] Script Background For Victory Scene
Sponsored content 




[SOLVED] Script Background For Victory Scene Vide
 

[SOLVED] Script Background For Victory Scene

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 2Pilih halaman : 1, 2  Next

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