Page 2 of 3

Re: Insomnia: The Ark - table v0.4

Posted: Sat Sep 29, 2018 2:47 pm
by MaximStale
Kalas wrote:
Sat Sep 29, 2018 2:28 pm
"Insomnia_v2-Win64-Shipping.exe"+331B6E

Constantly accesses an item when clicking it. ( Basically you can make an editor via this addy )

To save you the trouble:

Code: Select all

{ Game   : Insomnia_v2-Win64-Shipping.exe
  Version: 
  Date   : 2018-09-29
  Author : Kalas

  This script is a pointer to Items.
  Click an item to set it to Max when Flag/Cheat is activated.

  ( Re-Enter Inventory to refresh the values )
}

[ENABLE]

//aobscanmodule(INJECT,Insomnia_v2-Win64-Shipping.exe,F3 0F 10 96 9C 00 00 00) // should be unique
define(pItem,"Insomnia_v2-Win64-Shipping.exe"+331B6E)
alloc(newmem,$100,pItem)

label(code)
label(return)

label(ItemPtr)
label(_ItemSet)
registersymbol(ItemPtr)
registersymbol(_ItemSet)

newmem:

{

Item +D4

}

  mov [ItemPtr],rsi

  cmp [_ItemSet],0
  je NExit
  fld [rsi+A0] // Load Max
  fstp [rsi+9C] // Store Max

NExit:

code:
  movss xmm2,[rsi+0000009C]
  jmp return

ItemPtr:
  dq 0
_ItemSet:
  dd 0

pItem:
  jmp newmem
  nop
  nop
  nop
return:
registersymbol(pItem)

[DISABLE]

pItem:
  db F3 0F 10 96 9C 00 00 00

unregistersymbol(pItem)
unregistersymbol(ItemPtr)
unregistersymbol(_ItemSet)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: "Insomnia_v2-Win64-Shipping.exe"+331B6E

"Insomnia_v2-Win64-Shipping.exe"+331B45: 4C 89 AC 24 88 00 00 00  -  mov [rsp+00000088],r13
"Insomnia_v2-Win64-Shipping.exe"+331B4D: FF 90 D0 03 00 00        -  call qword ptr [rax+000003D0]
"Insomnia_v2-Win64-Shipping.exe"+331B53: 0F 2E F7                 -  ucomiss xmm6,xmm7
"Insomnia_v2-Win64-Shipping.exe"+331B56: 44 0F B6 F8              -  movzx r15d,al
"Insomnia_v2-Win64-Shipping.exe"+331B5A: 0F 28 7C 24 50           -  movaps xmm7,[rsp+50]
"Insomnia_v2-Win64-Shipping.exe"+331B5F: 0F 28 74 24 60           -  movaps xmm6,[rsp+60]
"Insomnia_v2-Win64-Shipping.exe"+331B64: 74 05                    -  je Insomnia_v2-Win64-Shipping.exe+331B6B
"Insomnia_v2-Win64-Shipping.exe"+331B66: 41 B5 01                 -  mov r13l,01
"Insomnia_v2-Win64-Shipping.exe"+331B69: EB 03                    -  jmp Insomnia_v2-Win64-Shipping.exe+331B6E
"Insomnia_v2-Win64-Shipping.exe"+331B6B: 45 32 ED                 -  xor r13l,r13l
// ---------- INJECTING HERE ----------
"Insomnia_v2-Win64-Shipping.exe"+331B6E: F3 0F 10 96 9C 00 00 00  -  movss xmm2,[rsi+0000009C]
// ---------- DONE INJECTING  ----------
"Insomnia_v2-Win64-Shipping.exe"+331B76: 4C 8D B6 80 00 00 00     -  lea r14,[rsi+00000080]
"Insomnia_v2-Win64-Shipping.exe"+331B7D: 0F 28 C2                 -  movaps xmm0,xmm2
"Insomnia_v2-Win64-Shipping.exe"+331B80: B8 18 00 00 00           -  mov eax,00000018
"Insomnia_v2-Win64-Shipping.exe"+331B85: F3 41 0F 59 06           -  mulss xmm0,[r14]
"Insomnia_v2-Win64-Shipping.exe"+331B8A: 0F 28 CA                 -  movaps xmm1,xmm2
"Insomnia_v2-Win64-Shipping.exe"+331B8D: F3 0F 59 4D 6F           -  mulss xmm1,[rbp+6F]
"Insomnia_v2-Win64-Shipping.exe"+331B92: 8B 04 07                 -  mov eax,[rdi+rax]
"Insomnia_v2-Win64-Shipping.exe"+331B95: 39 05 91 73 3C 03        -  cmp [Insomnia_v2-Win64-Shipping.exe+36F8F2C],eax
"Insomnia_v2-Win64-Shipping.exe"+331B9B: F3 0F 59 55 77           -  mulss xmm2,[rbp+77]
"Insomnia_v2-Win64-Shipping.exe"+331BA0: F3 0F 11 45 C7           -  movss [rbp-39],xmm0
}

HOLY SHIT THANKS A LOT

Re: Insomnia: The Ark - table v0.5

Posted: Sat Sep 29, 2018 6:03 pm
by KatzSmile
Insomnia: The Ark - table v0.5
Game Name: Insomnia: The Ark
Game Engine: Unreal Engine 4
Game Vendor: Steam
Game Version: 1.0 (Update 1)
Game Process: Insomnia_v2-Win64-Shipping.exe
Game File Version: 4.16.3.0

Functions:
- Stats script
-- Health
-- Hunger
-- Thrist
-- Some readonly stats
-- Godmode cheat
- Stamina script
-- Unlimited stamina cheat
- XP script
- Selected item script (courtecy of Kalas)
-- Quantity
-- Some readonly values

Re: Insomnia: The Ark - table v0.5

Posted: Sun Sep 30, 2018 5:30 pm
by MarvinFS
XP script doesn't work everything else works as expected - patch 1 official steam ver... any suggestions?
Image

Re: Insomnia: The Ark - table v0.5

Posted: Sun Sep 30, 2018 5:37 pm
by Kalas
It's an option that the code needs to be executed at least once, try to open inventory and close it, then the pointer should refresh.

Re: Insomnia: The Ark - table v0.5

Posted: Sun Sep 30, 2018 5:49 pm
by MarvinFS
yep thanks, was not so obvious! tried several times, eventually it worked, when not selected...
Anyhow just if anyone is interested - found a working cheat here - works just fine for me: need to load the game, then alt-tab to cheat and activate from there - doesn't work when in game window...
ht__://fearlessrevolution.com/load/categories/trainers/insomnia_the_ark_trainer_12_v1_0_futurex/28-1-0-6401
hmm it hides the address.. anyhow it's the rest is correct there
fearlessrevolution com

Re: Insomnia: The Ark - table v0.6

Posted: Mon Oct 01, 2018 5:55 pm
by KatzSmile
Insomnia: The Ark - table v0.6
Game Name: Insomnia: The Ark
Game Engine: Unreal Engine 4
Game Vendor: Steam
Game Version: 1.0 (Update 1)
Game Process: Insomnia_v2-Win64-Shipping.exe
Game File Version: 4.16.3.0

Functions:
- Stats script
-- Health %
-- Health Max
-- Hunger
-- Thrist
-- Some defence stats
-- Godmode cheat
- Stamina script
-- Unlimited stamina cheat
- XP script
-- XP Points
-- Level
-- Skill Points
- Selected item script (courtecy of Kalas)
-- Quantity
-- Max Quantity
-- Cost
-- Durability
-- Max Durability
-- Weight

Re: Insomnia: The Ark - table v0.6

Posted: Mon Oct 01, 2018 7:51 pm
by Ravenear
KatzSmile big thanks for your hard work ;)

Re: Insomnia: The Ark - table v0.6

Posted: Tue Oct 02, 2018 10:48 am
by stonetoes
Thanks Katzmile and Kalas.

A little tip: you can edit the weight of item to a negative number to increase carryweight. I changed dalok's pack (found in your locker in the vulture's nest) to -80. It should work with any item though, and even stays when you load game without cheatengine running.

Re: Insomnia: The Ark - table v0.6

Posted: Tue Oct 02, 2018 12:31 pm
by KatzSmile
stonetoes wrote:
Tue Oct 02, 2018 10:48 am
Thanks Katzmile and Kalas.

A little tip: you can edit the weight of item to a negative number to increase carryweight. I changed dalok's pack (found in your locker in the vulture's nest) to -80. It should work with any item though, and even stays when you load game without cheatengine running.
Thats because each item in the inventory not a world object, but a copy, so you can edit as much as you want without affecting any other similar item in game. It is even possible to replace item with another, but not right now, because you will need to know all possible parametres for this item and change them whole to the new one. So you can even create your one unique item, like +100500 healing vial )))

Re: Insomnia: The Ark - table v0.6

Posted: Wed Oct 03, 2018 5:30 pm
by Ravenear
In future updates can i ask for Somnia pointer?

Re: Insomnia: The Ark - table v0.7

Posted: Thu Oct 04, 2018 5:45 pm
by KatzSmile
Insomnia: The Ark - table v0.7
Game Name: Insomnia: The Ark
Game Engine: Unreal Engine 4
Game Vendor: Steam
Game Version: 1.0 (Update 1)
Game Process: Insomnia_v2-Win64-Shipping.exe
Game File Version: 4.16.3.0

Functions:
- Stats script
-- Health %
-- Health Max
-- Hunger
-- Thrist
-- Somnia Level
-- Some defence stats
-- Godmode cheat
- Stamina script
-- Unlimited stamina cheat
- XP script
-- XP Points
-- Level
-- Skill Points
- Selected item script (courtecy of Kalas)
-- Quantity
-- Max Quantity
-- Cost
-- Durability
-- Max Durability
-- Weight
- Player Coords
-- X
-- Y
-- Z

Re: Insomnia: The Ark - table v0.7

Posted: Fri Oct 05, 2018 12:37 pm
by wolfsy
stats doesnt seem to work for me, even after the update everything else opens and works
edit: worked after restard neverminde :D

Re: Insomnia: The Ark - table v0.7 (hotfix 2)

Posted: Fri Oct 05, 2018 4:43 pm
by KatzSmile
Insomnia: The Ark - table v0.7 (hotfix 2)
Game Name: Insomnia: The Ark
Game Engine: Unreal Engine 4
Game Vendor: Steam
Game Version: 1.0 (Update 2)
Game Process: Insomnia_v2-Win64-Shipping.exe
Game File Version: 4.16.3.0

Functions:
- Stats script
-- Health %
-- Health Max
-- Hunger
-- Thrist
-- Somnia Level
-- Some defence stats
-- Godmode cheat
- Stamina script
-- Unlimited stamina cheat
- XP script
-- XP Points
-- Level
-- Skill Points
- Selected item script (courtecy of Kalas)
-- Quantity
-- Max Quantity
-- Cost
-- Durability
-- Max Durability
-- Weight
- Player Coords
-- X
-- Y
-- Z

Re: Insomnia: The Ark - table v0.7 (hotfix 2)

Posted: Sun Oct 07, 2018 1:33 am
by Lord Blade
Would it be possible to get a cheat for the minigames? Like lockpicking and repairs? To basically just freeze the timer so we can take as long as we need?

Re: Insomnia: The Ark - table v0.7 (hotfix 2)

Posted: Thu Nov 01, 2018 11:02 pm
by kain33
Game has been updated to version 1.3