Project1

标题: 分支条件的脚本应该怎么写呀?格式是什么样子的呀? [打印本页]

作者: 迷糊咖啡厅    时间: 2015-5-7 22:52
标题: 分支条件的脚本应该怎么写呀?格式是什么样子的呀?
本帖最后由 迷糊咖啡厅 于 2015-5-7 23:01 编辑

分支条件的脚本应该怎么写呀?格式是什么样子的呀?
94-98号变量随机赋值1-10的数
然后用相应的1-10号变量来统计一下随机到自己的数有几个


作者: 喵呜喵5    时间: 2015-5-7 23:03
本帖最后由 喵呜喵5 于 2015-5-7 23:05 编辑
  1. v = $game_variables
  2. (94..98).each {|id| v[v[id]] += 1 }
复制代码

作者: 三途亚梦    时间: 2015-5-7 23:15
if 条件
内容
else
否则内容
end
作者: 迷糊咖啡厅    时间: 2015-5-7 23:17
喵呜喵5 发表于 2015-5-7 23:03

( ).each 和 |id| 是什么意思呀?
作者: 喵呜喵5    时间: 2015-5-7 23:18
迷糊咖啡厅 发表于 2015-5-7 23:17
( ).each 和 |id| 是什么意思呀?

上面那段代码等同与下面这个
  1. $game_variables[$game_variables[94]] += 1
  2. $game_variables[$game_variables[95]] += 1
  3. $game_variables[$game_variables[96]] += 1
  4. $game_variables[$game_variables[97]] += 1
  5. $game_variables[$game_variables[98]] += 1
复制代码





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