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 编辑
TITLE_ARMOR_ID = 1 #1号装饰品就回显示少校
class Window_Title < Window_Base
def initialize
super(0,0,640,480)
self.opacity = 0
self.back_opacity = 0
self.contents_opacity = 255
refresh
end
def refresh
@armor = $game_actors[$game_party.actors[0].id].armor4_id
self.contents.clear
self.contents.font.color = normal_color
self.contents.draw_text($game_player.screen_x, $game_player.screen_y, 128, 32, "少校")
end
def judge
return true if $game_actors[$game_party.actors[0].id].armor4_id
return fales
end
end
class Scene_Map
alias title_main main
def main
@title_window = Window_Title.new
title_main
@title_window.dispose
end
alias title_update update
def update
title_update
if $game_actors[$game_party.actors[0].id].armor4_id == TITLE_ARMOR_ID
@title_window.visible = true
@title_window.refresh if @title_window.judge
else
@title_window.visible = false
end
end
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