Project1

标题: 关于地图上的血魔条 [打印本页]

作者: 黑色的笔    时间: 2012-7-24 15:48
标题: 关于地图上的血魔条
事情是这样的.......................

因为某些特殊要求

我需要每秒扣除角色1点血

但是我的血魔条是没办法显示出来血的减少(必须要打开菜单或者战斗才能瞬间减少)

我用的是米酒濑酱移植的那个(如果其他版本可以实现也行)

所以请教          = =dsu_plus_rewardpost_czw
作者: feizhaodan    时间: 2012-7-24 16:23
在那个脚本的update里面添加refresh。
如果不知道说的是什么意思那就算了。
作者: 黑色的笔    时间: 2012-7-24 18:12
feizhaodan 发表于 2012-7-24 16:23
在那个脚本的update里面添加refresh。
如果不知道说的是什么意思那就算了。

不要酱拉我问的不多,只想问一下那两个英语是什么
作者: feizhaodan    时间: 2012-7-25 15:01
本帖最后由 feizhaodan 于 2012-7-25 18:00 编辑
  1. def update
  2.   super
  3.   @last_hp = $game_actors[1].hp unless @last_hp
  4.    if @last_hp != $game_actors[1].hp
  5.     refresh
  6.     @last_hp = $game_actors[1].hp
  7.   end
  8.   @last_mp = $game_actors[1].mp unless @last_mp
  9.    if @last_mp != $game_actors[1].mp
  10.     refresh
  11.     @last_mp = $game_actors[1].hp
  12.   end
  13. end
复制代码
添加到原脚本最后一个end之前。
作者: 黑色的笔    时间: 2012-7-25 17:17
feizhaodan 发表于 2012-7-25 15:01
添加到原脚本最后一个end之前。

功能实现了,但是更吭的事情发生了,FPS卡得只剩5~~




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