Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

 
Reply to this topicStart new topic
> waiting indicator, system tantenkaIi
vanjoss
post Aug 19 2011, 11:48 AM
Post #1


Level 2
Group Icon

Group: Member
Posts: 22
Type: Developer
RM Skill: Skilled




Hello I need your help what happens is that I have the system tantenkai and I can not put this script waiting indicator need help here some pictures of the error




and when I open the script editor is the line that need fixing



I leave this bar is the time indicator


Uploaded with ImageShack.us

Help me!!!


Go to the top of the page
 
+Quote Post
   
Kread-EX
post Aug 19 2011, 11:53 AM
Post #2


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




At first glance it seems the issue might have two possible causes:
1 - The script has an unfulfilled dependency.
2 - You are loading an old save file made before the use of the script.

In any case, a link to the "script waiting indicator" or even better, a demo of your project would help.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
vanjoss
post Aug 19 2011, 12:39 PM
Post #3


Level 2
Group Icon

Group: Member
Posts: 22
Type: Developer
RM Skill: Skilled




okay I did a video and also left the script and one more thing if I put up scrpt I do well but never appears on the screen I use the 2.7 system tankentai
http://www.youtube.com/watch?v=JhmvQLGHkmI...nel_video_title

Script
CODE
#==============================================================================
# ★RGSS2
# STR11+atb_Indicador de Espera v1.0 20/03/08
#   Requiere STR33g1_Estado de Batalla
#
# ・Los indicadores son s�lo para personajes.
# 
#==============================================================================
# ■ Window_BattleStatus
#==============================================================================
class Window_BattleStatus < Window_Selectable
  # Skin file names
  BTSKIN_17 = "wait_gauge01"   # Nombre de archivo de barras
  BTSKIN_18 = "wait_gauge00"   # Nombre de archivo del Skin
  # XP Style Positions
  #BTSKIN_17XY = [  0,  -8]     # Coordenadas del indicador [x, y]
  #BTSKIN_18XY = [ -8, -16]     # Coordenadas del Skin [x, y]

  BTSKIN_17XY = [0,  16]     # Coordenadas del indicador [x, y]
  BTSKIN_18XY = [0,   8]     # Coordenadas del Skin [x, y]
  #--------------------------------------------------------------------------
  # ★ エイリアス
  #--------------------------------------------------------------------------
  alias initialize_str11pog initialize
  def initialize(f = false)
    @wagw = (Cache.system(BTSKIN_17)).width
    initialize_str11pog(f)
  end
  #--------------------------------------------------------------------------
  # ● アイテム作成
  #--------------------------------------------------------------------------
  alias draw_item_str11pwa draw_item
  def draw_item(index)
    return unless @f
    actor = $game_party.members[index]
    draw_item_str11pwa(index)
    s = @s_sprite[index]
    # ウェイトゲージ
    s[17] = Sprite.new(@viewport)
    s[17].bitmap = Cache.system(BTSKIN_17)
    s[17].x = @x[index] + BTSKIN_B_XY[0] + BTSKIN_17XY[0]
    s[17].y = @y[index] + BTSKIN_B_XY[1] + BTSKIN_17XY[1]
    s[17].z = 4
    w = s[17].bitmap.width
    h = s[17].bitmap.height / 3
    s[17].src_rect.set(0, 0, w, h)
    # ウェイトスキン
    s[18] = Sprite.new(@viewport)
    s[18].bitmap = Cache.system(BTSKIN_18)
    s[18].x = @x[index] + BTSKIN_B_XY[0] + BTSKIN_18XY[0]
    s[18].y = @y[index] + BTSKIN_B_XY[1] + BTSKIN_18XY[1]
    s[18].z = 3
    #
    s[20] = ((@wagw * (actor.ctb_gauge / (actor.max_ctb_gauge * 1.0))) + 1).truncate
    s[17].src_rect.width = s[20]
    # 不可視に
    for l in [17,18]
      s[l].opacity = 0
    end
    # 追加判定
    @s_party[10] = actor.ctb_gauge
  end
  #--------------------------------------------------------------------------
  # ● オブジェクト開放
  #--------------------------------------------------------------------------
  alias dispose_str11pwa dispose
  def dispose
    dispose_str11pwa
    for i in 0...@s_sprite.size
      for l in [17,18]
        @s_sprite[i][l].bitmap.dispose
        @s_sprite[i][l].dispose
      end
    end
  end
  #--------------------------------------------------------------------------
  # ● フレーム更新
  #--------------------------------------------------------------------------
  alias update_str11pwa update
  def update
    update_str11pwa
    return unless @f
    for i in 0...@s_sprite.size
      s = @s_sprite[i]
      # 不透明度アップ
      if @opacity < 272
        for l in [17,18]
          s[l].opacity = @opacity
        end
      end
      # ウェイトゲージ更新
      update_wa(s,$game_party.members[i],@s_party[i])
    end
  end
  #--------------------------------------------------------------------------
  # ● フレーム更新 (ウェイトゲージ)
  #--------------------------------------------------------------------------
  def update_wa(s,a,m)
    sr = s[17].src_rect
    # 色変更
    gauge = a.ctb_gauge
    if a.aw_gauge > 0
      gauge = a.aw_gauge
      s[17].src_rect.y = s[17].src_rect.height * 2
    elsif @wagw <= sr.width
      s[17].src_rect.y = s[17].src_rect.height
    else
      s[17].src_rect.y = 0
    end
    # ゲージ更新
    if gauge != m[10]
      s[20] = ((@wagw * (gauge / (a.max_ctb_gauge * 1.0))) + 1).truncate
      m[10] = (gauge)
      s[17].src_rect.width = s[20]
    end
  end
end
t
Go to the top of the page
 
+Quote Post
   
Kread-EX
post Aug 19 2011, 12:58 PM
Post #4


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




Requiere STR33g1_Estado de Batalla
From the script header. Is this dependency satisfied?


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
vanjoss
post Aug 19 2011, 02:04 PM
Post #5


Level 2
Group Icon

Group: Member
Posts: 22
Type: Developer
RM Skill: Skilled




QUOTE (Kread-EX @ Aug 19 2011, 12:58 PM) *
Requiere STR33g1_Estado de Batalla
From the script header. Is this dependency satisfied?

is still no error! but in the end not a question I get as I can do to an enemy when you select an image so I leave

http://i599.photobucket.com/albums/tt80/ha...-TargetAlly.jpg

or fence at the skill menu
http://i599.photobucket.com/albums/tt80/ha.../ItemSelect.jpg
Go to the top of the page
 
+Quote Post
   
Kread-EX
post Aug 21 2011, 11:01 AM
Post #6


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




I'm sorry I can't understand your post at all.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 20th May 2013 - 10:54 AM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker