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 | 
 

  [SOLVED] how to highlight the map's name

Topik sebelumnya Topik selanjutnya Go down 
 [SOLVED] how to highlight the map's name Empty2012-02-28, 15:02
Post [SOLVED] how to highlight the map's name
#1
barlieuy 
Novice
Novice
barlieuy

Level 5
Posts : 139
Thanked : 1
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

 [SOLVED] how to highlight the map's name Vide
kk kk senior (dalam hal rpg maker) yang baik dan pada jago, sebelumnya maaf klo ini termasuk repost/junk, soalnya nyari2 ga ktemu (gatau keyword nya).

mau nanya klo cara menampilkan nama kota/map/dungeon pokonya semua area di dalem game yg biasanya ditampilin di pojok kanan/kiri atas/bawah itu gimana ya?
jadi setiap pindah tempat tuh nama tempatnya muncul gitu.

makasih sebelumnya.
klo termasuk repost/junk delete aja gpp.


Terakhir diubah oleh barlieuy tanggal 2012-02-29, 10:31, total 1 kali diubah
 [SOLVED] how to highlight the map's name Empty2012-02-28, 15:12
PostRe: [SOLVED] how to highlight the map's name
#2
Kuru 
Senior
Senior
Kuru

Level 5
Posts : 985
Thanked : 9
Engine : RMVX
Skill : Beginner
Type : Writer
Awards:

 [SOLVED] how to highlight the map's name Vide
Kalau untuk XP ada Mog-Location name, Kalau VX aku nggak tau sciptnya; cara manual mungkin hampir sama kayak XP -> lewat buat event show picture, terus tentukan koordinat, tunggu beberapa lama, erase picture.

Tapi ini cara ribet. Mungkin senior pengguna VX lainnya bisa bantu :D
 [SOLVED] how to highlight the map's name Empty2012-02-28, 15:23
PostRe: [SOLVED] how to highlight the map's name
#3
barlieuy 
Novice
Novice
barlieuy

Level 5
Posts : 139
Thanked : 1
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

 [SOLVED] how to highlight the map's name Vide
iya ini pake VX kk.
hmm. :hmm: pake common event yah?
berarti harus buat picturenya satu satu untuk setiap tempatnya.
emang bisa sih, tp lumayan makan waktu juga. :(
kalo pake script kayanya bisa lebih efisien tp belum terlalu ngerti nih rgss2 :(
tp thanks masukannya :D :D
 [SOLVED] how to highlight the map's name Empty2012-02-28, 15:33
PostRe: [SOLVED] how to highlight the map's name
#4
ibegu 
Advance
Advance
ibegu

Level 5
Posts : 451
Thanked : 14
Engine : RMVX
Skill : Very Beginner
Type : Composer

 [SOLVED] how to highlight the map's name Vide
secara saya juga salah seorang yang nubie, jadi setau saya di VX juga ada MOG Location deh, ya kalo linknya saya tidak tahu. bagaimana kalau di coba di google aja, secara biasanya saya kalo cari script juga tanya si mbah itu
 [SOLVED] how to highlight the map's name Empty2012-02-28, 15:36
PostRe: [SOLVED] how to highlight the map's name
#5
TegarDarmawan 
Novice
Novice
TegarDarmawan

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

 [SOLVED] how to highlight the map's name Vide
kalo VX pake map name pop-up nih
buka spoiler

Spoiler:


credit yg punya script ya,,di situ tertulis kok :thumbup:
 [SOLVED] how to highlight the map's name Empty2012-02-28, 16:11
PostRe: [SOLVED] how to highlight the map's name
#6
barlieuy 
Novice
Novice
barlieuy

Level 5
Posts : 139
Thanked : 1
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

 [SOLVED] how to highlight the map's name Vide
@kk ibegu :

iya kk td jg udah gugling tp g ktemu (salah keyword kayanya) :doh:

@ kk tegar :

wah makasih bgt kk, klo diliat dari scriptnya ini plug n play kan?
trus nama tempatnya jg udah langsung nempel sama windowsnya.

oh iya mau nanya, klo yang bagian ini:
Quote :
super(0, 0, 544, 64)

yang ada di :
Quote :
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize(name="", count=128)
super(0, 0, 544, 64)
self.visible = false
self.openness = 0
@name = name
@count = count
end

itu buat ngatur posisi windows nya kan? jd tinggal ngubah posisi aja bisa ya (angka2nya)?

trus trus, masih g ngerti di bagian ini :

Quote :
#=======================================================================
# ** Map Name Popup Configuration
#=======================================================================

module Map_Name_Popup
# These maps will not popup the name window
Exclude_Maps = [32,35,40,5,15,58,59,62]
end

yang angka2 di dalem kurung itu menunjukkan apa?

maaf klo banyak nanya, trus maaf jg klo salah tempat buat nanya tentang scripting.
tp sekalian aja ya XD
kalo soal credit pasti dicantumin kok. hehe :)

thanks a millon!! :D
 [SOLVED] how to highlight the map's name Empty2012-02-28, 17:18
PostRe: [SOLVED] how to highlight the map's name
#7
Fathan 
Novice
Novice
Fathan

Level 5
Posts : 143
Thanked : 0
Engine : RMVX
Skill : Advanced
Type : Developer
Awards:
 [SOLVED] how to highlight the map's name Vide
ane punya scriptnya, untuk vx kan???
Code:
#=================================================================#
#=================================================================#
#  #*****************#      Display map name on map with fade    #
#  #*** By Falcao ***#      effect. Just copy and paste.          #
#  #*****************#                Enjoy!                    #
#        RMVX                                                    #
#=================================================================#

module Fal_map_name
#------------------------------------------------------------------
# Window display disable Switch
Disable_window = 50
#------------------------------------------------------------------
# Change display position, you ca choose between two display
# positions, change  1 or 2
#
# 1 = Upper frontal position
# 2 = Lower left
Change_posision = 1
#------------------------------------------------------------------
end

class Window_Nmap < Window_Base
  def initialize
    super(185, -70, 190, 50)
    self.opacity = 200
    refresh
  end
  def refresh
    self.contents.clear
    self.contents.font.size = 20
    data = load_data("Data/MapInfos.rvdata")
    self.contents.draw_text(0, -7, 150, 32, data[$game_map.map_id].name, 2)
  end
end

class Game_System
  attr_accessor  :fade_time
  alias falcao_fading_initialize initialize
  def initialize
    @fade_time = 0
    falcao_fading_initialize
  end
end

class Scene_Map
  include Fal_map_name
  alias falcaoVX_Mname_main main
  def main
    @map_name = Window_Nmap.new
    if $game_switches[Disable_window] == false
      @map_name.visible = true
    else
      @map_name.visible = false
    end
    if Change_posision == 2
    @map_name.x = -200; @map_name.y = 300
    end
    falcaoVX_Mname_main
    @map_name.dispose
  end
  alias falcaoVX_Mname_update update
  def update
    if $game_switches[Disable_window] == false
      @map_name.visible = true
    else
      @map_name.visible = false
    end
    @map_name.y += 2 if @map_name.y < 0 and Change_posision <= 1
    @map_name.x += 5 if @map_name.x < -4 and Change_posision >= 2
    if $game_system.fade_time == 140
      @map_name.y -= 3 if @map_name.y > -90 and Change_posision <= 1
      @map_name.x -= 7 if @map_name.x < 20 and Change_posision >= 2
      @map_name.contents_opacity -= 5
      @map_name.opacity -= 5
    else
      $game_system.fade_time += 1
    end
      falcaoVX_Mname_update
    end
    alias falcao_transfer_player update_transfer_player
    def update_transfer_player
      @map_name.refresh
      return unless $game_player.transfer?
      @map_name.contents_opacity = 255; @map_name.opacity = 200
      if Change_posision <= 1
        @map_name.x = 185; @map_name.y = -70
      elsif Change_posision >= 2
        @map_name.x = -200; @map_name.y = 300
      end
      $game_system.fade_time = 0
      falcao_transfer_player
    end
  end
 [SOLVED] how to highlight the map's name Empty2012-02-28, 20:47
PostRe: [SOLVED] how to highlight the map's name
#8
albar20 
Newbie
Newbie
albar20

Level 5
Posts : 15
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Writer

 [SOLVED] how to highlight the map's name Vide
barlieuy wrote:

Quote :
#=======================================================================
# ** Map Name Popup Configuration
#=======================================================================

module Map_Name_Popup
# These maps will not popup the name window
Exclude_Maps = [32,35,40,5,15,58,59,62]
end

yang angka2 di dalem kurung itu menunjukkan apa?

maaf klo banyak nanya, trus maaf jg klo salah tempat buat nanya tentang scripting.
tp sekalian aja ya XD
kalo soal credit pasti dicantumin kok. hehe :)

thanks a millon!! :D

Halo gan, saya juga masih baru dalam hal rpg maker jd kita sama2 beljar aja. Sesuai dg penjelasannya di atas "These maps will not popup the name window", angka tersebut merupakan ID dari map yg nanti namanya nggk akan ditampilkan saat kita memasuki map tersebut....
Segitu aja penjelasannya ... :P
(maaf kalo penjelasannya kurang dimengerti)


 [SOLVED] how to highlight the map's name Empty2012-02-28, 21:23
PostRe: [SOLVED] how to highlight the map's name
#9
TegarDarmawan 
Novice
Novice
TegarDarmawan

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

 [SOLVED] how to highlight the map's name Vide
@ TS = untuk yg ada super [no,no,no,no] itu emang buat ngatur posisi display name dr map,,ky script2 yg ber-display kebanyakan,,untuk pertanyaan no 2 udah di jwb sama albar,,dan angka2 di dalam.nya di "Exclude_Maps = [32,35,40,5,15,58,59,62]" bisa di ubah,,map mana aja yg nda perlu ada map_name nongol.nya

sorry,,,bahasa blepotan,,tp semoga bantu : :hoahm:
 [SOLVED] how to highlight the map's name Empty2012-02-29, 06:20
PostRe: [SOLVED] how to highlight the map's name
cacad 
Koplak RMer
cacad

Level 5
Posts : 399
Thanked : 3
Engine : Multi-Engine User
Skill : Skilled
Type : Event Designer
Awards:
 [SOLVED] how to highlight the map's name Vide
Ad yg baru nih :D

Spoiler:

Nih SS nya :
 [SOLVED] how to highlight the map's name Mapnam10
 [SOLVED] how to highlight the map's name Empty2012-02-29, 10:30
PostRe: [SOLVED] how to highlight the map's name
barlieuy 
Novice
Novice
barlieuy

Level 5
Posts : 139
Thanked : 1
Engine : RMVX Ace
Skill : Beginner
Type : Jack of All Trades

 [SOLVED] how to highlight the map's name Vide
@kk fathan :

wah makasih itu jg bisa, udah ada pilihannya lagi mau munculin di atas atau di bawah. :D

@kk albar :

hoo gitu ya :o , jd kita bisa milih map mana aja yang namanya bisa dimunculin.
oke makasih, ilmuku bertambah lagi deh. :)

@kk tegar :

sip kk, saya jd ngerti script dikit-dikit.
bahasanya ngerti kok. malah lebih ngerti klo pake bahasa yang ga formal (kadang-kadang). :senyum:

@kk cacad :

itu juga lumayan. bisa di modif lg dikit-dikit. tp bahasanya ada kanji sih. jd kurang ngerti :(
klo cuma hiragana sama katakana sih masih bisa. :D

@all :

makasih banyak atas bantuan dan masukannya :shakehand:
kk kk di sini emang jago jago dah. you're rock!!! headbang

oh iya tridnya udah solved kok. klo di lock jg boleh.
(caranya lapor minta di lock gmn ya??) :v

 [SOLVED] how to highlight the map's name Empty2012-02-29, 11:02
PostRe: [SOLVED] how to highlight the map's name
TegarDarmawan 
Novice
Novice
TegarDarmawan

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

 [SOLVED] how to highlight the map's name Vide
cara.nya PM aja ke Moderator yg ada di sini,,atau yg user name.nya warna biru
 [SOLVED] how to highlight the map's name Empty
PostRe: [SOLVED] how to highlight the map's name
Sponsored content 




 [SOLVED] how to highlight the map's name Vide
 

[SOLVED] how to highlight the map's name

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 1

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Engines :: RMVX :: RMVX Archive-