- UID
- 2092047
- 主题
- 0
- 阅读权限
- 20
- 帖子
- 36
- 精华
- 0
- 积分
- 18
- 金钱
- 160
- 荣誉
- 0
- 人气
- 0
- 在线时间
- 34 小时
- 评议
- 0
- 帖子
- 36
- 精华
- 0
- 积分
- 18
- 金钱
- 160
- 荣誉
- 0
- 人气
- 0
- 评议
- 0
|
如题,我一修改出来,登陆游戏就弹:runtime error
This application has requested the Runtime to terminate it in an usual way.Please contact the application's support team for more information
然后点确定就退出游戏了
我是按照网上几个大大提供:
X:\Playlogic\Age of Pirates 2\Program\characters目录里的RPGUtilite.C文件
搜索energy 将
float GetCharacterMaxEnergyValue(ref _refCharacter)
{
float ret = (30.0 + GetCharacterSPECIAL(_refCharacter, SPECIAL_A)*10);
和
float ret = (30.0 + GetCharacterSPECIALSimple(_refCharacter, SPECIAL_A)*10);
中的*10改成*50
游戏中人物属性每增加1点Reaction加50点energy
负重搜索GetMaxItemsWeight
将 iBonus = iBonus + CHAR_ITEMS_WEIGHT + GetCharacterSPECIALSimple(_chref, SPECIAL_S)*(GetCharacterSPECIALSimple(_chref, SPECIAL_E) + 12 - MOD_SKILL_ENEMY_RATE);
修改的 |
|