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.

 

 Tolong (gk tau judul yg pas)

Go down 
3 posters
PengirimMessage
Roronoa_Zojo
Senior
Senior
Roronoa_Zojo


Level 5
Posts : 833
Thanked : 3
Engine : Multi-Engine User
Skill : Skilled
Type : Mapper

Tolong (gk tau judul yg pas) Empty
PostSubyek: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 15:18

jadi gini. Saya pengin Tamu Otak Atik ni script (buat yg bisa). > http://rmrk.net/index.php?topic=35250.0

nah, mksudnya, itu kan klo ke Skill, Equip dsb (yg milih actor) cuma 4 bisa dibuat 8 gk. gk usah party changer cuma dibuat 8...
sebelumnya thx buat Tamu krn udah baca ni thread. apalagi klo bantuin. ane kasih cendol deh XD
Kembali Ke Atas Go down
http://www.pagersoft.blogspot.com
SerpentZ
Advance
Advance
SerpentZ


Level 5
Posts : 425
Thanked : 2
Engine : Multi-Engine User
Skill : Intermediate
Type : Mapper

Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 16:08

Kok Aku DiSummon??? :shocked:
Saya Bukan Tipe Scripter :kabur:
Ane Bukan Scripter:
:thumbup:

EDIT :
Apa lagi aku bukan pengguna XP :shocked:
Maaf ya :sembah:

EDIT Tambahan :
PERTAMAXX :banana: :banana:


Terakhir diubah oleh SerpentZ tanggal 2011-08-10, 16:38, total 1 kali diubah
Kembali Ke Atas Go down
http://squarepentzblog.blogspot.com
Roronoa_Zojo
Senior
Senior
Roronoa_Zojo


Level 5
Posts : 833
Thanked : 3
Engine : Multi-Engine User
Skill : Skilled
Type : Mapper

Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 16:25

maaf, q pke Vario mungkin Tamu bisa? < Vario lagi "\/:ngacay2:
Kembali Ke Atas Go down
http://www.pagersoft.blogspot.com
SerpentZ
Advance
Advance
SerpentZ


Level 5
Posts : 425
Thanked : 2
Engine : Multi-Engine User
Skill : Intermediate
Type : Mapper

Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 16:30

Vario?? Perasaan aku baru denger.
Maaf Saya tidak bisa bantu :

  • Saya Bukan pengguna XP
  • Saya bukan Scripter
  • Saya Tidak tau apa itu Vario XD

Sekali lagi Maaf :sembah:
Kembali Ke Atas Go down
http://squarepentzblog.blogspot.com
Roronoa_Zojo
Senior
Senior
Roronoa_Zojo


Level 5
Posts : 833
Thanked : 3
Engine : Multi-Engine User
Skill : Skilled
Type : Mapper

Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 16:35

klo gk tau Vario, Coba Cek Istilah2 RMID. Vario itu tulisan USERNAME, yang muncuk tergantung USERNAME yg melihat, klo q yg liat tulisannya Roronoa_Zojo, klo SerpentZ yang liat tulisannya SerpentZ
jadi OOT udah ah
Kembali Ke Atas Go down
http://www.pagersoft.blogspot.com
bungatepijalan
Moe Princess
bungatepijalan


Level 5
Posts : 1487
Thanked : 30
Engine : Multi-Engine User
Skill : Intermediate
Type : Developer

Trophies
Awards:
Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 16:36

Salah kamar gan, script itu buat XP, bukan VX :ngacay2:

Sori pusing :FU:
tp setidaknya sbg langkah awal, Game_Party dimodif spt berikut ini (sisipkan diatas 'Main')
Game_Party
Code:
class Game_Party
  #--------------------------------------------------------------------------
  # * Battle Test Party Setup
  #--------------------------------------------------------------------------
  def setup_battle_test_members
    @actors = []
    for battler in $data_system.test_battlers
      actor = $game_actors[battler.actor_id]
      actor.level = battler.level
      gain_weapon(battler.weapon_id, 1)
      gain_armor(battler.armor1_id, 1)
      gain_armor(battler.armor2_id, 1)
      gain_armor(battler.armor3_id, 1)
      gain_armor(battler.armor4_id, 1)
      actor.equip(0, battler.weapon_id)
      actor.equip(1, battler.armor1_id)
      actor.equip(2, battler.armor2_id)
      actor.equip(3, battler.armor3_id)
      actor.equip(4, battler.armor4_id)
      actor.recover_all
      @actors.push(actor)
    end
    @items = {}
    for i in 1...$data_items.size
      if $data_items[i].name != ""
        occasion = $data_items[i].occasion
        if occasion == 0 or occasion == 1
          @items[i] = 99
        end
      end
    end
  end
  #--------------------------------------------------------------------------
  # * Add an Actor
  #    actor_id : actor ID
  #--------------------------------------------------------------------------
  def add_actor(actor_id)
    # Get actor
    actor = $game_actors[actor_id]
    # If the party has less than 4 members and this actor is not in the party
    if @actors.size < 4 and not @actors.include?(actor)
      # Add actor
      @actors.push(actor)
      # Refresh player
      $game_player.refresh
    end
  end
end
selanjutnya Window daftar party hrs dirombak deh biar bisa 8 :FU:
Spoiler:
Kembali Ke Atas Go down
http://miyuki-maker.blogspot.co.id/
Roronoa_Zojo
Senior
Senior
Roronoa_Zojo


Level 5
Posts : 833
Thanked : 3
Engine : Multi-Engine User
Skill : Skilled
Type : Mapper

Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty2011-08-10, 16:51

maaf Salah Klik RGSS Script Support :kabur:
q report dlo :kabur: apa udah di report ?
btw ni scriptnya q gk bisa rombak
http://docs.google.com/View?id=dgb5wg25_7dkg34qhh
Kembali Ke Atas Go down
http://www.pagersoft.blogspot.com
Sponsored content





Tolong (gk tau judul yg pas) Empty
PostSubyek: Re: Tolong (gk tau judul yg pas)   Tolong (gk tau judul yg pas) Empty

Kembali Ke Atas Go down
 
Tolong (gk tau judul yg pas)
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» Judul Instrumen?
» Belum ada judul
» Hi_Ho [judul sementara]
» Membuat judul pada game
» [Tips] Memberi judul dalam game

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