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 | 
 

 Need Help, ade script yg belum selesai...

Topik sebelumnya Topik selanjutnya Go down 
Need Help, ade script yg belum selesai... Empty2012-09-04, 23:57
PostNeed Help, ade script yg belum selesai...
#1
m46nifico 
Newbie
Newbie
m46nifico

Level 5
Posts : 9
Thanked : 1
Engine : RMVX
Skill : Very Beginner
Type : Artist

Need Help, ade script yg belum selesai... Vide
Holla Amigo,
Gue ade masalah ame script yg udeh gw download:
Ammo Requirement by Ty/Synthesize...
ini script-nye yg asli:
http://pastebin.com/awjUMx59
Ini script-nye yg udeh diedit, dan jadi bermasalah:
http://pastebin.com/iFskUqR7

Pertame, nthu script kaga jalan sama sekali, terus gue dibantuin ame richter_h, script-nye udeh jalan, sesuai ape yg gue pengen...

Kedua, gue test lagi, dan ternyate setelah ammo abis pas lagi battle, muncul dialog box tulisannye: "Script 'Ammo Requirements - VX' line 187: NoMethodError occured. undefined method 'name' for nil:NilClass", tolong bantu, ini script bener-bener gue cari-cari, sejak gue kenal RPG Maker VX...

Ketiga, sekalian kalo ade yg bisa buatin script yg kasih pembatasan jumlah kepemilikan item buat item-item tertentu...
Need Help, ade script yg belum selesai... Empty2012-09-05, 07:50
PostRe: Need Help, ade script yg belum selesai...
#2
{col:0:255:0}Tester 
Newbie
Newbie
{col:0:255:0}Tester

Level 5
Posts : 18
Thanked : 0
Engine : Multi-Engine User
Skill : Skilled
Type : Scripter

Need Help, ade script yg belum selesai... Vide
m46nifico wrote:
Holla Amigo,
Gue ade masalah ame script yg udeh gw download:
Ammo Requirement by Ty/Synthesize...
ini script-nye yg asli:
http://pastebin.com/awjUMx59
Ini script-nye yg udeh diedit, dan jadi bermasalah:
http://pastebin.com/iFskUqR7

Pertame, nthu script kaga jalan sama sekali, terus gue dibantuin ame richter_h, script-nye udeh jalan, sesuai ape yg gue pengen...

Kedua, gue test lagi, dan ternyate setelah ammo abis pas lagi battle, muncul dialog box tulisannye: "Script 'Ammo Requirements - VX' line 187: NoMethodError occured. undefined method 'name' for nil:NilClass", tolong bantu, ini script bener-bener gue cari-cari, sejak gue kenal RPG Maker VX...

Ketiga, sekalian kalo ade yg bisa buatin script yg kasih pembatasan jumlah kepemilikan item buat item-item tertentu...

1. apa yang salah sama script aslinya ?
kamu hanya tidak mensettingnya, klo belum paham bahasa inggris.. kamu bisa pake google tranlate. ( my best friend )
2. perhatikan petunjuk script
Code:
# This sets how much ammo is needed for a specific weapon ID in the database
    # Syntax = {weapon_id => ammunition_cost}
    Weapons_ammo_cost = {4 => 1,
                        5 => 1}
hanya weapon dengan id yg di setting yang akan mempunyai ammo.
Code:

    # This assigns Item IDs in the database to a weapon ID
    # Syntax = {weapon_id => item_id}
    Weapons_ammo_id = {4 => [21,22],
                      5 => [22]}
misal kamu pake weapon dengan id 4 maka ammo yang di butuhkan adalah item dengan id 21 ataupun 22( default ).
kamu check di database.. adakah item dengan id 21 / 22 ?
jika tidak ada kamu bisa ganti angka itu / tambahkan item kamu di database.
3.
replace ini (line 149)
Code:
        for index in array_items
          # Check to see if the actor has enough ammo
          if $game_party.item_number($data_items[index]) >= gather_ammo_cost
            # Check cleared, gather item ID and terminate check loop
            gather_ammo_item = $data_items[index]
            break
          end
        end
ganti dengan ini :
Code:
        for index in array_items
          gather_ammo_item = $data_items[index]
          break if $game_party.item_number(gather_ammo_item) >= gather_ammo_cost
        end

.
Need Help, ade script yg belum selesai... Empty2012-09-06, 12:41
PostRe: Need Help, ade script yg belum selesai...
#3
m46nifico 
Newbie
Newbie
m46nifico

Level 5
Posts : 9
Thanked : 1
Engine : RMVX
Skill : Very Beginner
Type : Artist

Need Help, ade script yg belum selesai... Vide
@{col:0:255:0}Tester

kalo yg no. 1 dan 2, emang udeh gue ganti, jadi emang kaga ade masalah, ntar gue coba saran lu yg nomer 3, thanx y...


September 30, 2012
@{col:0:255:0}Tester

Thanx banget bro, script-nye sukses berat, kaga ade masalah lagi...
lancar makmur jaya...
Need Help, ade script yg belum selesai... Empty
PostRe: Need Help, ade script yg belum selesai...
#4
Sponsored content 




Need Help, ade script yg belum selesai... Vide
 

Need Help, ade script yg belum selesai...

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 1

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