赞 | 2 |
VIP | 89 |
好人卡 | 0 |
积分 | 3 |
经验 | 5951 |
最后登录 | 2022-9-4 |
在线时间 | 70 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 288
- 在线时间
- 70 小时
- 注册时间
- 2013-3-2
- 帖子
- 43
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 szerova 于 2014-8-23 16:13 编辑
整队的时候领队换不了,但我没加锁定领队的脚本
就是队员的第一个变不了
对比了一下新工程和旧工程的脚本,加的那一行,是不是会锁定队长
#--------------------------------------------------------------------------
# ● 交换顺序
#--------------------------------------------------------------------------
def swap_order(index1, index2)
return if (index1 == 0 or index2 == 0) #加这一行
@actors[index1], @actors[index2] = @actors[index2], @actors[index1]
$game_player.refresh
end
#--------------------------------------------------------------------------
# ● 交换顺序
#--------------------------------------------------------------------------
def swap_order(index1, index2)
@actors[index1], @actors[index2] = @actors[index2], @actors[index1]
$game_player.refresh
end
|
|