[REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

A forum for requesting cheat tables, trainers, or tools


Moderator: Table Moderator

Post Reply
User avatar
justNOPing
Novice Hacker
Novice Hacker
Posts: 26
Joined: Mon Aug 08, 2022 10:02 am
Answers: 0
Location: newmem
x 19

[REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by justNOPing »

Hey there, apologies in advance since I wasn't really able to find appropriate sub on this forum.
I'm looking for a table/AASM scripts featuring No Cooldown/Fast Build/Fast Use etc. or any other that manipulate with timer Float or Double values. I wasn't really able to find much on YT. I'm having trouble with float point value instruction, so I want to dive deeper into this and look at work of others.


User avatar
MarianaRoses
Table Master
Table Master
Apprentice Hacker
Apprentice Hacker
Posts: 58
Joined: Thu Jul 21, 2022 7:52 am
Answers: 0
x 116

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by MarianaRoses »

justNOPing wrote: Mon Aug 08, 2022 11:07 am

Hey there, apologies in advance since I wasn't really able to find appropriate sub on this forum.
I'm looking for a table/AASM scripts featuring No Cooldown/Fast Build/Fast Use etc. or any other that manipulate with timer Float or Double values. I wasn't really able to find much on YT. I'm having trouble with float point value instruction, so I want to dive deeper into this and look at work of others.

Depending on the game, you're trying to cheat as some games increase instead of decrease into a certain value before indicating cooldown reset.
Most game uses the same concept which time = 0 and some use the start time minus the shown time = the real time value, there is more variation beside this. You just need to monitor the value till the cooldown, build, uses reset.

Imo, the easiest would be zeroing the value to itself by xor if time = 0.

Edit1.0: Sorry, I didn't attached an example table, I forgot which game I did this as I only found the 4-bytes on cooldown one. Look into xorps, xorpd, or movss, movsd.

Creating cheat for a hobby, not obligated for requests or update.
My ct will always be free to be shared without removing the credit or where it originally came from.
Anyone can update in case I'm not doing this anymore.


User avatar
bbfox
Table Master
Table Master
Journeyman Hacker
Journeyman Hacker
Posts: 365
Joined: Sat Jul 23, 2022 8:59 am
Answers: 0
x 772

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by bbfox »

justNOPing wrote: Mon Aug 08, 2022 11:07 am

Hey there, apologies in advance since I wasn't really able to find appropriate sub on this forum.
I'm looking for a table/AASM scripts featuring No Cooldown/Fast Build/Fast Use etc. or any other that manipulate with timer Float or Double values. I wasn't really able to find much on YT. I'm having trouble with float point value instruction, so I want to dive deeper into this and look at work of others.

In general, you can search "multiplier". Fast xxx is usually just fill the value to a max value or 0, depends how the value designed.
In your case, a multiplier should be easier to find. Just find a table with multiplier scripts that accept float value as factor.

Belows are my tables:
Float to float: (SSE)
Script "Fast dual gauge": https://opencheattables.com/viewtopic.php?t=41

Integer -> Float calculation -> Integer: (AVX)
Script "核心EXP倍率 / Core EXP multiplier": https://opencheattables.com/viewtopic.php?t=222

Float to float: (AVX)
Script "Damage multiplier to all non-player": https://opencheattables.com/viewtopic.php?t=34


Table is free to use, but need to leave the author's name and source URL: https://opencheattables.com.
Table will not be up-to-date. Feel free to modify it, but leave credit to the source.
Tip me a coffee? https://ko-fi.com/bbfoxmodding


User avatar
justNOPing
Novice Hacker
Novice Hacker
Posts: 26
Joined: Mon Aug 08, 2022 10:02 am
Answers: 0
Location: newmem
x 19

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by justNOPing »

bbfox wrote: Tue Aug 09, 2022 8:57 am

In general, you can search "multiplier". Fast xxx is usually just fill the value to a max value or 0, depends how the value designed.
In your case, a multiplier should be easier to find. Just find a table with multiplier scripts that accept float value as factor.

Belows are my tables:

Oh man, that was a lot of help! Thank you so much


User avatar
Marcus101RR
Administrator
Administrator
Journeyman Hacker
Journeyman Hacker
Posts: 147
Joined: Thu Jul 21, 2022 7:43 am
Answers: 0
Location: Tampa, FL
x 252
Contact:
Marcus101RR’s avatar
tModLoader

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by Marcus101RR »

justNOPing wrote: Mon Aug 08, 2022 11:07 am

Hey there, apologies in advance since I wasn't really able to find appropriate sub on this forum.
I'm looking for a table/AASM scripts featuring No Cooldown/Fast Build/Fast Use etc. or any other that manipulate with timer Float or Double values. I wasn't really able to find much on YT. I'm having trouble with float point value instruction, so I want to dive deeper into this and look at work of others.

Please try to follow the format next time so it is easier to get what you are looking for. View it here.


User avatar
justNOPing
Novice Hacker
Novice Hacker
Posts: 26
Joined: Mon Aug 08, 2022 10:02 am
Answers: 0
Location: newmem
x 19

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by justNOPing »

Marcus101RR wrote: Tue Aug 09, 2022 2:22 pm

Please try to follow the format next time so it is easier to get what you are looking for. View it here.

Sure thing, but I wasn't really able to find the corresponding info about general requests. I didn't really need a specific game for this request, that was just about scripts themselves hence i had to post thread the way I did


tigertoe
Table Maker
Table Maker
Cheater
Cheater
Posts: 19
Joined: Sun Aug 07, 2022 7:51 am
Answers: 0
x 30

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by tigertoe »

Also, be aware that some older games use FPU registers instead of XMM registers for floats. FPU registers work completely different and have their own instruction set.

https://en.wikibooks.org/wiki/X86_Assem ... ting_Point


User avatar
bbfox
Table Master
Table Master
Journeyman Hacker
Journeyman Hacker
Posts: 365
Joined: Sat Jul 23, 2022 8:59 am
Answers: 0
x 772

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by bbfox »

tigertoe wrote: Wed Aug 10, 2022 3:19 pm

Also, be aware that some older games use FPU registers instead of XMM registers for floats. FPU registers work completely different and have their own instruction set.

https://en.wikibooks.org/wiki/X86_Assem ... ting_Point

For these games, I'm lazy, so I will use XMM registers, too. But need basic FPU knowledge to know how the value works in FPU. Usually these games are 32-bit.
Injected code is handled by CE, so if CE recognized SSE instructions, there will be no problem. The only thing is XMM registers only up to XMM7 in 32-bit mode. AVX is not available in 32-bit.

Samples:
Script "XP Multiplier", "Master Quartz XP multiplier": https://opencheattables.com/viewtopic.php?t=13

Script "Score multiplier": https://opencheattables.com/viewtopic.php?t=23


Table is free to use, but need to leave the author's name and source URL: https://opencheattables.com.
Table will not be up-to-date. Feel free to modify it, but leave credit to the source.
Tip me a coffee? https://ko-fi.com/bbfoxmodding


User avatar
justNOPing
Novice Hacker
Novice Hacker
Posts: 26
Joined: Mon Aug 08, 2022 10:02 am
Answers: 0
Location: newmem
x 19

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by justNOPing »

bbfox wrote: Wed Aug 10, 2022 8:55 pm

Also, be aware that some older games use FPU registers instead of XMM registers for floats. FPU registers work completely different and have their own instruction set.

As lazy as it sounds, that's quite a clever approach. Tysm..


leviackerman
Curious
Curious
Posts: 3
Joined: Sat Sep 17, 2022 7:31 am
Answers: 0

Re: [REQUEST] ANY TABLE WITH NO CD/FAST BUILD ETC.

Post by leviackerman »

justNOPing wrote: Mon Aug 08, 2022 11:07 am

Hey there, apologies in advance since I wasn't really able to find appropriate sub on this forum.
I'm looking for a table/AASM scripts featuring No Cooldown/Fast Build/Fast Use etc. or any other that manipulate with timer Float or Double values. I wasn't really able to find much on YT. I'm having trouble with float point value instruction, so I want to dive deeper into this and look at work of others.

your content is awesome, i am graceful to you.


Post Reply