马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
大家好,今天给大家带来球球大作战内存读坐标+内存拉摇杆源码
因为风控太严,国区不能做了,源码拿着没用,就分享出来
有问题联系Q1263060
[按键精灵] 纯文本查看 复制代码 Dim A,X地址,Y地址,摇杆X地址,摇杆Y地址,当前X,当前Y
Dim 目标X=50.0
Dim 目标Y=30.0
//人物坐标
A = Sys.MemorySearch("com.ztgame.bob", True,"0x0", {{"lv":2143289344},{"lv":1065353216,"offset":16},{"lv":55650815,"offset":160}}, "i32",0,1)
X地址 = "0x" & Hex(CLng("0x" & Right(A(0), Len(A(0)) - 2)) - 60)
Y地址 = "0x" & Hex(CLng("0x" & Right(A(0), Len(A(0)) - 2)) - 56)
//摇杆坐标(内存拉摇杆)
A = Sys.MemorySearch("com.ztgame.bob", True,"0x0", {{"lv":1034147594}, {"lv":1039516303,"offset":40}}, "i32",0,1)
摇杆X地址 = "0x" & Hex(CLng("0x" & Right(A(0), Len(A(0)) - 2)) - 44)
摇杆Y地址 = "0x" & Hex(CLng("0x" & Right(A(0), Len(A(0)) - 2)) - 40)
//=======================================================================================================================
//读坐标
当前X = CDbl(Sys.MemoryRead("com.ztgame.bob", X地址, "f32"))
当前Y = CDbl(Sys.MemoryRead("com.ztgame.bob", Y地址, "f32"))
//拉摇杆
Sys.MemoryWrite("com.ztgame.bob",摇杆X地址,Cstr(目标X - 当前X), "f32")
Sys.MemoryWrite("com.ztgame.bob",摇杆Y地址,Cstr(目标Y - 当前Y), "f32")
|