赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 4968 |
最后登录 | 2015-12-24 |
在线时间 | 96 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 96 小时
- 注册时间
- 2014-2-16
- 帖子
- 50
|
3楼
楼主 |
发表于 2015-9-11 21:47:21
|
只看该作者
#———————————————————————————————————————
#角色入队
#———————————————————————————————————————
def add_actor(actor_id)
unless @actors.include?(actor_id)
if @actors.size < apack_max
name = $game_actors[actor_id].name
# $game_message.add("角色【#{name}】加入队伍!")
@actors.push(actor_id) ; apack_ove(actor_id)
else
index = @apack[APACK_MAXLABEL].index(nil)
name = $game_actors[actor_id].name
if index
@apack[APACK_MAXLABEL][index] = actor_id
# $game_message.add("角色【#{name}】已存入仓库!")
else
XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
end
end
end
$game_player.refresh
$game_map.need_refresh = true
end
APACK_MAXLABEL = 0 #默认窗口ID,队伍满员后传送到的仓库ID
这是默认仓库的ID
我想在上面XXXXXXXXXXXX的地方使得 APACK_MAXLABEL的值永久+1,1请问脚本要怎么写啊
|
|