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.

 

 tanya tentang Video for RPGMVX

Go down 
3 posters
PengirimMessage
fianzcool
Newbie
Newbie
fianzcool


Level 5
Posts : 34
Thanked : 0
Engine : RMVX
Skill : Beginner

tanya tentang Video for RPGMVX Empty
PostSubyek: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-21, 23:52

agan2, ane mau minta tolong nih sama yang senior2,

buat rpg maker vx bisa di beri video atau gak( video sebelum masuk title atau kalau event tertentu misalnya )...???? :(

kalau bisa, tolong ajarin dong gan :D
Kembali Ke Atas Go down
http://www.meitanteifianz.blogspot.com
marjoni01
Senior
Senior
marjoni01


Level 5
Posts : 971
Thanked : 5
Engine : RMVX Ace
Skill : Intermediate
Type : Developer

tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-22, 03:58

@^
Kalau misalnya Video sih nggak rasanya :hmm:
Kecuali kalau kamu pindah ke RPG Maker VX Ace :hammer:
Anyway, akalin aja pake' picture-picture :-
Gunakan splash screen yang bisa memuat berapa gambarpun :lol:
Terus kasih picturenya biar entar keliatan seperti video..
But still..Pasti kerasa kurang :lol:
Kembali Ke Atas Go down
fianzcool
Newbie
Newbie
fianzcool


Level 5
Posts : 34
Thanked : 0
Engine : RMVX
Skill : Beginner

tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-22, 18:24

thx gan infonya :D

loh kalau munculin gambar sebelum masuk menu title itu bisa gan...??? :hmm:

kalau bisa caranya gimana gan...???
Kembali Ke Atas Go down
http://www.meitanteifianz.blogspot.com
EmperorAlan
Senior
Senior
EmperorAlan


Level 5
Posts : 622
Thanked : 5
Engine : RMVX Ace
Skill : Very Beginner
Type : Developer

tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-22, 18:36

http://rpgmaker.net/scripts/199/

Thnx.
Kembali Ke Atas Go down
fianzcool
Newbie
Newbie
fianzcool


Level 5
Posts : 34
Thanked : 0
Engine : RMVX
Skill : Beginner

tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-22, 19:38

gan ane nemu script buat splash screen kayak gini
[spoiler] class Scene_Splash < Scene_Base

include JetSplashScreen

def start
if ENABLE_HARDER_CONFIG
do_super_splash
else
create_sprites
create_sounds
do_splash
end
end

def terminate
return if @sprites.nil?
for sprite in @sprites
sprite.dispose
sprite = nil
end
end

def create_sprites
@sprites = []
for pic in SPLASH_PICTURES
f = Cache.picture(pic)
g = Sprite_Base.new
g.bitmap = f
g.visible = false
@sprites.push(g)
end
end

def create_sounds
@sounds = []
for sound in SPLASH_SOUNDS
@sounds.push(RPG::SE.new(sound, 80, 100))
end
end

def do_splash
Graphics.transition
Graphics.fadeout(60)
for sprite in @sprites
sprite.visible = true
Graphics.fadein(60)
begin
@sounds[@sprites.index(sprite)].play
rescue
end
180.times do
Input.update if SPLASH_SKIPPABLE
if Input.trigger?(SPLASH_SKIP_BUTTON)
$scene = Scene_Title.new
break
end
Graphics.wait(1)
end
Graphics.fadeout(60)
sprite.visible = false
end
$jet6667876666765 = true
$scene = Scene_Title.new
end

def do_super_splash
Graphics.transition
Graphics.fadeout(1)
for sprite in SUPER_SPLASH.keys
q = Sprite_Base.new
q.bitmap = Cache.picture(sprite)
Graphics.fadein(SUPER_SPLASH[sprite][2])
begin
RPG::SE.new(SUPER_SPLASH[sprite][0], 80, 100).play
rescue
end
anim = load_data("Data/Animations.rvdata")[SUPER_SPLASH[sprite][1]]
if SUPER_SPLASH[sprite][1] != 0
q.start_animation(anim)
end
SUPER_SPLASH[sprite][4].times do
Input.update if SPLASH_SKIPPABLE
if Input.trigger?(SPLASH_SKIP_BUTTON)
$scene = Scene_Title.new
break
end
q.update
Graphics.update
end
Graphics.fadeout(SUPER_SPLASH[sprite][3])
end
$jet6667876666765 = true
$scene = Scene_Title.new
end
end

class << Scene_Title

alias jet6732_new new unless $@
def new(*args)
$jet6667876666765 = false if $jet6667876666765.nil?
if $jet6667876666765 or JetSplashScreen::SPLASH_DISABLED_IN_DEBUG && $TEST
jet6732_new(*args)
else
$scene = Scene_Splash.new
end
end
end [spoiler]

ane bingung sama nih script tolong diajarin dong caranya satu persatu :( :sembah:
Kembali Ke Atas Go down
http://www.meitanteifianz.blogspot.com
EmperorAlan
Senior
Senior
EmperorAlan


Level 5
Posts : 622
Thanked : 5
Engine : RMVX Ace
Skill : Very Beginner
Type : Developer

tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-22, 20:02

Jangan. post. script-nya!!! :kesel:
Lagipula, script-nya itu kepotong.

Ini baru benar: http://pastebin.com/raw.php?i=Uij8GuxB
Jangan lupa kredit-nya buat Jet. Dan untuk cara pakenya,
Kamu tinggal ganti aja, pada bagian Example 1, Example 2, sesuai nama gambarmu di Graphics/Picture. Ingat ukuran gambarnya harus 544x416.
Kembali Ke Atas Go down
fianzcool
Newbie
Newbie
fianzcool


Level 5
Posts : 34
Thanked : 0
Engine : RMVX
Skill : Beginner

tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty2012-07-22, 20:10

maaf gan :sembah:
ane kagak tau soalnya
Kembali Ke Atas Go down
http://www.meitanteifianz.blogspot.com
Sponsored content





tanya tentang Video for RPGMVX Empty
PostSubyek: Re: tanya tentang Video for RPGMVX   tanya tentang Video for RPGMVX Empty

Kembali Ke Atas Go down
 
tanya tentang Video for RPGMVX
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» tanya tentang XAS (VX)
» Tanya tentang nih ABS
» Mau Tanya tentang Sprite
» tanya tentang control di rpgm vx
» Mau Tanya Tentang Rming

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Creative Commons :: Tools & Utilities-
Navigasi: