Project1

标题: 请问这个随机数错在哪里? [打印本页]

作者: lirn    时间: 2013-9-20 12:04
标题: 请问这个随机数错在哪里?
本帖最后由 lirn 于 2013-9-20 14:56 编辑

i
  1. f user.state?(269) && user.luk >=50
  2. if user.luk >= 50
  3.               $game_variables[101] == rand(300)
  4.               elsif user.luk >= 60
  5.               $game_variables[101] == rand(500)
  6.               elsif user.luk >= 70
  7.               $game_variables[101] == rand(850)
  8.               elsif user.luk >= 80
  9.               $game_variables[101] == rand(1000)
  10.            end
  11.         end
复制代码
这是在脚本里的计算公式,但实际操作时发现该数值是0,请问错在哪里?
作者: 熊喵酱    时间: 2013-9-20 12:29
== 是判定
= 是賦值
RUBY 代码复制
  1. if user.state?(269) && user.luk >=50
  2. if user.luk >= 50
  3.               $game_variables[101] = rand(300)
  4.               elsif user.luk >= 60
  5.               $game_variables[101] = rand(500)
  6.               elsif user.luk >= 70
  7.               $game_variables[101] = rand(850)
  8.               elsif user.luk >= 80
  9.               $game_variables[101] = rand(1000)
  10.            end
  11.         end

所以應該是這樣
作者: tseyik    时间: 2013-9-20 13:29
本帖最后由 tseyik 于 2013-9-20 13:37 编辑

你的IF排序亦有問題,不能産生預期効果和無謂運算





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