Page 1 of 1

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

Posted: Mon Aug 08, 2022 11:07 am
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.


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

Posted: Mon Aug 08, 2022 10:44 pm
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.


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

Posted: Tue Aug 09, 2022 8:57 am
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


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

Posted: Tue Aug 09, 2022 2:19 pm
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


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

Posted: Tue Aug 09, 2022 2:22 pm
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.


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

Posted: Tue Aug 09, 2022 3:16 pm
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


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

Posted: Wed Aug 10, 2022 3:19 pm
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


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

Posted: Wed Aug 10, 2022 8:55 pm
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


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

Posted: Thu Aug 18, 2022 9:20 am
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..


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

Posted: Sat Sep 17, 2022 7:47 am
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.