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.

 

 [Help] Ada yang bisa fix problem saya?

Go down 
4 posters
PengirimMessage
G-Langz
Newbie
Newbie
G-Langz


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

[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-09, 08:56

Langsung saja, saya punya masalah sama YEA Victory Aftermath nih, tanpa panjang-panjang, ini ss-nya.
[Help] Ada yang bisa fix problem saya? Bug_ye12

Ini terjadi kalo pake script sideview. Tapi, jika script sideview dihapus, jadi normal lagi.
Mungkin, kalo pake script sideview, window drop jadi munculnya ngeduluin window level up. Alhasil, jadi numpuk...

Susunan script jika berpengaruh.
[Help] Ada yang bisa fix problem saya? Penemp10

+Animasi pas battle jadi ada 2.

Mohon pencerahannya.
Makasih :)


Terakhir diubah oleh G-Langz tanggal 2012-12-09, 10:17, total 1 kali diubah
Kembali Ke Atas Go down
http://g-langzstudio.blogspot.com
wltr3565
Senior
Senior
wltr3565


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

Trophies
Awards:

[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-09, 09:12

Tankentai ya? Kalo ada yang yanfly punya timpa aku gak heran. Boleh link scriptnya yanfly?
Kembali Ke Atas Go down
G-Langz
Newbie
Newbie
G-Langz


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

[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-09, 10:18

Saya ngambil dari sini
http://yanflychannel.wordpress.com/rmvxa/

Sideviewnya
http://rpgex.sakura.ne.jp/home/material/sv_ace.html


Terakhir diubah oleh G-Langz tanggal 2012-12-09, 11:34, total 1 kali diubah
Kembali Ke Atas Go down
http://g-langzstudio.blogspot.com
Deenos
Advance
Advance
Deenos


Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser

Trophies
Awards:
[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-09, 11:01

itu memang dari sononya...
tinggal edit sana sini beres :v
Kembali Ke Atas Go down
http://deempty.blogspot.com
G-Langz
Newbie
Newbie
G-Langz


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

[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-09, 11:46

Jelasnya? :swt:
Tapi, kalo tankentai nya dihapus jadi normal lagi.. Apa ada compatibility-nya?
Kembali Ke Atas Go down
http://g-langzstudio.blogspot.com
EmperorAlan
Senior
Senior
EmperorAlan


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

[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-09, 19:00

W lupa link e, tapi setahu w dulu w pernah lihat snippet buat nge-fix probem anda. :v
Well, w coba cari-cari aja, tapi jangan harap w dapat dengan mudah :tf:

Code:

# Add function for temporarily switching a window's current drawing font.
class Font
  def use( window )
        old_font = window.contents.font.dup
        window.contents.font = self
        yield
        window.contents.font = old_font 
  end
end

# Fixes the arrow character (→) used in places in the UI
# since custom font does not support that character
module Mez
  module ArrowFix
        FONT = Font.new(["VL Gothic", "Arial"])  # This is the font used for the arrows, checked in order.
  end
end

# For Actor Equip Window
class Window_EquipStatus
  alias mez_wes_dra draw_right_arrow
  def draw_right_arrow(x, y)
        Mez::ArrowFix::FONT.use(self) do
          mez_wes_dra(x, y)
        end
  end
end

# For Yanfly Victory Aftermath - remove if not using that script
class Window_VictoryLevelUp
  alias mez_wvlu_da draw_arrows
  def draw_arrows
        Mez::ArrowFix::FONT.use(self) do
          mez_wvlu_da
        end
  end
end

Thnx
Kembali Ke Atas Go down
G-Langz
Newbie
Newbie
G-Langz


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

[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty2012-12-10, 13:33

^Thanks ya..
Problem fixed
Kembali Ke Atas Go down
http://g-langzstudio.blogspot.com
Sponsored content





[Help] Ada yang bisa fix problem saya? Empty
PostSubyek: Re: [Help] Ada yang bisa fix problem saya?   [Help] Ada yang bisa fix problem saya? Empty

Kembali Ke Atas Go down
 
[Help] Ada yang bisa fix problem saya?
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» Bisa Tolongin Saya !.
» Kenapa saya nggak bisa test game?
» Yang mau Ajarin saya
» [Req] Script yang saya perlukan :D
» Tolongin saya kk senior yang handal

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Engines :: RMVX Ace :: RMVX Ace Archive-
Navigasi: