赞 | 22 |
VIP | 0 |
好人卡 | 0 |
积分 | 54 |
经验 | 2379 |
最后登录 | 2024-11-1 |
在线时间 | 1224 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 5379
- 在线时间
- 1224 小时
- 注册时间
- 2016-12-6
- 帖子
- 389
|
再加个变量用于记录前后属性嘛,把事件改成这样:
◆脚本:var actorId = $gameVariables.value(279);
: :var actorAtk = $gameActors.actor(actorId).atk;
: :var actorName = $gameActors.actor(actorId)._name;
: :$gameVariables.setValue(279, actorAtk);
: :$gameVariables.setValue(280, actorName);
: :$gameVariables.setValue(281, actorAtk + 5)
◆文本:无, 窗口, 底部
: :\v[280]的攻击力由\v[279]上升至\v[281]!
分别用279号变量和281号变量记录原攻击力和成长后的攻击力方便在文本显示 |
|