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.

 

 [SOLVED] Manggil simple scene

Go down 
5 posters
PengirimMessage
ashm
Veteran
Veteran
ashm


Level 5
Posts : 1131
Thanked : 8
Engine : RMVX Ace
Skill : Intermediate
Type : Event Designer

Trophies
Awards:

[SOLVED] Manggil simple scene Empty
PostSubyek: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 12:19

Di trit sebelumnya https://rmid.forumotion.net/t7271-askcara-buat-map
Ane ada kesulitan dalam manggil nya.

Ane request donk, sebuah $Scene = Scene_xxx.New
jadi... sebuah snipet yang gunanya memanggil scene yang berisi pict.
Terlalu simple ya...

Ane tambahin request nya biar rada menantang deh =))
1. Kalo pict nya lebih besar, ada fitur scroll
2. Kalo player teken cancel, kembali nya bisa di atur > Scene Map ato scene Menu
3. jangan lupa bentuknya Scene, soalnya biar bisa di tambah di custom menu command

Onegai :sembah:
Kembali Ke Atas Go down
LowlingLife
Administrator
Administrator
LowlingLife


Kosong
Posts : 2000
Thanked : 25
Engine : Multi-Engine User

Trophies
Awards:

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 15:37

@ om ashm : http://rpgawakening.blogspot.com/2012/12/picture-viewer.html
Kembali Ke Atas Go down
Auditore
Newbie
Newbie
Auditore


Level 5
Posts : 70
Thanked : 1
Engine : RMVX
Skill : Beginner
Type : Developer

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 17:36

Ikut nyemak + nanya ya.. XD
Quote :
@ om ashm : http://rpgawakening.blogspot.com/2012/12/picture-viewer.html
Cara gunainnya gimana master?? gambarnya itu ditaruh dimana dulu??
Kembali Ke Atas Go down
ashm
Veteran
Veteran
ashm


Level 5
Posts : 1131
Thanked : 8
Engine : RMVX Ace
Skill : Intermediate
Type : Event Designer

Trophies
Awards:

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 20:08

@Loli : woh keren.
Tapi ada yang nge ganjel, hehe XD
Bisa di perhalus gak scroll nya ?
Terus kasih Window help diatas, gunanya membantu player dapet info (ntah nama gambar, ato bisa discroll nya ato tidak)
Maksud BG_PIC apa ya ? Ane ubah nama file ke yang lain, gak ada perubahan.

@Atas ane : Taro gambar di folder Pict.
Terus ini di manggil gambar nya lewat Event command > Script.
Ini gak pake show pict coz bisa return dengan manual.
Kembali Ke Atas Go down
Auditore
Newbie
Newbie
Auditore


Level 5
Posts : 70
Thanked : 1
Engine : RMVX
Skill : Beginner
Type : Developer

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 22:09

Quote :
@Atas ane : Taro gambar di folder Pict.
Terus ini di manggil gambar nya lewat Event command > Script.
Ini gak pake show pict coz bisa return dengan manual.

Folder pict taruh dimana? :hmm:
Kembali Ke Atas Go down
Radis3D
Sang Iblis
Radis3D


Level 5
Posts : 755
Thanked : 3
Engine : RMVX Ace
Skill : Very Beginner
Type : Writer

Trophies
Awards:
[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 22:58

acodex wrote:
Quote :
@Atas ane : Taro gambar di folder Pict.
Terus ini di manggil gambar nya lewat Event command > Script.
Ini gak pake show pict coz bisa return dengan manual.

Folder pict taruh dimana? :hmm:
dilihat dari script gambar di taruh di
graphics/pictures

:o
Kembali Ke Atas Go down
larkuzo
Advance
Advance
larkuzo


Level 5
Posts : 445
Thanked : 12
Engine : RMXP
Skill : Beginner
Type : Event Designer

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-19, 23:28

@ashm
Biar mulus, coba ganti ini :
Code:

if Input.repeat?
(Input::RIGHT) && @scroll_x
      @x = (@picture.width/32)
.abs * 32
      @picture.x -= 32 unless @
picture.x == -(@x-544)
    elsif Input.repeat?
(Input::LEFT) && @scroll_x
      @picture.x += 32 unless @
picture.x == 0
    elsif Input.repeat?
(Input::DOWN) && @scroll_y
      @y = (@picture.height/32)
.abs * 32
      @picture.y -= 32 unless @
picture.y == -(@y-416)
    elsif Input.repeat?
(Input::UP) && @scroll_y
      @picture.y += 32 unless @
picture.y == 0
jadi :
Code:

if Input.press?
(Input::RIGHT) && @scroll_x
      @x = (@picture.width/32)
.abs * 32
      @picture.x -= 1 unless @
picture.x == -(@x-544)
    elsif Input.press?
(Input::LEFT) && @scroll_x
      @picture.x += 1 unless @
picture.x == 0
    elsif Input.press?
(Input::DOWN) && @scroll_y
      @y = (@picture.height/32)
.abs * 32
      @picture.y -= 1 unless @
picture.y == -(@y-416)
    elsif Input.press?
(Input::UP) && @scroll_y
      @picture.y += 1 unless @
picture.y == 0
    end

Untested :tf:
Kembali Ke Atas Go down
http://fsfsource.blogspot.com
LowlingLife
Administrator
Administrator
LowlingLife


Kosong
Posts : 2000
Thanked : 25
Engine : Multi-Engine User

Trophies
Awards:

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-20, 00:06

@ om ashm : BG_PIC itu biar kalo misalkan gambar yang ditampilkan lebih kecil dari screen size, kan ada tempat yang kosong. Nah tempat kosong itu bisa diisi dengan map atau dengan picture. BG_PIC itu nama picturenya. Anyway, kalo misalkan gambar yang ditampilkan lebih besar dari screen size dan gak ada perubahan, emang pantes karena gak kelihatan.

@om acodex : Taruh di folder Pictures. Instruksinya sudah saya tambahkan biar mencegah pertanyaan seperti ini.

@om Iarkuzo : Bisa kayak gitu. Tapi kayaknya kalo 1 terlalu lama pencetnya.

Anyway, script updated ke version 1.1. Linknya tetap sama. Bedanya ada penambahan fitur scrolling speed sama ada description window.
Kembali Ke Atas Go down
Auditore
Newbie
Newbie
Auditore


Level 5
Posts : 70
Thanked : 1
Engine : RMVX
Skill : Beginner
Type : Developer

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-20, 07:49

@master lowlinglife and @Master ashm
Thanks om udh bisa XD
sory" ternyata ane keliru masukin IDnya XD
Kembali Ke Atas Go down
ashm
Veteran
Veteran
ashm


Level 5
Posts : 1131
Thanked : 8
Engine : RMVX Ace
Skill : Intermediate
Type : Event Designer

Trophies
Awards:

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-20, 13:04

Oh jadi @picture.x += 1 itu ya dirubah2 nya.
Ane kira yang 32 =))

Atas ane solved, ane juga solved.

Boleh di lock bang.
Kembali Ke Atas Go down
LowlingLife
Administrator
Administrator
LowlingLife


Kosong
Posts : 2000
Thanked : 25
Engine : Multi-Engine User

Trophies
Awards:

[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty2012-12-20, 13:23

Thread Solved and Locked.
Kembali Ke Atas Go down
Sponsored content





[SOLVED] Manggil simple scene Empty
PostSubyek: Re: [SOLVED] Manggil simple scene   [SOLVED] Manggil simple scene Empty

Kembali Ke Atas Go down
 
[SOLVED] Manggil simple scene
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» [SOLVED] Script Background For Victory Scene
» [SOLVED] just a simple question
» [SOLVED] Direct to Inventory Simple Script
» manggil script pake switch operation
» [ASK]gimana caranya manggil menu item tanpa balik ke menu?

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Scripts & Event Systems :: RMVX Scripts :: RGSS2 Request :: RGSS2 Request Archive-
Navigasi: