Page 8 of 10

Re: Second Extinction

Posted: Fri Apr 30, 2021 7:58 pm
by SvT
Anyone who is playing on the GamePass version (untested but might work on Steam) and is having trouble with the "Precision Strike" achievement, try this table.

Features:
1. No skill cooldown (tested with Ortega)
2. Prevent T-Rex health regen

If you have the Thumper (unlocked at level 9), you can shoot the T-Rex until it's pretty low and then just spam Thumpers all around the dinosaur. It will not be able to regen health, which is the part that makes this achievement so annoying. Each "shockwave" of the Thumper will do a small amount of damage and you are able to unlock the achievement this way.

Re: Second Extinction

Posted: Fri Apr 30, 2021 8:09 pm
by imjustmaxie
Alternative / Supplement table.
Just started messing with it an hour ago.

Game: Second Extinction
Process: SecondExtinctionGDK.exe
Platform: UWP | Xbox Game Pass
Engine: APEX Engine

Table Version: 0.1.3

Options:

Code: Select all

- PTRs
- HEALTH
1. Max Health
2. Easy Kills

- WEAPON
1. No Reload
2. Minimum Recoil
3. Minimum Spread

- ABILITY
1. Max Throwables
2. Max Cast | Stims
3. Max Passive Ability (unsure)
4. Max Ability Duration*
5. No Ability Cooldown
*Abilities will turn on indefinitely (except for certain abilities like Precision Strike)[/super]

Feel free to share the link directly to the original post itself :D

Re: Second Extinction

Posted: Fri Apr 30, 2021 8:41 pm
by XxDarkus101Xx
Dadandburied wrote:
Fri Apr 30, 2021 2:40 pm
XxDarkus101Xx wrote:
Thu Apr 29, 2021 11:38 pm
anybody know why I cannot have these cheats to work. I went into game and nothing is working except unlimited ammo, recoil and spread. Not even unlimited health works
unlimited ammo
unlimited grenades
ability
health stim
Are you using the steam version or gamepass version?
Steam

Re: Second Extinction

Posted: Sat May 01, 2021 10:32 pm
by NumberXer0
Just popped back to this game to see whats been added over the past few months. Everything seems to be functional on the table besides the Kill Assignment stuff. There was a patch recently, so that may have broken it. Everything else works great =)

Re: Second Extinction

Posted: Sun May 02, 2021 1:39 am
by Akira
NumberXer0 wrote:
Sat May 01, 2021 10:32 pm
Just popped back to this game to see whats been added over the past few months. Everything seems to be functional on the table besides the Kill Assignment stuff. There was a patch recently, so that may have broken it. Everything else works great =)
Yeh didn't fixed that yet, as I said in the first post:
Akira wrote:
Tue Oct 13, 2020 1:12 pm
All Scripts in "Character" & "Weapon" are working fine.
Well when using the one hit kill just ignore the undead dinos xD


Will try to fix the assignment pointers soon.

Re: Second Extinction

Posted: Sun May 02, 2021 10:07 am
by P0P0karimu
imjustmaxie wrote:
Fri Apr 30, 2021 8:09 pm
Alternative / Supplement table.
Just started messing with it an hour ago.

Game: Second Extinction
Process: SecondExtinctionGDK.exe
Platform: UWP | Xbox Game Pass
Engine: APEX Engine

Table Version: 0.1.3

Options:

Code: Select all

- PTRs
- HEALTH
1. Max Health
2. Easy Kills

- WEAPON
1. No Reload
2. Minimum Recoil
3. Minimum Spread

- ABILITY
1. Max Throwables
2. Max Cast | Stims
3. Max Passive Ability (unsure)
4. Max Ability Duration*
5. No Ability Cooldown
*Abilities will turn on indefinitely (except for certain abilities like Precision Strike)[/super]

Feel free to share the link directly to the original post itself :D
Thanks bro Everything's working like a Charm, Can u Pls add Fast XP Or Fast Leveling-Up

Re: Second Extinction

Posted: Sun May 02, 2021 10:12 am
by Akira
P0P0karimu wrote:
Sun May 02, 2021 10:07 am
Thanks bro Everything's working like a Charm, Can u Pls add Fast XP Or Fast Leveling-Up
XP is most likely server sided and can't be cheated since the savegame is server sided.

But you can reach pretty fast the max lvl by playing a mission till calling the drop ship and then just staying there and kill dinos.

Re: Second Extinction

Posted: Thu May 06, 2021 11:37 am
by YoucefHam
Hi, :D
I was just annoyed by One hit kill, the dino still standing, so I did some trace of the code and found out that its better to put it with "Prevent T-Rex Health Regen",
so here is the change I made, now the dino die.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>32056</ID>
      <Description>"Prevent T-Rex Health Regen / One Hit Kill"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <LastState Activated="1"/>
      <Color>008000</Color>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]

//aobscanmodule(noRegen,SecondExtinctionGDK.exe,66 89 91 3E 03 00 00 0F)
aobscanmodule(noRegen,SecondExtinction_F.exe,66 89 ? ? ? ? ? 0F B7 ? ? ? ? ? 0F B7 ? 66 85)
alloc(newmem,$1000,noRegen)

label(code)
label(return)
label(OneHitKill)
label(TRexHealthRegen)
label(_OneHitKill)
label(_TRexHealthRegen)
newmem:
  cmp byte ptr [rcx+0000033E+6],3
  je return
_OneHitKill:
  cmp [OneHitKill],01
  jne _TRexHealthRegen
  mov dx,FFFA
_TRexHealthRegen:
  cmp [TRexHealthRegen],01
  jne code
  cmp dx,[rcx+0000033E]
  jg return
code:
  mov [rcx+0000033E],dx
  jmp return
OneHitKill:
  dd 0
TRexHealthRegen:
  dd 0
noRegen:
  jmp newmem
  nop 2
return:
registersymbol(noRegen,OneHitKill,TRexHealthRegen)

[DISABLE]
noRegen:
  db 66 89 91 3E 03 00 00
unregistersymbol(noRegen,OneHitKill,TRexHealthRegen)
dealloc(newmem)
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>46071</ID>
          <Description>"One Hit Kill"</Description>
          <LastState Activated="1"/>
          <Color>008000</Color>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
OneHitKill:
dd 1
[DISABLE]
OneHitKill:
dd 0

</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>46072</ID>
          <Description>"T-Rex No Health Regen"</Description>
          <LastState Activated="1"/>
          <Color>008000</Color>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
TRexHealthRegen:
dd 1
[DISABLE]
TRexHealthRegen:
dd 0

</AssemblerScript>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
  </CheatEntries>
</CheatTable>

Re: Second Extinction

Posted: Wed May 12, 2021 11:33 pm
by TRYL
Does anyone know how to increase the speed of time in game and possibly research points?

Re: Second Extinction

Posted: Wed May 12, 2021 11:55 pm
by Akira
TRYL wrote:
Wed May 12, 2021 11:33 pm
Does anyone know how to increase the speed of time in game and possibly research points?
Never tested if speed hack works in this game, cheat engine it self got a speed hack, just try it out.

The Save Game is server sided which ofc means that your resources are server sided which also means that you can't cheat em.

Re: Second Extinction

Posted: Fri Jul 02, 2021 8:24 am
by TheSaviour
Table works to some extent with newest update.

HP
Ability
Reserve Ammo work whilst unlimited ammo doesn't work.

Re: Second Extinction

Posted: Fri Jul 02, 2021 4:21 pm
by Akira
TheSaviour wrote:
Fri Jul 02, 2021 8:24 am
Table works to some extent with newest update.

HP
Ability
Reserve Ammo work whilst unlimited ammo doesn't work.
I'll take a look at it soon.

Edit:
Fixed most stuff, will upload the table later.


Edit:
Table Updated

Re: Second Extinction

Posted: Sat Oct 02, 2021 1:39 pm
by masakiandou
for table ver.2.8 . 1-hit kill option doesn't work on latest update.

even YoucefHam's 1-hit kill script works. (already tried it). but it's make dinos NEVER spawn in horde mode (instantly dies and no score, no cash ,no loots and make every Waves instantly ends). that made horde mode useless.

anyone can fix it? or at least..
some script that can bypass armored-skin of hammer-tail dino (doesn't know it's name). it's harder than T-rex when it's always spinning-attack.

Re: Second Extinction

Posted: Sat Oct 02, 2021 7:49 pm
by TheSaviour
Akira wrote:
Fri Jul 02, 2021 4:21 pm
TheSaviour wrote:
Fri Jul 02, 2021 8:24 am
Table works to some extent with newest update.

HP
Ability
Reserve Ammo work whilst unlimited ammo doesn't work.
I'll take a look at it soon.

Edit:
Fixed most stuff, will upload the table later.


Edit:
Table Updated
Same case for the latest update. 0.6

Re: Second Extinction

Posted: Sat Oct 02, 2021 8:25 pm
by Akira
Atm I'm busy with other tables, will look at it when I have some more time.