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 | 
 

 tanya tentang Video for RPGMVX

Topik sebelumnya Topik selanjutnya Go down 
tanya tentang Video for RPGMVX Empty2012-07-21, 23:52
Posttanya tentang Video for RPGMVX
#1
fianzcool 
Newbie
Newbie
fianzcool

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

tanya tentang Video for RPGMVX Vide
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
tanya tentang Video for RPGMVX Empty2012-07-22, 03:58
PostRe: tanya tentang Video for RPGMVX
#2
marjoni01 
Senior
Senior
marjoni01

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

tanya tentang Video for RPGMVX Vide
@^
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:
tanya tentang Video for RPGMVX Empty2012-07-22, 18:24
PostRe: tanya tentang Video for RPGMVX
#3
fianzcool 
Newbie
Newbie
fianzcool

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

tanya tentang Video for RPGMVX Vide
thx gan infonya :D

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

kalau bisa caranya gimana gan...???
tanya tentang Video for RPGMVX Empty2012-07-22, 18:36
PostRe: tanya tentang Video for RPGMVX
#4
EmperorAlan 
Senior
Senior
EmperorAlan

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

tanya tentang Video for RPGMVX Vide
http://rpgmaker.net/scripts/199/

Thnx.
tanya tentang Video for RPGMVX Empty2012-07-22, 19:38
PostRe: tanya tentang Video for RPGMVX
#5
fianzcool 
Newbie
Newbie
fianzcool

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

tanya tentang Video for RPGMVX Vide
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:
tanya tentang Video for RPGMVX Empty2012-07-22, 20:02
PostRe: tanya tentang Video for RPGMVX
#6
EmperorAlan 
Senior
Senior
EmperorAlan

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

tanya tentang Video for RPGMVX Vide
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.
tanya tentang Video for RPGMVX Empty2012-07-22, 20:10
PostRe: tanya tentang Video for RPGMVX
#7
fianzcool 
Newbie
Newbie
fianzcool

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

tanya tentang Video for RPGMVX Vide
maaf gan :sembah:
ane kagak tau soalnya
tanya tentang Video for RPGMVX Empty
PostRe: tanya tentang Video for RPGMVX
#8
Sponsored content 




tanya tentang Video for RPGMVX Vide
 

tanya tentang Video for RPGMVX

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 1

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