nekopia Novice
Posts : 170 Thanked : 5 Engine : RMVX
| Subyek: Modifikasi tampilan Battle windows 2009-12-27, 18:06 | |
| Ada yang bisa bantu? Saya butuh script untuk memodifikasi tampilan battle windows yang compatible dengan SBS Tankentai. Terima kasih. | |
|
Tamu Tamu
| Subyek: Re: Modifikasi tampilan Battle windows 2009-12-27, 18:12 | |
| - nekopia wrote:
- Ada yang bisa bantu? Saya butuh script untuk memodifikasi tampilan battle windows yang compatible dengan SBS Tankentai. Terima kasih.
VX apa XP ? Terus modif kayak gimana ? munculin wajah gt ? Munculin Wajah - Spoiler:
class Window_Base < Window def draw_face(face_name, face_index, x, y, size = 96, opacity = 255) bitmap = Cache.face(face_name) rect = Rect.new(0, 0, 0, 0) rect.x = face_index % 4 * 96 + (96 - size) / 2 rect.y = face_index / 4 * 96 + (96 - size) / 2 rect.width = size rect.height = size self.contents.blt(x, y, bitmap, rect,opacity) bitmap.dispose end def draw_actor_face(actor, x, y, size = 96, opacity = 255) draw_face(actor.face_name, actor.face_index, x, y, size, opacity) end end
class Window_BattleStatus < Window_Selectable def initialize super(0, 0, 416, 128) @column_max = 4 @spacing = 0 refresh self.active = false end def refresh self.contents.clear @item_max = $game_party.members.size for i in 0...@item_max draw_faces(i) end for i in 0...@item_max draw_item(i) end end def draw_faces(index) actor = $game_party.members[index] draw_actor_face(actor, actor.index * 96 + 2, 0, 96, 100) end def draw_item(index) self.contents.font.color = normal_color actor = $game_party.members[index] draw_actor_name(actor, index * 96 + 2, 0) draw_actor_state(actor, index * 96 + 2, 18, 48) draw_actor_hp(actor, index * 96 + 2, 56, 86) draw_actor_mp(actor, index * 96 + 2, 74, 86) end end
|
|
nekopia Novice
Posts : 170 Thanked : 5 Engine : RMVX
| Subyek: Re: Modifikasi tampilan Battle windows 2009-12-27, 18:24 | |
| Tentu saja VX, kamar threadnya bener kan? (takut salah gw) Hm...Kira-kira mirip tampilan battle Final Fantasy IX. - Spoiler:
| |
|
Tamu Tamu
| Subyek: Re: Modifikasi tampilan Battle windows 2009-12-27, 20:39 | |
| cari aja di sini
http://www.rpgmakervx.net/index.php?showtopic=4241#10 |
|
nekopia Novice
Posts : 170 Thanked : 5 Engine : RMVX
| Subyek: Re: Modifikasi tampilan Battle windows 2009-12-27, 20:47 | |
| Saya sudah korek-korek forum lain (termasuk diatas). Belom juga ketemu __________________________SOLVED______________________________ Thanks : -Shikami solving : http://www.rpgmakervx.net/index.php?showtopic=6292 | |
|
wltr3565 Senior
Posts : 870 Thanked : 28 Engine : RMVX Skill : Skilled Type : Scripter
Trophies
Awards:
| Subyek: Re: Modifikasi tampilan Battle windows 2009-12-28, 14:53 | |
| Itu perlu modifikasi sendiri... Kucoba, tapi jangan terlalu berharap. | |
|
nekopia Novice
Posts : 170 Thanked : 5 Engine : RMVX
| Subyek: Re: Modifikasi tampilan Battle windows 2009-12-28, 15:15 | |
| Sebenernya dah dapet, tapi klo bung wltr3565 punya cara lain, it's OK. Saya senang Tq, mau bantu<----sedikit berharap | |
|
Sponsored content
| Subyek: Re: Modifikasi tampilan Battle windows | |
| |
|