Project1

标题: 求各位大神指点,我这个脚本怎么错了! [打印本页]

作者: 布冷.逆天    时间: 2015-2-23 19:17
标题: 求各位大神指点,我这个脚本怎么错了!
本帖最后由 布冷.逆天 于 2015-2-23 19:47 编辑
  1. def Reduce_hp
  2.   reduce_hp==$game_party.gain_gold/10
  3.   reduce_hp==$game_party.actors[0].maxhp-=1
  4.   if $game_party.actors[0].hp<=10
  5.   print"你快死亡了!"
  6.   end
  7.   $game_party.actors[0].hp -= reduce_hp
  8.   $game_party.gain_gold(reduce_hp*=10)
  9.   print"交换完成!"
  10. end
  11. end
复制代码
它说方法未定义
错误类型 :
        方法未定义
错误信息 :
        (eval):2:in `command_355'undefined method `Reduce_hp' for #<Creation_Change_money:0x6e23be8>
错误可能发生的相关位置 :
        Interpreter 7 : 第 272 行 : command_355
        Interpreter 2 : 第 215 行 : eval
        Interpreter 7 : 第 272 行 : command_355
        Interpreter 2 : 第 215 行 : execute_command
        Interpreter 1 : 第 199 行 : update
        Interpreter 1 : 第 113 行 : loop
        Interpreter 1 : 第 204 行 : update
        Scene_Map : 第 54 行 : update
        Scene_Map : 第 49 行 : loop
        Scene_Map : 第 69 行 : update
        Scene_Map : 第 25 行 : main
        Scene_Map : 第 19 行 : loop
        Scene_Map : 第 30 行 : main
        错误报告 : 第 37 行 : run
        错误报告 : 第 151 行

作者: 布冷.逆天    时间: 2015-2-23 19:39
本帖最后由 布冷.逆天 于 2015-2-23 19:48 编辑

以解决,可是又有新问题了!解决的代码,这个代码直接导致死亡!我需要限制住交易后的血量,应该设置哪呀?
  1. def reduce_hp
  2.   reduce_hp = 1000
  3.   reduce_hp = [reduce_hp,$game_party.actors[0].maxhp-=10].min
  4.   if $game_party.actors[0].hp<=10
  5.   print"你快死亡了!"
  6.    else
  7.    $game_party.actors[0].hp -= reduce_hp
  8.    $game_party.gain_gold(reduce_hp*=10)   
  9.    print"交换完成!"
  10.   end
  11. end
  12. end
复制代码
RUBY 代码复制
  1. def reduce_hp
  2.   reduce_hp = 1000
  3.   reduce_hp = [reduce_hp,$game_party.actors[0].maxhp-=10].min
  4.   if $game_party.actors[0].hp<=10
  5.   print"你快死亡了!"
  6.    else
  7.    $game_party.actors[0].hp -= reduce_hp
  8.    $game_party.gain_gold(reduce_hp*=10)   
  9.    print"交换完成!"
  10.    return [$game_party.actors[0].hp+=10,$game_party.lose_gold(10)]
  11.   end
  12. end
  13. end

作者: chd114    时间: 2015-2-23 19:58
布冷.逆天 发表于 2015-2-23 02:39
以解决,可是又有新问题了!解决的代码,这个代码直接导致死亡!我需要限制住交易后的血量,应该设置哪呀? ...
点评


布冷.逆天  已经解决了,虽然你的答案晚了点,但还是谢谢!  发表于 9 分钟前



@hys111111 问题解决···




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