赞 | 5 |
VIP | 71 |
好人卡 | 22 |
积分 | 6 |
经验 | 32145 |
最后登录 | 2013-8-9 |
在线时间 | 184 小时 |
Lv2.观梦者 天仙
- 梦石
- 0
- 星屑
- 620
- 在线时间
- 184 小时
- 注册时间
- 2008-4-15
- 帖子
- 5023
|
以下引用紫苏于2009-5-6 7:26:16的发言:
第二条不太明白什么意思……
就是说这段
for target in $game_troop.members + $game_party.members
next unless target.exist?
commands.push(target.name)
@targets.push(target)
end
可以改成
for target in $game_troop.existing_members + $game_party.existing_members
#next unless target.exist? #可以省掉这句
commands.push(target.name)
@targets.push(target)
end |
|