seobaby Newbie
Posts : 25 Thanked : 0 Engine : RMVX Skill : Beginner Type : Event Designer
| Subyek: (solved & closed) Pictures Overlap Message 2013-02-15, 01:32 | |
| senpai2 mau tanya nih ane kalo mau nampilin gambar chara pas ngomong d rmvx ace.. kek begini.. pakai script Pictures Overlap Message dari rmvx bukan y? ini script nya.. - Spoiler:
]quote]#=============================================================== # ● [VX] ◦ Pictures Overlap Message ◦ □ #-------------------------------------------------------------- # ◦ by Malexos # ◦ Requested by Celianna # ◦ Original script by Woratana # ◦ Version: 1.0 #=================================================================
class Spriteset_Map
#================================================================= # ++ Setup Part #----------------------------------------------------------------- FIRST_PICBELOW_ID = 19 # First ID of picture that will show above message window LAST_PICBELOW_ID = 20 # Last ID of picture that will show above message window @viewport4 = Viewport.new(0, 0, 544, 416) @viewport4.z = 201
# For example, if you set FIRST to 10 and LAST to 15, picture ID 10-15 # will show above the message window. #=================================================================
alias malexos_abovemsg_sprsetmap_crepic create_pictures
#-------------------------------------------------------------------------- # * Create Picture Sprite #-------------------------------------------------------------------------- def create_pictures(*args) malexos_abovemsg_sprsetmap_crepic(*args) for pic_id in FIRST_PICBELOW_ID..LAST_PICBELOW_ID @picture_sprites[pic_id - 1].dispose # Create picture above message window in viewport4, so it can show just #above the message @picture_sprites[pic_id - 1] = Sprite_Picture.new(@viewport4, $game_map.screen.pictures[pic_id]) end end end
class Sprite_Picture < Sprite alias malexos_abovemsg_sprpic_upd update
#-------------------------------------------------------------------------- # * Frame Update #-------------------------------------------------------------------------- def update(*args) malexos_abovemsg_sprpic_upd(*args) self.z = 201 if @picture.number >= Spriteset_Map::FIRST_PICBELOW_ID and @picture.number <= Spriteset_Map::LAST_PICBELOW_ID end end[/quote]
koq tempat ku gk bisa y ? ada solusi ato saran? maap kalo salah tempat atau bagaimana maklum masih noob [b]
Terakhir diubah oleh seobaby tanggal 2013-02-15, 08:37, total 1 kali diubah | |
|
Kuru Senior
Posts : 985 Thanked : 9 Engine : RMVX Skill : Beginner Type : Writer
Trophies
Awards:
| Subyek: Re: (solved & closed) Pictures Overlap Message 2013-02-15, 03:45 | |
| Itu-kan buat RMVX, bukan RMVXA http://forums.rpgmakerweb.com/index.php?/topic/8084-pictures-overlap-message-for-vxa/ Maaf kalo kurang membantu
Terakhir diubah oleh Kuru tanggal 2013-02-15, 04:00, total 1 kali diubah | |
|
Lina' Newbie
Posts : 55 Thanked : 2 Engine : RMVX Ace Skill : Very Beginner
| Subyek: Re: (solved & closed) Pictures Overlap Message 2013-02-15, 03:52 | |
| Kekna untuk bikin dialog seperti itu ga perlu pake script bisa deh, cukup memainkan event tinggal show picture 2x picture 1 buat tempat dialog boxnya picture 2 buat gambat character ama emotionnya, biar mudah bisa dibuat common eventnya lebih dahulu kemudian tinggal set transparant untuk background show textnya sehabis dialog tinggal erase picture 1 ama 2. Kekna di divisionheaven ada tutorial buat bikin dialog kek gitu deh ,emotion manipulation magic namanya klo ga salah | |
|
seobaby Newbie
Posts : 25 Thanked : 0 Engine : RMVX Skill : Beginner Type : Event Designer
| Subyek: Re: (solved & closed) Pictures Overlap Message 2013-02-15, 08:36 | |
| - Kuru wrote:
- Itu-kan buat RMVX, bukan RMVXA
http://forums.rpgmakerweb.com/index.php?/topic/8084-pictures-overlap-message-for-vxa/
Maaf kalo kurang membantu sudah d coba ternyata gk cocok script nya. .. . - Lina' wrote:
- Kekna untuk bikin dialog seperti itu ga perlu pake script bisa deh, cukup memainkan event
tinggal show picture 2x picture 1 buat tempat dialog boxnya picture 2 buat gambat character ama emotionnya, biar mudah bisa dibuat common eventnya lebih dahulu kemudian tinggal set transparant untuk background show textnya sehabis dialog tinggal erase picture 1 ama 2. Kekna di divisionheaven ada tutorial buat bikin dialog kek gitu deh ,emotion manipulation magic namanya klo ga salah ia tadi setelah begadang nemu itu emp udah cocok ma script nya... aseek ada rmer jogja buat game bareng yuk bro kalo mau PM y... btw thx all now d' problem is SOLVED | |
|
Sponsored content
| Subyek: Re: (solved & closed) Pictures Overlap Message | |
| |
|