赞 | 0 |
VIP | 5 |
好人卡 | 0 |
积分 | 1 |
经验 | 14326 |
最后登录 | 2018-1-11 |
在线时间 | 461 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 461 小时
- 注册时间
- 2008-2-19
- 帖子
- 96
|
本帖最后由 jccg1000466 于 2011-3-11 23:05 编辑
#==============================================================================
# ■ Game_Actor_Properties
#------------------------------------------------------------------------------
# DQ用アクター情報
# Copyright (C) 2005 fukuyama
#==============================================================================
module Game_Actor_Properties
def setup_all_actor(key,vals)
$data_actors.each_index do |i|
if (not $game_actors.nil?) and
(not vals.nil?)
$game_actors.properties[key] = vals
end
end
end
module_function :setup_all_actor
module Game_Actor_Module
PROPERTY_JOB = 'job'
PROPERTY_SEX = 'sex'
def default_properties
properties = super
properties[PROPERTY_JOB] = $data_classes[@class_id].name
properties[PROPERTY_SEX] = '???'
return properties
end
end
end # module Game_Actor_Properties
class Game_Actor
include Properties_Interface_Module
include Game_Actor_Properties::Game_Actor_Module
end
这是一份DQ的脚本,应该是显示职业和性别的,???上面的是显示职业的,????号部分应该写啥才能显示出男女性别之分,我不懂脚本,谁能帮下忙啊
|
|