Project1

标题: 请问如何做出军衔???? [打印本页]

作者: 梦幻之旅    时间: 2012-4-23 18:38
标题: 请问如何做出军衔????
就是比如有一个装饰品叫“少校”装备后角色头上就显示“少校”两个组
脚本求


‘‘──梦幻之旅于2012-4-23 18:39补充以下内容

是字……刚才打错了……
’’dsu_plus_rewardpost_czw
作者: hys111111    时间: 2012-4-24 14:29
本帖最后由 hys111111 于 2012-4-24 18:03 编辑
  1. TITLE_ARMOR_ID = 1 #1号装饰品就回显示少校
  2. class Window_Title < Window_Base
  3.   def initialize
  4.     super(0,0,640,480)
  5.     self.opacity = 0
  6.     self.back_opacity = 0
  7.     self.contents_opacity = 255
  8.     refresh
  9.   end
  10.   def refresh
  11.     @armor = $game_actors[$game_party.actors[0].id].armor4_id
  12.     self.contents.clear
  13.     self.contents.font.color = normal_color
  14.     self.contents.draw_text($game_player.screen_x, $game_player.screen_y, 128, 32, "少校")
  15.   end
  16.   def judge
  17.     return true if $game_actors[$game_party.actors[0].id].armor4_id
  18.     return fales
  19.   end
  20. end

  21. class Scene_Map
  22.   alias title_main main
  23.   def main
  24.     @title_window = Window_Title.new
  25.     title_main
  26.     @title_window.dispose
  27.   end
  28.   alias title_update update
  29.   def update
  30.     title_update
  31.     if $game_actors[$game_party.actors[0].id].armor4_id == TITLE_ARMOR_ID
  32.       @title_window.visible = true
  33.       @title_window.refresh if @title_window.judge
  34.     else
  35.       @title_window.visible = false
  36.     end
  37.   end
  38. end
复制代码
脚本已修正
作者: 梦幻之旅    时间: 2012-4-24 18:15
hys111111 发表于 2012-4-24 14:29
脚本已修正

这个怎么用


‘‘──梦幻之旅于2012-4-24 18:16补充以下内容

能不能加我QQ?1093639374
’’


‘‘──梦幻之旅于2012-4-24 18:19补充以下内容

[@]hys111111[/@]加我QQ1093639374
’’




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1