How to survive cheat engine

How to survive cheat engine

FearLess Cheat Engine

Community Cheat Tables of Cheat Engine

How to Survive 2

How to Survive 2

Post by STN » Fri Mar 31, 2017 11:50 am

Credits: Cielos
made some simple scripts for How to Survive 2.

///
Updates:
Update6
— updated item ID list and some scripts (i.e., the 2 inf. building durability scripts and instant fine aim script), the table works on «Build: Oct 26 2016, 18:43:29» now.

///
Options:
create custom types
— prepare custom types for player health, xp, and item’s quantity.
— activate this script once before activate enable script.

[stats related]:
inf. health
— health won’t drop below the min health allowed specified.
— min health allowed can be changed via the table.
— default min health allowed: 1

inf. stamina
— attacking or running won’t deplete stamina at all.

inf. hunger/thirst
— hunger and thirst % won’t drop below the min hunger/thirst allowed specified.
— current hunger and current thirst can be edited after this script is activated.
— min hunger/thirst allowed can be changed via the table.
— default min hunger/thirst allowed: 0.5 (== 50%)

[weapon/item related]:
instant fine aim
— always critical hit for bows/crossbows/firearms, no need to wait for the crosshair to focus.

no reload
— firearms’ ammo clip won’t drop below one when fire.

inf. item quantity
— quantity would still drop on consumption (using, crafting, transferring, firing weapons, etc.), but it won’t reach zero.

ignore crafting/upgrading material
— allows you to craft any item/building and upgrade without any corresponding materials.
— item(s) being used to craft would still decrease in quantity until it reaches zero, if you still need the item(s) to be used to craft, you should activate inf. item quantity script as well.

[pointers]:
[mouseover item]
— fetch the item id and quantity of the item that the mouse is last pointed at.
— works only on «All» category of Player Inventory and Camp Inventory.
— proper usage: activate this script, back to the game, under «All» category in the Player Inventory or Camp Inventory, point your mouse to the item you want to edit with CE, then alt-tab back to CE WITHOUT moving the mouse, the 2 pointers should be filled with the correct info then.
— dropdown list is prepared for the id, the list should be completed. feel free to share the findings if you find something is missing from the list.

[player]
— xp, health, and max health of the player can be found here.

///
Notes:
— tested on «Build: Oct 26 2016, 18:43:29».
— these scripts are meant to be used in single-player only.
— read the scripts’ description above first.
— hot-key available when «enable» is activated:
— shift-z : restore health to max
— hot-key available when «inf. hunger/thirst» is activated:
— shift-t : restore hunger and thirst to 100%
— player’s health, xp, and item’s quantity are encrypted, and the custom types are HTS2_Health, HTS2_EXP, and HTS2_Quantity respectively. they will be registered when enable script is activated, the source can be found below.
— custom type HTS2_Health:
Code:
alloc(ConvertRoutine,1024)
alloc(ConvertBackRoutine,1024)
alloc(TypeName,256)
alloc(ByteSize,4)
alloc(UsesFloat,1)
alloc(CallMethod,1)

TypeName:
db ‘HTS2_Health’,0

UsesFloat:
db 1 //Change to 1 if this custom type should be treated as a float

CallMethod:
db 1 //Remove or change to 0 for legacy call mechanism

//The convert routine should hold a routine that converts the data to an integer (in eax)
//function declared as: cdecl int ConvertRoutine(unsigned char *input, PTR_UINT address);
//Note: Keep in mind that this routine can be called by multiple threads at the same time.
ConvertRoutine:
//jmp dllname.functionname
[64-bit]
//or manual:
//parameters: (64-bit)
//rcx=address of input
//rdx=address
mov eax,[rcx] //eax now contains the bytes ‘input’ pointed to
xor eax,BABEEBAB //health encrypt key, refer to «[pointers] > [misc.] > health encrypt key»

[32-bit]
//jmp dllname.functionname
//or manual:
//parameters: (32-bit)
push ebp
mov ebp,esp
//[ebp+8]=address of input
//[ebp+c]=address
//example:
mov eax,[ebp+8] //place the address that contains the bytes into eax
mov eax,[eax] //place the bytes into eax so it’s handled as a normal 4 byte value

//The convert back routine should hold a routine that converts the given integer back to a row of bytes (e.g when the user wats to write a new value)
//function declared as: cdecl void ConvertBackRoutine(int i, PTR_UINT address, unsigned char *output);
ConvertBackRoutine:
//jmp dllname.functionname
//or manual:
[64-bit]
//parameters: (64-bit)
//ecx=input
//rdx=address
//r8=address of output
//example:
xor ecx,BABEEBAB //health encrypt key, refer to «[pointers] > [misc.] > health encrypt key»
mov [r8],ecx //place the integer at the 4 bytes pointed to by r8

[32-bit]
//parameters: (32-bit)
push ebp
mov ebp,esp
//[ebp+8]=input
//[ebp+c]=address
//[ebp+10]=address of output
//example:
push eax
push ebx
mov eax,[ebp+8] //load the value into eax
mov ebx,[ebp+10] //load the output address into ebx
mov [ebx],eax //write the value into the address
pop ebx
pop eax

— custom type HTS2_Quantity:
Code:
alloc(ConvertRoutine,1024)
alloc(ConvertBackRoutine,1024)
alloc(TypeName,256)
alloc(ByteSize,4)
alloc(UsesFloat,1)
alloc(CallMethod,1)

TypeName:
db ‘HTS2_Quantity’,0

UsesFloat:
db 0 //Change to 1 if this custom type should be treated as a float

CallMethod:
db 1 //Remove or change to 0 for legacy call mechanism

//The convert routine should hold a routine that converts the data to an integer (in eax)
//function declared as: cdecl int ConvertRoutine(unsigned char *input, PTR_UINT address);
//Note: Keep in mind that this routine can be called by multiple threads at the same time.
ConvertRoutine:
//jmp dllname.functionname
[64-bit]
//or manual:
//parameters: (64-bit)
//rcx=address of input
//rdx=address
mov eax,[rcx] //eax now contains the bytes ‘input’ pointed to
xor eax,BABEEBAB //quantity encrypt key, refer to «[pointers] > [misc] > quantity encrypt key»

[32-bit]
//jmp dllname.functionname
//or manual:
//parameters: (32-bit)
push ebp
mov ebp,esp
//[ebp+8]=address of input
//[ebp+c]=address
//example:
mov eax,[ebp+8] //place the address that contains the bytes into eax
mov eax,[eax] //place the bytes into eax so it’s handled as a normal 4 byte value

//The convert back routine should hold a routine that converts the given integer back to a row of bytes (e.g when the user wats to write a new value)
//function declared as: cdecl void ConvertBackRoutine(int i, PTR_UINT address, unsigned char *output);
ConvertBackRoutine:
//jmp dllname.functionname
//or manual:
[64-bit]
//parameters: (64-bit)
//ecx=input
//rdx=address
//r8=address of output
//example:
xor ecx,BABEEBAB //quantity encrypt code, refer to «[pointers] > [misc.] quantity encrypt code»
mov [r8],ecx //place the integer at the 4 bytes pointed to by r8

[32-bit]
//parameters: (32-bit)
push ebp
mov ebp,esp
//[ebp+8]=input
//[ebp+c]=address
//[ebp+10]=address of output
//example:
push eax
push ebx
mov eax,[ebp+8] //load the value into eax
mov ebx,[ebp+10] //load the output address into ebx
mov [ebx],eax //write the value into the address
pop ebx
pop eax

— for custom type HTS2_EXP, check darknovax’s post.

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to Survive 2: Таблица для Cheat Engine (Бесконечные эффекты от зелий и еды) [Build: 13.07.2016]

Дата: 13-09-2016, 21:25

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Табличка для CheatEngine 6.4 (x64) бесконечный баф (создавалась на версии игры Build Jul 13 2016)
How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Данная таблица поможет вам скушать нужные вам бафы 1 раз для каждой локации.

Я создавал её под себя, так как пользуюсь 8-ю усиливающими зельями/едой, за бафами 1-8 закреплена горячая клавиша

Ещё 2 ячейки бафа я создал на ваше усмотрение, они выделены другим цветом, за ними горячей клавиши не закреплено. Все указатели имеют тип значения float, чтобы время бафа вам показывалось в секундах, по своему усмотрению можно добавить секунд к бафу как видно на скриншоте ниже
How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Если будете редактировать/добавлять горячие клавиши, то устанавливайте заморозку «только увеличение» чтобы избежать вылетов игры.
How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine
К примеру, если вы будете пользоваться меньшим количеством усилений/бафов, пусть это буедт 6, а лечиться будете обезбаливающим/малой-большой аптечкой, то советую убрать горячую клавишу с бафа 7 и 8, потому что эти препараты накладывают баф на секунд 15-20 «уменьшение урона», ячейки баф 7 и 8 попросту заморозит это значение и вы превратитесь в терминатора ) ну, в прочем, это уже на ваше усмотрение, веселья и удачи.

Скачать CheatEngine с нашего сервера Вы сможете здесь или здесь (Portable).

How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

5,168уникальных посетителей
71добавили в избранное

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Requires Cheat Engine to use these tables
You do not need to update if your existing table is fully working

Latest M.U.T.T files BETA GAME VERSIONS ONLY download link: https://drive.google.com/file/d/1ujOCyn-NOU3YmUbHIYj0LqKUBvwqshEr/view?
Working with Beta Game release 0.5.0.3.2 as of 20/02//2022 @ 16:25.pm (UK Time)

I am not responsible for any files if you did not download them from here on steam, be aware that someone else has stolen this guide and posted it elsewhere on the net. THIS IS THE OFFICIAL page For these tables and the only place I can guarantee the uploaded files to be safe 🙂

I am in no way associated with the Cheat Engine app if you experience any issues with cheat engine itself, you should refer to the CE developers for support.

Using Cheat Engine may cause VAC bans dependent on how you use it, I am not responsible in any way for bans that you may receive if you use CE in an abusive manner (primarily in MMO or none single player games). Using CE is your choice and your responsibility if you don’t want to use CE, stop reading and exit the guide then forget you ever saw it.

From my own experience with CE over the years I have not received any bans, However I do not play any MMO titles.

My only responsibility Is for the creation and update of the M.U.T.T Training Tables, if you experience any issues with a Training Table (not working, game crash whilst using a section of the Table) post in the comment section and I will do my best to help you.

Make sure you have installed Cheat Engine, downloaded and extracted the M.U.T.T files.

STEP 1
Navigate to where you extracted the M.U.T.T files. Double click the required table 0.4.1.0_A for current game release or Beta.0.5X, for the Beta releases of the game. This will now open Cheat Engine.
Now we need to make an adjustment for the table to be viewed correctly, At the top of the list window the description tab needs to be widened, do this by clicking the divider and dragging it to the right to the end of the orange bars. Ignore the flashing computer symbol for now.

STEP 2
Load Mist Survival and either load your game or start a new game (I use 2 save files, 1 with the Trainer and 1 with no Trainer) once in game have a quick run around for a minute or 2 then pause the game.

STEP 3
Alt+Tab or use windows key+D to get back to Cheat Engine and click the Flashing computer symbol.

Now select Mist Survival from the box that opened and click open

When the confirmation box appears asking to keep current address list, click YES you will have to say yes each time you load a table if you click No it will delete the Training Table from the list window.

You should now have something like this. Check the boxes to lock values, set values to adjust values, FOLLOW ALL instructions in the table carefully and OBEY WARNINGS they are there for game stability.

STEP 4
Tab back to game and enjoy your Time training 😉

Surviving the Aftermath → Файлы

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Surviving the Aftermath — управленческая стратегия в реальном времени от создателей Surviving Mars. Игра позволит выстроить колонию людей, переживших. Подробнее

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Процесс запуска:
Запустить Cheat Engine, «Load» и выбрать таблицу
«Select a process to open», выбрать нужный процесс.
Выбрать нужную опцию, поставить крест.

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Если вы хотите облегчить прохождение Surviving the Aftermath, то можете воспользоваться нашим файловым архивом. Здесь собраны только проверенные и работоспособные файлы для игр, которые можно скачать бесплатно.

При скачивании файлов нужно обратить внимание на версию игры, для которой он предназначен. Трейнеры для игр, например, не всегда совместимы со всеми версиями игры, так как разработчики, выпуская обновления, могут менять архитектуру игры и принципы работы тех или иных ее механик. Обычно версия, с которой совместим файл, указывается прямо в его названии.

Surviving the Aftermath → Файлы

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Surviving the Aftermath — управленческая стратегия в реальном времени от создателей Surviving Mars. Игра позволит выстроить колонию людей, переживших. Подробнее

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Процесс запуска:
1. Запустить Cheat Engine, «Load» и выбрать таблицу
2. «Select a process to open», выбрать нужный процесс.
3. Выбрать нужную опцию, поставить крест.

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

How to survive cheat engine. Смотреть фото How to survive cheat engine. Смотреть картинку How to survive cheat engine. Картинка про How to survive cheat engine. Фото How to survive cheat engine

Если вы хотите облегчить прохождение Surviving the Aftermath, то можете воспользоваться нашим файловым архивом. Здесь собраны только проверенные и работоспособные файлы для игр, которые можно скачать бесплатно.

При скачивании файлов нужно обратить внимание на версию игры, для которой он предназначен. Трейнеры для игр, например, не всегда совместимы со всеми версиями игры, так как разработчики, выпуская обновления, могут менять архитектуру игры и принципы работы тех или иных ее механик. Обычно версия, с которой совместим файл, указывается прямо в его названии.

Источники информации:

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *