设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1706|回复: 3
打印 上一主题 下一主题

[已经解决] 技能說明顯示特殊變數?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
144
在线时间
139 小时
注册时间
2009-11-30
帖子
45
跳转到指定楼层
1
发表于 2014-1-24 21:57:03 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
我的技能說明是
"造成(攻擊X0.5+2)點物理傷害"
假設我人物攻擊是60
有辦法讓說明直接顯示
"造成(32)點物理傷害"嗎?
說明文要隨能力提升而變動

Lv5.捕梦者 (暗夜天使)

只有笨蛋才会看到

梦石
1
星屑
21621
在线时间
9413 小时
注册时间
2012-6-19
帖子
7118

开拓者短篇九导演组冠军

2
发表于 2014-1-25 02:10:00 | 只看该作者
先加入这段脚本
  1. =begin
  2. #===============================================================================
  3. Title: Convert Code: Eval
  4. Author: Tsukihime
  5. Date: Nov 25, 2013
  6. URL: http://himeworks.wordpress.com/2013/09/17/battle-reactions/
  7. --------------------------------------------------------------------------------
  8. ** Change log
  9. Nov 25, 2013
  10.    - Initial release
  11. --------------------------------------------------------------------------------   
  12. ** Terms of Use
  13. * Free to use in non-commercial projects
  14. * Contact me for commercial use
  15. * No real support. The script is provided as-is
  16. * Will do bug fixes, but no compatibility patches
  17. * Features may be requested but no guarantees, especially if it is non-trivial
  18. * Credits to Tsukihime in your project
  19. * Preserve this header
  20. --------------------------------------------------------------------------------
  21. ** Description

  22. This script adds a new convert code to your project called "eval".

  23. You can use this to evaluate arbitrary formulas inside your show text
  24. commands.

  25. --------------------------------------------------------------------------------
  26. ** Installation

  27. In the script editor, place this script below Materials and above Main

  28. --------------------------------------------------------------------------------
  29. ** Usage

  30. In your show text command, use the convert code

  31.     \eval[FORMULA}

  32. The formula will be evaluated when the message is being processed and the
  33. appropriate value will be displayed.

  34. The following formula variables are available

  35.    p - game party
  36.    t - game troop
  37.    s - game switches
  38.    v - game variables

  39. Note that the text is not automatically re-positioned to fill in the gaps.
  40.   
  41. #===============================================================================
  42. =end
  43. $imported = {} if $imported.nil?
  44. $imported["TH_ConvertCodeEval"] = true
  45. #===============================================================================
  46. # ** Rest of Script
  47. #===============================================================================
  48. class Window_Base < Window
  49.   
  50.   alias :th_convert_code_eval_convert_escape_characters :convert_escape_characters
  51.   def convert_escape_characters(text)
  52.     result = th_convert_code_eval_convert_escape_characters(text)
  53.     result.gsub!(/\eEVAL\[(.*)\]/i) { eval_convert_code($1) }
  54.     result
  55.   end
  56.   
  57.   def eval_convert_code(formula, p=$game_party, t=$game_troop, s=$game_switches, v=$game_variables)
  58.     eval(formula)
  59.   end
  60. end
复制代码
然后技能说明这么写即可:
造成\eval[(p.leader.atk * 0.5 +2).to_i]點物理傷害

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
144
在线时间
139 小时
注册时间
2009-11-30
帖子
45
3
 楼主| 发表于 2014-1-31 01:49:24 | 只看该作者
喵呜喵5 发表于 2014-1-25 02:10
先加入这段脚本然后技能说明这么写即可:
造成\eval[(p.leader.atk * 0.5 +2).to_i]點物理傷害

leader的話 應該是指隊長吧
可是如果技能是其他隊員的話 怎麼辦呢?
回复 支持 反对

使用道具 举报

Lv5.捕梦者 (暗夜天使)

只有笨蛋才会看到

梦石
1
星屑
21621
在线时间
9413 小时
注册时间
2012-6-19
帖子
7118

开拓者短篇九导演组冠军

4
发表于 2014-1-31 16:12:45 | 只看该作者
把p.leader改成p.members[n]:第n+1名队伍成员
改成$game_actors[n]:数据库中第n名角色

评分

参与人数 1梦石 +1 收起 理由
Sion + 1 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-15 05:38

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表