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 | 
 

 [XP]Cook System.

Topik sebelumnya Topik selanjutnya Go down 
Pilih halaman : Previous  1, 2, 3  Next
[XP]Cook System. - Page 2 Empty2012-05-02, 16:09
Post[XP]Cook System.
#1
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
First topic message reminder :

Cook System.
Versi:-
Tipe: System Cook


Pengenalan

Liat aja di fiturnya, klo kurang jelas tanya aja. :D


Fitur


    Versi simple :
  • Masak

    Versi Medium
  • bisa taruh gambar. (otomatis menyesuaikan di tengah.)
    Versi Adv
  • Buat resep (sebaiknya buat item dengan sebaik mungkin biar ga aneh)
  • Bisa pake skill. (skill harus udah learned, if not gak kbuka skillnya)




Screenshots
Versi simple :
[XP]Cook System. - Page 2 Cook

Versi Medium
[XP]Cook System. - Page 2 Cook%20%282%29

Versi Adv
[XP]Cook System. - Page 2 Cook%20%282%29
[XP]Cook System. - Page 2 1c[XP]Cook System. - Page 2 2c

if use picture, taruh di folder Pictures
http://dl.dropbox.com/u/71716232/Fruit%20Salad.jpg
http://dl.dropbox.com/u/71716232/juice.png


Demo

nanti klo ada yg butuh.


Scripts
Versi simple :
http://dl.dropbox.com/u/71716232/cook_system_%C2%A9lukas.txt

Versi Medium
http://dl.dropbox.com/u/71716232/cook_system_1.1_%C2%A9lukas.txt

Versi Adv:
saran : klo mau pake script ini harus di pikirin mateng². siapin Item dengan baik.
karna di versi ini "player" ceritanya bisa buat menu baru, di wajibkan atur dulu resepnya se maksimal mungkin. biar ga banyak makanan gosongnya. :D
http://dl.dropbox.com/u/71716232/adv_cook_syst_%C2%A9lukas.txt


Credits


  • Lukas
  • LiTTleDRAgo better code :D, and for request tambah gambar. :D



Q : Cara mengurutkannya gimana ?
A : RESEP[urutan] . atur dari 0 up to 'you'

Q : kok cuman actor (set) yg bisa di pake skillnya.
A : maunya gimana ?


NB : BUG/ERROR harap lapor :D , soalnya tadi habis remove feature"nya.

Q : kok namanya simple cook system ?
A : karna tidak banyak fiturnya :P , silahkan modifikasi sendiri biar lebih banyak fiturnya.
show your creativity !


[XP]Cook System. - Page 2 88x31
Simple Cook System Version 1.1. by Lukas Cahyadi Gunawan is licensed under a Creative Commons Attribusi-NonKomersial 3.0 Unported License.


Terakhir diubah oleh Lukas tanggal 2012-06-22, 14:50, total 8 kali diubah

[XP]Cook System. - Page 2 Empty2012-05-08, 20:46
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior


Posts : 712
Awards:
[XP]Cook System. - Page 2 Vide
Lukas wrote:

:ngacay:
yg skill : itu bacanya, misal actor 1 dan 3 pnya skill sama. brati yg kpake skill actor 3. betul or not ?

hmm kalau itu mungkin mesti begini...

Code:

 (0...PERKAKAS_EQ[0].size).each {|i| skill = $data_skills[PERKAKAS_EQ[0][i]]
    (0..$game_party.actors.size).each {|a|
    next if skill.nil? || !$game_party.actors[a].skill_can_use?(skill.id)
    @data.push(skill) unless @data.any? {|s| s == skill} } }

anti duplicated skill
[XP]Cook System. - Page 2 Empty2012-05-08, 20:50
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
Lukas wrote:

:ngacay:
yg skill : itu bacanya, misal actor 1 dan 3 pnya skill sama. brati yg kpake skill actor 3. betul or not ?

hmm kalau itu mungkin mesti begini...

Code:

 (0...PERKAKAS_EQ[0].size).each {|i| skill = $data_skills[PERKAKAS_EQ[0][i]]
    (0..$game_party.actors.size).each {|a|
    next if skill.nil? || !$game_party.actors[a].skill_can_use?(skill.id)
    @data.push(skill) unless @data.any? {|s| s == skill} } }

anti duplicated skill
:twisted: :twisted: :twisted:
asik asikk. :D
[XP]Cook System. - Page 2 Empty2012-05-08, 21:39
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
gw koreksi skrip tadi ternyata ada kemungkinan glitch, nih yg benernya

Code:
PERKAKAS_EQ[0].each {|i| skill = $data_skills[i]
  $game_party.actors.each {|actor|
  @data << skill if actor.skill_can_use?(skill.id)}}
  @data = (@data | @data)



Terakhir diubah oleh LiTTleDRAgo tanggal 2012-05-08, 22:25, total 1 kali diubah
[XP]Cook System. - Page 2 Empty2012-05-08, 22:08
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
gw koreksi skrip tadi ternyata ada kemungkinan glitch, nih yg benernya

Code:
PERKAKAS_EQ[0].each {|i| skill = $data_skills[i]
  $game_party.actors.each {|actor|
  @data << skill if actor.skill_can_use?(skill.id)}}
  @data = (@data | @data).compact!

:shocked:
:ngacay:
arti << apaan ?
compat! buat ilangin nil kan ?
(@data | @data) isinya apaan ?
:D
[XP]Cook System. - Page 2 Empty2012-05-08, 22:31
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
<< anggap aja sama kyk push

kalo @data | @data itu ngeilangin duplikat, bisa juga dipake buat ngegabung array

misal

a = [a,a,a,b,b,c]
b = [b, c, d, e, a,a,a,c,b,f]

print a | a # -> [a,b,c]
print a | b # -> [a,b,c,d,e,f]

kalo pake any? yg tadi bisa glitch
btw ga usa pake compact! deh, toh ga ada yg nil kok
[XP]Cook System. - Page 2 Empty2012-05-08, 23:02
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
<< anggap aja sama kyk push

kalo @data | @data itu ngeilangin duplikat, bisa juga dipake buat ngegabung array

misal

a = [a,a,a,b,b,c]
b = [b, c, d, e, a,a,a,c,b,f]

print a | a # -> [a,b,c]
print a | b # -> [a,b,c,d,e,f]

kalo pake any? yg tadi bisa glitch
btw ga usa pake compact! deh, toh ga ada yg nil kok
wekekekek, tengkyu. cek PM om.
tanya :D
[XP]Cook System. - Page 2 Empty2012-05-09, 17:09
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
@ om drago, gak jd pke @data | @data, ak pke break :D

UPDATE : Vers 1.1
- item, bisa di set lebih dari satu.
item yg utama taruh di paling kiri. biar klo pake descripsi default gak aneh.
- ganti system pemakaian skill. ex : actor 1 dan 4 punya skill yg sama, maka yg sp nya berkurang yg actor 1.
[XP]Cook System. - Page 2 Empty2012-05-09, 17:35
PostRe: [XP]Cook System.
shikami 
Member 1000 Konsep
avatar

Level 5
Posts : 3744
Thanked : 31
Engine : Multi-Engine User
Skill : Beginner
Type : Developer
Awards:


[XP]Cook System. - Page 2 Vide
no update for VX version ? :fa:
ok. [XP]Cook System. - Page 2 1739321101
[XP]Cook System. - Page 2 Empty2012-05-10, 07:20
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
shikami wrote:
no update for VX version ? :fa:
ok. [XP]Cook System. - Page 2 1739321101
:shocked: wah asik ada yg pake. :D
nanti siang saya coba convert kak, kompi mw di pake ini. :D
[XP]Cook System. - Page 2 Empty2012-05-17, 10:32
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
komentarin lagi ah:


Terakhir diubah oleh LiTTleDRAgo tanggal 2012-05-18, 17:39, total 1 kali diubah
[XP]Cook System. - Page 2 Empty2012-05-17, 18:39
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
[XP]Cook System. - Page 2 2c

komentarin lagi ah:
maaf baru kebaca komennya :D
maksudnya setelah index trakhir, lngsung pindah yg aktif window satunya. atau pertama pilih bahan tekan enter pinndah ke peralatan ?

besok saya coba :D, paling seneng dah pkoknya klo om Drago komen headbang
makasih :D
[XP]Cook System. - Page 2 Empty2012-05-17, 19:01
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
yap setelah indeks terakhir langsung pindah ke window satunya

atau ngga, cancel / enter buat pindah window + confirm
kalo windownya lagi di bahan
---cancel = keluar
---enter = ke window alat

kalo windownya lagi di alat
---cancel = ke window bahan
---enter = confirm masak

nah masukin bahan / alatnya pake tombol atas, remove pake tombol bawah
mindahin indexnya pake tombol samping
[XP]Cook System. - Page 2 Empty2012-05-17, 19:58
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
yap setelah indeks terakhir langsung pindah ke window satunya

atau ngga, cancel / enter buat pindah window + confirm
kalo windownya lagi di bahan
---cancel = keluar
---enter = ke window alat

kalo windownya lagi di alat
---cancel = ke window bahan
---enter = confirm masak

nah masukin bahan / alatnya pake tombol atas, remove pake tombol bawah
mindahin indexnya pake tombol samping
mungkin lebih baik yg enter/cancel ?, daripada bingung nanti yg make.

[XP]Cook System. - Page 2 Empty2012-05-17, 20:10
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
yap, yg itu kyknya lebih sederhana dan lebih gampang dimengerti :)
[XP]Cook System. - Page 2 Empty2012-05-18, 17:23
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
yap, yg itu kyknya lebih sederhana dan lebih gampang dimengerti :)
[XP]Cook System. - Page 2 2c
jadinya gini ?
koreksiin lagi ya XD
makasih :D

update ;
-ubah tampilan 'create recipe'
-ubah tombol utk switch window. (smoga lebih friendly) :)
[XP]Cook System. - Page 2 Empty2012-05-18, 17:43
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
menurut gw tampilannya ga compact, jaraknya renggang banget jadi aneh ngelihatnya
[XP]Cook System. - Page 2 Empty2012-05-18, 17:50
PostRe: [XP]Cook System.
shikami 
Member 1000 Konsep
avatar

Level 5
Posts : 3744
Thanked : 31
Engine : Multi-Engine User
Skill : Beginner
Type : Developer
Awards:


[XP]Cook System. - Page 2 Vide
still. i prefer simple one than advance one =))
mungkin ini cocok buat game murni buat masak =))
but not my game :D
[XP]Cook System. - Page 2 Empty2012-05-18, 18:12
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
LiTTleDRAgo wrote:
menurut gw tampilannya ga compact, jaraknya renggang banget jadi aneh ngelihatnya
bagian yg mana ? atau semuanya :hammer:
apa masih belum umum tampilannya, klo bisa sih di nilai ke-umumannya aja XD
masalah bagus itu tergantung yg make mau di modif gmana. (padahal karna ga bisa buat yg bagus :hammer: )

misal gini :
[XP]Cook System. - Page 2 2cc

padahal rencana mau ngambil jurusan dkv :hammer:
shikami wrote:
still. i prefer simple one than advance one =))
mungkin ini cocok buat game murni buat masak =))
but not my game :D
apa karna confignya susah ? :|
daripada yg simple mending medium aja, ada gambarnya (imo : lebih menarik).
dan untuk yg adv saya kira ga harus buat game murni masak, tp cocok buat game petualangan yg menceritakan tentang kehidupan sehari². XD
[XP]Cook System. - Page 2 Empty2012-05-18, 20:05
PostRe: [XP]Cook System.
LiTTleDRAgo 
Senior
Senior
LiTTleDRAgo

Level 5
Posts : 712
Thanked : 27
Engine : RMXP
Skill : Skilled
Type : Scripter
Awards:
[XP]Cook System. - Page 2 Vide
bagian icon2 nya itu loh kk, terlalu lebar jaraknya kalo menurut gw
gw sih lebih prefer kalo jaraknya kyk gini

[XP]Cook System. - Page 2 248untitled
[XP]Cook System. - Page 2 Empty2012-06-22, 13:28
PostRe: [XP]Cook System.
Wahid 
Newbie
Newbie
Wahid

Level 5
Posts : 5
Thanked : 0
Engine : Multi-Engine User
Skill : Beginner
Type : Writer

[XP]Cook System. - Page 2 Vide
Stelah aq coba kok gc ada efek apapun?
tolong kasih sarannya donk
[XP]Cook System. - Page 2 Empty2012-06-22, 14:43
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
Muhammad Wahid Hamdi wrote:
Stelah aq coba kok gc ada efek apapun?
tolong kasih sarannya donk
maksudnya dengan gak ada efek ?
[XP]Cook System. - Page 2 Empty2012-06-22, 17:14
PostRe: [XP]Cook System.
Ameron 
♚ Leader of Ameron™ ♚
Ameron

Level 5
Posts : 440
Thanked : 3
Engine : RMVX
Skill : Intermediate
Type : Developer
Awards:
[XP]Cook System. - Page 2 Vide
Keren-keren and fun =)).itu itemnya bisa di konsum
setelah dibuat ya om?
[XP]Cook System. - Page 2 Empty2012-06-22, 17:24
PostRe: [XP]Cook System.
Lukas 
Senior
Senior
avatar

Level 5
Posts : 618
Thanked : 22

[XP]Cook System. - Page 2 Vide
rezkyameron wrote:
Keren-keren and fun =)).itu itemnya bisa di konsum
setelah dibuat ya om?
klo bisa, bisa
klo engga, engga
:lol:

tergantung database itemnya :v
[XP]Cook System. - Page 2 Empty2012-07-10, 15:58
PostRe: [XP]Cook System.
Dumabass99 
Newbie
Newbie
Dumabass99

Level 3
Posts : 44
Thanked : 0
Engine : RMXP
Skill : Beginner
Type : Writer

[XP]Cook System. - Page 2 Vide
wah kayak gini nih yang saya butuhkan.... :thumbup:
[XP]Cook System. - Page 2 Empty2012-07-28, 20:13
PostRe: [XP]Cook System.
arls 
Advance
Advance
arls

Level 5
Posts : 412
Thanked : 3
Engine : RMVX Ace
Skill : Very Beginner
Type : Mapper
Awards:
[XP]Cook System. - Page 2 Vide
saya perlu demo nya.
Wah, saya suka screen shoot kk lukas.walaupun buang tempat.
Punya om drago jga bgus
[XP]Cook System. - Page 2 Empty2012-08-02, 15:13
PostRe: [XP]Cook System.
rafakim 
Newbie
Newbie
rafakim

Level 5
Posts : 70
Thanked : 0
Engine : RMVX Ace
Skill : Beginner
Type : Databaser

[XP]Cook System. - Page 2 Vide
unytuk VX ada gak??? :-
[XP]Cook System. - Page 2 Empty
PostRe: [XP]Cook System.
Sponsored content 




[XP]Cook System. - Page 2 Vide
 

[XP]Cook System.

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 2 dari 3Pilih halaman : Previous  1, 2, 3  Next

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Scripts & Event Systems :: RMXP Scripts-