| 
 
| 赞 | 168 |  
| VIP | 6 |  
| 好人卡 | 208 |  
| 积分 | 225 |  
| 经验 | 137153 |  
| 最后登录 | 2025-4-1 |  
| 在线时间 | 8598 小时 |  
 Lv5.捕梦者 
	梦石0 星屑22499 在线时间8598 小时注册时间2011-12-31帖子3361 | 
| 在這個脚本「画像コマンドスクリプト」中改 #  回転コマンド上に表示するアイコンはここで設定します。
 #  以下の定義の symbol がここで設定するシンボルになります。
 #    add_command(name, symbol, enabled, ext) # コマンドの追加
 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  IconSet[シンボル] = Hash.new(アイコン番号)
 #  IconSet[:skill][スキルタイプ番号] = アイコン番号  # スキルタイプ
 #--------------------------------------------------------------------------
 IconSet ||= Hash.new(Hash.new(16))           # デフォルト
 IconSet[:fight]       = Hash.new(147)        # 戦う   (バトル)
 IconSet[:escape]      = Hash.new(467)        # 逃げる (バトル)
 IconSet[:attack]      = Hash.new(175)        # 攻撃   (バトル)
 IconSet[:guard]       = Hash.new(506)        # 防御   (バトル)
 IconSet[:item]        = Hash.new(260)        # アイテム
 IconSet[:skill]       = Hash.new(112)        # スキル
 IconSet[:skill][1]    = 115                  # スキルタイプ ID:01
 IconSet[:skill][2]    = 117                  # スキルタイプ ID:02
 IconSet[:equip]       = Hash.new(436)        # 装備
 IconSet[:weapon]      = Hash.new(147)        # 武器
 IconSet[:armor]       = Hash.new(506)        # 防具
 IconSet[:key_item]    = Hash.new(243)        # キーアイテム
 IconSet[:optimize]    = Hash.new(437)        # 最強装備
 IconSet[:clear]       = Hash.new(143)        # 外す
 IconSet[:status]      = Hash.new(121)        # ステータス
 IconSet[:formation]   = Hash.new(183)        # 並び替え
 IconSet[:save]        = Hash.new(224)        # セーブ
 IconSet[:buy]         = Hash.new(270)        # 購入
 IconSet[:sell]        = Hash.new(262)        # 売却
 IconSet[:cancel]      = Hash.new(12)         # キャンセル
 IconSet[:new_game]    = Hash.new(234)        # ニューゲーム
 IconSet[:continue]    = Hash.new(224)        # コンティニュー
 IconSet[:game_end]    = Hash.new(257)        # ゲーム終了
 IconSet[:to_title]    = Hash.new(257)        # タイトルへ
 IconSet[:shutdown]    = Hash.new(143)        # シャットダウン
 
 | 
 |