赞 | 0 |
VIP | 2 |
好人卡 | 1 |
积分 | 6 |
经验 | 27196 |
最后登录 | 2023-12-29 |
在线时间 | 169 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 594
- 在线时间
- 169 小时
- 注册时间
- 2008-10-29
- 帖子
- 431
|
鉴定完毕
你在加点确认以后 没有把临时点数清0
所以每确认一次 就会把临时点数再加上一次
所以会不停的涨
在脚本 大概是470行以后附近吧
把这一段
if @command_window.index == 5
# 演奏确定 SE
$game_system.se_play($data_system.decision_se)
# 将角色的剩余点数带回
$game_variables[@actor.id + LEVEL_UP_VARIABLE] = $point
# 将角色点数实际加上
@actor.str += $temp_str
@actor.dex += $temp_dex
@actor.agi += $temp_agi
@actor.int += $temp_int
@actor.maxhp += $temp_hp
@actor.maxsp += $temp_sp #
之后 加上
$temp_str =0
$temp_dex =0
$temp_agi =0
$temp_int =0
$temp_hp =0
$temp_sp =0
@lvup_window.refresh
再试试看
系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|