美文网首页
TO OV mod Codes

TO OV mod Codes

作者: 小电视 | 来源:发表于2020-06-24 15:38 被阅读0次
  • 取消塔罗牌加成
    建议一直开着
_C1 No Tarot Stat Bonus
_L 0x20025C28 0x34060000
_L 0x20025C34 0x34060000

ZUESPOS4 May 12 2020

Hi raics I found the games class address from someone compiling his notes online here's his link.

https://docs.google.com/spreadsheets/d/1pEGi5H6LflzAzjXMqlW-2Ou3-4dyrNs_rRT65g5hzbo/edit?usp=sharing

The format is like this:

Address Offset Base + 3 Base + 2 Base + 1 Base + 0
2E7E90 0 0 0 0 nothing Level
2E7E94 4 nothing EXP
2E7E98 8 0 0 0 Warrior Level
2E7E9C C Warrior EXP

I figured I'd just replace this digits 2E7E90 and 2E7E94 from the code below by the address of the class I want to reset the level. But some other class also reset to level 1.

_C0 All Professions Level 1
_L 0x402E7E90 0x00500002
_L 0x00000001 0x00000000
_L 0x402E7E94 0x00500002
_L 0x00000000 0x00000000

My question is what does offset mean from the table? Also how can I target the class I want to change the level of?

raics May 13 2020
The code you used is a multiwrite, so when you change the address you just changed where it starts and the tail end of the code will start wiping your item data.

So, to target a single class, you need to use a single write, like this
_C0 Class Level Reset
_L 0x202E7E90 0x00000001
_L 0x202E7E94 0x00000000

That code will target the 'nothing' class at position 0, so to target Knight, which is at position 6, you have to add the offset, which is 8, to both addresses 6 times, so that's 48, when converted to hex it's 30, which you add to the above and get this:
_C0 Knight Level Reset
_L 0x202E7EC0 0x00000001
_L 0x202E7EC4 0x00000000

修改等级时有一行是等级, 一行是总经验. 如果等级不是 1 , 但把总经验设定为 0 的话可能会出现 "获得了经验但是经验条仍然是空的" 这种情况.
从第 n 级升级到 n+1 级需要的经验是 40n, 根据这个可以计算出到某个级别时需要多少总经验. 按照这个设定总经验之后, 就可以正常升级了. 按照惯例, 数值都需转化为十六进制.

相关文章

  • TO OV mod Codes

    取消塔罗牌加成建议一直开着 简易代码https://nichegamescom.wordpress.com/201...

  • windows batch runs in background

    add some codes in the before of your codes link

  • CFNetwork错误代码引用

    All error codes are on "CFNetwork Errors Codes References...

  • Regex validate PIN code(codewars

    ATM machines allow 4 or 6 digit PIN codes and PIN codes c...

  • NVIDIA Samples

    0. Build Nvidia Sample Codes Make CUDA sample codes for d...

  • scrapy遇到403 500 502等状态码时的应对

    遇到错误忽略掉不重新请求,则设成[] RETRY_HTTP_CODES = [] RETRY_HTTP_CODES...

  • checkbox codes

    function trClick() {(this).css("background-color", "#fffd...

  • some codes

    最近有个小需求,需要对指定层数的目录进行遍历查找 打印进度条 列表嵌套展开 参考资料 字典互换键值对 参考资料la...

  • JS codes

    begin: 20170621version: 20170724 BOM相关 获取屏幕宽度 获取URL的查询字符串...

  • Status Codes

    Status Codes 不推荐在响应中只使用单独的状态码。 REST框架包括一组命名常量,可用于使更多代码更明显...

网友评论

      本文标题:TO OV mod Codes

      本文链接:https://www.haomeiwen.com/subject/mzirfktx.html