本帖最后由 芯☆淡茹水 于 2013-5-17 17:44 编辑
cccjjjcui 发表于 2013-5-17 17:32
看来只能一个一个加了,我还以外批量加可以呢
如上面我说的那个,最后可以事件 --> 脚本:
for i in 1..4 $game_variables[5] += $game_variables[i] end
for i in 1..4
$game_variables[5] += $game_variables[i]
end
其实全部用事件—>脚本的话,只要一小段:
actor = $game_party.actors[0] $game_variables[1] += actor.atk $game_variables[1] += actor.pdef $game_variables[1] += actor.mdef $game_variables[1] += actor.int
actor = $game_party.actors[0]
$game_variables[1] += actor.atk
$game_variables[1] += actor.pdef
$game_variables[1] += actor.mdef
$game_variables[1] += actor.int
角色为队伍 1 号角色,变量为 1 号变量
最后只显示变量 1 即可。 |