Project1

标题: 这段脚本能否放进事件脚本框里? [打印本页]

作者: stella    时间: 2013-1-8 09:36
标题: 这段脚本能否放进事件脚本框里?
本帖最后由 stella 于 2013-1-8 10:10 编辑

有点长,如何压缩?

RUBY 代码复制
  1. b=($game_party.actors[
  2. 0].hp).to_f/($game_party.actors[0].maxhp).to_f
  3. a=[];for i in 11..14
  4. name = $game_map.events[i].name
  5. data=name.split(/,/)
  6. if data[1].to_i <= 0;a[i]=2
  7. else;a[i]=data[1].to_f/data[2].to_f;end
  8. end;for i in 1..10
  9. next if $game_self_switches[[
  10. $game_map.map_id,i,"D"]]==true or
  11. $game_map.events[i].character_name == ""
  12. if a.min==1 or a.min>b;$friend14_target=0
  13. elsif a.min == a[i];$friend14_target = i
  14. end;end

作者: zhangbanxian    时间: 2013-1-8 10:07
上面加个def xxx,下面加个end,丢脚本编辑器里,然后事件里就输入xxx就行了- -b
作者: 亿万星辰    时间: 2013-1-8 11:47
  1. c=$game_party.actors[0]
  2. b=c.hp*1.0/c.maxhp;a=[];for i in 11..14
  3. data=$game_map.events[i].name.split(/,/)
  4. if data[1].to_i <= 0;a[i]=2;else
  5. a[i]=data[1].to_f/data[2].to_f;end;end
  6. for i in 1..10;
  7. next if $game_self_switches[[\
  8. $game_map.map_id,i,"D"]]==true or\
  9. $game_map.events[i].character_name == ""
  10. if a.min==1 or a.min>b;$friend14_target=0
  11. elsif a.min == a[i];$friend14_target = i
  12. end;end
复制代码

作者: hys111111    时间: 2013-1-8 13:28
亿万星辰 发表于 2013-1-8 11:47

大概可以分开放进去的吧,像这个样子。





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1