Swim, Speed and wall hacks
Forum rules
Only post additional bot resources here. Please do not ask unrelated questions.
Only post additional bot resources here. Please do not ask unrelated questions.
Re: Swim, Speed and wall hacks
Hey lisa, thanks for the script. It's working very well. It doesn't reset anymore.
Although, I have questions about the other hacks:
1.) I'd like to write a function to query whether swimhack is on or off, what do I "MemoryRead" for this? And what are the values I should look for to determine that swimhack is on or off?
2.) I always thought that the wall hack was for passing through walls, but I've tried it in some walls and it didn't make the char pass through them. So just wondering what exactly the wall hack does.
Thanks.
Although, I have questions about the other hacks:
1.) I'd like to write a function to query whether swimhack is on or off, what do I "MemoryRead" for this? And what are the values I should look for to determine that swimhack is on or off?
2.) I always thought that the wall hack was for passing through walls, but I've tried it in some walls and it didn't make the char pass through them. So just wondering what exactly the wall hack does.
Thanks.
Last edited by kenzu38 on Wed Jan 30, 2013 11:25 am, edited 1 time in total.
Re: Swim, Speed and wall hacks
The value you read would be the same as the one we write to.
Of course this will return true also if you are really swimming.
The wall hack allows you to climb things you would normally not be able to climb. Useful if you tend to slip off a hill in a particular waypoint or pulled off by mobs, then can't get back to the waypoint at the top of the hill. With the wallhack you can.
Code: Select all
local offsets = {addresses.charPtr_offset, addresses.pawnSwim_offset1, addresses.pawnSwim_offset2}
local swimming = memoryReadIntPtr(getProc(), addresses.staticbase_char, offsets) == 4
The wall hack allows you to climb things you would normally not be able to climb. Useful if you tend to slip off a hill in a particular waypoint or pulled off by mobs, then can't get back to the waypoint at the top of the hill. With the wallhack you can.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Swim, Speed and wall hacks
I see. Lol really thought it was for passing through walls haha.
Anyway, thanks for the code. Will test this later today.
Anyway, thanks for the code. Will test this later today.
Re: Swim, Speed and wall hacks
lol, very nice farm eggs with this speed , thnx for the script
SpeedUpByProcent
I've found that there is no absolute speed value that is to high and does a pull back. But there is a relative value.
On my client it is 115%. I can speed up to 115% of original value (this means 15% buff to speed) and there won't be any pull backs.
I wanted to have that 15% buff speed permanently.
I wanted it to be dynamic and change my speed whenever i get a speed (de)buff.
So I've wrote this function, based on Lisa's speedhack addon.
You can call this func in bot via timer or make a separate waypoint with function call and yrest inside infinite loop.
On my client it is 115%. I can speed up to 115% of original value (this means 15% buff to speed) and there won't be any pull backs.
I wanted to have that 15% buff speed permanently.
I wanted it to be dynamic and change my speed whenever i get a speed (de)buff.
So I've wrote this function, based on Lisa's speedhack addon.
Code: Select all
function SpeedUpByProcent(procent)
--[[
1. Takes a number,
2. Increases speed value in rom client memory by given procent, unless the speed was already increased,
3. Returnes bool. True if succeded, otherwise false.
]]--
if procent == nil then
procent = 14
end
if type(procent) ~= "number" then
printf("Incorrect usage of function SpeedUpByProcent().\n")
return false
end
local playerAddress = memoryReadIntPtr(getProc(), addresses.staticbase_char, addresses.charPtr_offset);
local mount = memoryReadInt(getProc(), playerAddress + addresses.charPtrMounted_offset);
if playerAddress ~= 0 then
current_speed=memoryReadFloat(getProc(), playerAddress + 0x40);
if mount ~= 0 then
current_speed=memoryReadFloat(getProc(), mount + 0x40);
end
if math.floor((current_speed-math.floor(current_speed))*10000)==1234 then --memo last written by this func
return false
end
else
printf("Memo read error. Speed was not changed.\n")
return false
end
new_speed = math.floor(current_speed*(1+procent/100.0))+0.1234567
-- this last fraction is sort of mark that speed was written by this func, not by rom client
if mount == 0 then
memoryWriteFloat(getProc(), playerAddress + 0x40, new_speed);
else
memoryWriteFloat(getProc(), mount + 0x40, new_speed);
end
printf("Speed changed from: "..tostring((current_speed)).." to: "..tostring((new_speed))..".\n")
return true
end
Re: Swim, Speed and wall hacks
kkulesza, your idea is great.
Thanks for sharing.
Mine idea was to detect pulled back and distance break and decrease the speed till normal speed.
However, I could not figure out how to do it yet.
Thanks for sharing.
Mine idea was to detect pulled back and distance break and decrease the speed till normal speed.
However, I could not figure out how to do it yet.
Re: Swim, Speed and wall hacks
Well I've been pulled back even when not using a speed hack so....
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Swim, Speed and wall hacks
doing survival manually with no hacks or speed pots I get pulled back constantly.
It is a great idea but at the end of the day I think different people will have varying results, what might work awesome for you might make someone else constantly get pulled back.
It is a great idea but at the end of the day I think different people will have varying results, what might work awesome for you might make someone else constantly get pulled back.
Remember no matter you do in life to always have a little fun while you are at it
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Swim, Speed and wall hacks
I just used these functions and received this following message:
"Client Data Mistake. Reported to server"
I searched on forums and didn't find anything.
In the waypoint, I was swimming in the air above mobs. Obviously not possible without this hack. So am I in jeopardy of being banned when that message appears?
"Client Data Mistake. Reported to server"
I searched on forums and didn't find anything.
In the waypoint, I was swimming in the air above mobs. Obviously not possible without this hack. So am I in jeopardy of being banned when that message appears?
Re: Swim, Speed and wall hacks
no, you're not.
The server get's millions or billions of such messages every day.
I dont think you can get banned for that...
The server get's millions or billions of such messages every day.
I dont think you can get banned for that...
Re: Swim, Speed and wall hacks
If that is the case , why couldn't I find a single person posting about this issue? It is a scary message. How do you know that it receives millions of these messages? Why isn't there a major thread talking about it?dr-nuker wrote:no, you're not.
The server get's millions or billions of such messages every day.
I dont think you can get banned for that...
Re: Swim, Speed and wall hacks
I don't remember the exact wording but I used to get messages like these when flying with the 'survival' script. I just ignored them.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Swim, Speed and wall hacks
I used to get this all the time when running Course of Terror manually. And when using the Ancient Treasure script I get it 3 times (I think) when rising up to fly. The message is badly worded but only means that the data in the client does not match what is on the server and the server was contacted for correct info. Like I said, I would get this when message when not botting and not doing anything funny. It is not a bot alert or anything to worry about.s018mes wrote:If that is the case , why couldn't I find a single person posting about this issue? It is a scary message. How do you know that it receives millions of these messages? Why isn't there a major thread talking about it?dr-nuker wrote:no, you're not.
The server get's millions or billions of such messages every day.
I dont think you can get banned for that...
ETA: There was a thread about this some time ago but was apparently lost when the forums got redone.
Re: Swim, Speed and wall hacks
Hey lisa, hello rock.
Is it possible, based on swimhack, to create a "No Fall Hack" dynamically? I've found the right pointer, wich should be frozen (0x44D691) but how to realize it using the offset similar to this (memoryWriteString(getProc(), ...)
Any Idea?
thx in advance!
Is it possible, based on swimhack, to create a "No Fall Hack" dynamically? I've found the right pointer, wich should be frozen (0x44D691) but how to realize it using the offset similar to this (memoryWriteString(getProc(), ...)
Any Idea?
thx in advance!
Re: Swim, Speed and wall hacks
Doesn't flying make you not fall. So what do you mean? What does your address do?
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Swim, Speed and wall hacks
swim hack makes you swim,
no fly makes it so you don't go up or down, you can ride your mount and u will stay at the same lvl, unless u are on "ground" that makes you go up.
Something like that anyway, would need testing to see if it's easy or hard to do but yeah it "should" be possible.
no fly makes it so you don't go up or down, you can ride your mount and u will stay at the same lvl, unless u are on "ground" that makes you go up.
Something like that anyway, would need testing to see if it's easy or hard to do but yeah it "should" be possible.
Remember no matter you do in life to always have a little fun while you are at it
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Swim, Speed and wall hacks
Well that address didn't change for me so I don't think locking it will make a difference.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Swim, Speed and wall hacks
Lisa you've right. What I'm indending is to create a function to stay on the same Z-level (not swimming). The whole Idea is to realize a suicide-script working in ANY area, because SetCameraPosition dont work anywhere. Long time ago I've used "Romeos Multihack" which contains the function named "No Fall" - it locks your position on Z-coordinate. So, when you going upwards (teleporting upwards) during the "no fall" function was locked, it has caused the instant-death.
@rock: the address is the same, which romeo's multihack is using (seeing this in the CurPatchPtrs.txt)
@rock: the address is the same, which romeo's multihack is using (seeing this in the CurPatchPtrs.txt)
Re: Swim, Speed and wall hacks
Does romeos no fall still work?
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Swim, Speed and wall hacks
Yes. Also the flyhack, teleport, speed and some other thingsrock5 wrote:Does romeos no fall still work?
Who is online
Users browsing this forum: Bing [Bot] and 3 guests