Moonlighter is a nice game. Over the new year break, I played it for 10 hours a day for 2-3 days. It's your typical dungeon crawler with a twist. You have a shop and you can sell items in your shop and do a bit of price manipulation based on supply and demand.

Moonlighter +11 (table Update5) Post by Cielos » Tue May 29, 2018 7:28 pm. Click the PC icon in Cheat Engine in order to select the game process. May 29, 2018 Moonlighter is an Action RPG with rogue-lite elements following the everyday routines of Will, an adventurous shopkeeper that dreams of becoming a hero. SHOPKEEPING While conducting your business in Rynoka village, you can put items on sale, set their price carefully, manage gold reserves, recruit assistants and upgrade the shop. Game version: 1.7.4.2 Number of functions: 9 Creation date: On this page you can download Moonlighter trainer for free and without registration. This trainer +9 developed by CheatHappens for game version 1.7.4.2. If you experience any difficulty in the game «Moonlighter» or just want to have fun, this cheat is created specially for. Well, we’ve got your back as our Moonlighter Item Price Guide includes the best price for every item in the game. Moonlighter Moonlighter Item Price Guide You can go up by 10-20% on most of these when they are popular and still sell them. For Moonlighter on the PC, GameFAQs has 57 cheat codes and secrets, 57 achievements, and 8 critic reviews. Last Chance To Grab This Free Pair Of Games From Epic. NOT every game accept modifying the value from NOWHERE. NOTE: some games have their display value as '25' for example, but the actual value can be higher than '25' or sometimes below that number. Also keep in mind that some games also have couple of instructions accessing and monitoring your value, and doing such complex mathematics and compares.

It has some grinding. At each dungeon level (there are four), you have grind the items needed for crafting the next level equipment. After farming for multiple hours to get a few drops of one item, I decided to cheat at it.

This post talks about how I discovered the save file and how we can modify it to give ourselves any item in the game. In the next part, I will discuss modifying the game to one-shot enemies and other things. It's a straightforward game for getting into 'game hacking.'

  • Moonlighter Steam version
  • Windows 10 64-bit VM in VirtualBox
  • Steam offline mode
    • Moonlighter is not a multi-player game and is not VAC enabled, but I wanted to be safe. I do not think modifying the save and game files will get my steam account banned, but I do not want it to happen. I have so many games (that I will never play) in my account.

I am using the Steam version. If you have a different version, your save file location will be different. We can discover the save file in two ways:

  • Searching for it.
  • Discovering it with procmon.

Searching for Save File Location

This reddit comment mentions two locations:

  • Steam version: [Your Steam Installation Folder]Steamuserdata[Your Steam ID]606150remote
  • Non-Steam: C:Users[Your Windows Username]AppDataLocalLow11BitStudiosMoonlighter

Using Procmon

Procmon logs many events. We need to minimize the total number of captured events and then use filter to further reduce the number. To do this, we need to find an event that forces a game save. There are different ways to do this (I think every loading screen does it). Two of the easiest are:

  • Closing the shop
  • Sleeping

I chose the first.

  1. Start the game, do not start procmon yet. The game is already slow in the VM and procmon will make it worth. Finishing the tutorial in the VM was hard (lol).
  2. Start procmon.
  3. Open the shop.
  4. Immediately close it.
  5. Skip the summary screen.
  6. Alt+tab out and stop capturing events with File > Capture Events.
  7. Quit the game.

Now I had 27000 events (excluding profiling events).

Filtering by Process

This is a great tool. Open the Process Tree at Tools > Process Tree.

In the process tree, right-click Steam and select Add process and children to include filter. This is a handy filter. It allows us to filter all children. It filters by process ID so it will not work between different executions.

Note: It's tempting to just select Moonlighter and that is what I initially did. But in this case, Steam is handling the save file.

Procmon's Procee Tree

After selecting, the filtering takes a few seconds and we are down to around 409 events. Oh boy. This turned out easier than I thought.

Results after filtering by process

Filtering by Write Events

Assuming things are saved in a file and not registry (registry is an option but usually not in games because save files are big). We can filter by File System Activity using the icon in the toolbar. This reduces the number of events to 341.

Filtering by File System Activity

But our most important filter is next. We forced a save game write event, we only need to keep write events.

Moonlighter Cheat Engine

We need to pay attention to two operations here: WriteFile and CreateFile. I am not sure about the difference in procmon vs. WinAPI but I use both to be sure. We need to add two filters:

  • Operation - is - WriteFile then Include.
  • Operation - is - CreateFile then Include.
Write events

We're now down to 89 events which is pretty manageable for manual review.

Unity Analytics

We can learn a few things. For example, Unity analytics files are at this location:

  • C:UsersIEUserAppDataLocalLow11BitStudiosMoonlighterUnityf522e32a-6e64-4c70-afbd-bf0463165292Analytics

The config file has some interesting info.

Supposedly they are collecting analytics and users have not opted out. I have not seen such a setting in the game and I have no idea what kind of data are being collected in game. But that is for another day.

If our guess is correct, we can stop the analytics by disabling it in that file.

Save File Location

But what we are looking for is at:

  • C:Program Files (x86)Steamuserdata{{steamID}}606150remote
Save file location

Notes About the Save File

  • MAKE MULTIPLE COPIES OF IT.
  • If you mess up the save game, the game will get stuck at the loading screen. If this happens, quit the game and restore from a safe copy.
  • Sometimes the game gets stuck on the loading screen even with a good save game. To be sure, always kill Steam before every new run.

Spongebob atlantis squarepantis game cheats wii. Unsurprisingly, it's the largest file gameslot. It's a JSON file.

Beautify it with CyberChef:

Beautified save file

Gold

It does not get easier than this. Let's search for gold.

We can modify it and give ourselves more gold. Will is the name of the main character.

I gave Will 10 million gold. It's a reasonable number.

Will is rich

Equipment

willEquippedItems is an array of items. Some are empty. Seems like there's an order, meaning the first items could be head, next could be weapon and etc. We do not know which is which yet. Starting from zero we have:

  • 0, 1, 2: empty.
  • 3: Training Sword.
  • 4: Broom Spear.
  • 5 and 6: Dash.
  • 7: HP Potion I.
  • 8, 9: empty

Let's look at our equipped items to see what's what.

Will's inventory before modification
  • 0, 1, 2: Unknown - empty.
  • 3: Weapon Slot 1 - Training Sword.
  • 4: Weapon Slot 2 - Broom Spear.
  • 5 and 6: Unknown - Dash. These two do not appear in the inventory. It's the ability Dash forward and backward (bound to the space key) but I am not sure why it's a separate skill. These might be the two inventory slots on top and under the potion slot (see the picture).
  • 7: Potion slot: HP Potion I.
  • 8 and 9: Unknown - empty.

There's also a willInventory array with items in the inventory. We can see the top row in the picture.

We can modify any slot and give will any item/quantity. To figure out item names, we can look under recipesSeen and see a handy list.

But it is not complete. Especially for this playthrough inside the Virtual Machine.

To test our theory, let's give ourselves another Broom Spear in weapon slot 1 instead of the Training Sword. And now we have two broom spears.

Two broom spears

That was fun, but how do we give ourselves better items? We do not know their names.

Assuming we cannot search online (which has all the item names), we can use an in-game feature. The blacksmith can craft armor and weapons. To get the blacksmith, we need to build the building for 500 gold. Luckily, we have 10 million. Looking at his items, we can see their names and use them.

Blacksmith's items

We cannot see all items yet, but their names appear in the top-right corner of the screen. Being a sneaky archer, I want to get the items with speed bonuses:

  • Fabric Bandana IV
  • Fabric Chestplate IV
  • Fabric Boots IV
  • King Sword. The label says King Short Sword but the actual in-game item is King Sword.
  • Exeter Bow

The only remaining problem is figuring out which willEquippedItems array host which item. That's easy, we will add the items in our inventory and then equip them in game.

Items can also be enchanted (and cursed for elemental items).enchantmentLevel and enchantmentType set to 1. For example, the max non-elemental bow is set like this in inventory.

And now Will has all these shiny items (I made a mistake and gave him 10 chest plates).

Items added to Will's inventory

Equip them and trigger another save event. For example, enter a dungeon and then leave using the pendant.

Items equipped in gameEquipped items in save file

Cheat Engine 6.4

We can update the willEquippedItems array:

  • 0: Head slot - Fabric Bandana IV.
  • 1: Chest slot - Fabric Chestplate IV.
  • 2: Leg slot - Fabric Boots IV.
  • 3: Weapon Slot 1 - Training Sword.
  • 4: Weapon Slot 2 - Broom Spear.
  • 5 and 6: Unknown - Dash.
  • 7: Potion slot: HP Potion I.
  • 8 and 9: Unknown - empty.

Adding items to the shop and chests is similar. Later in the game, we get quests. People ask Will to get them a certain number of an item in a few days. Quests appear in the save file under willActiveQuests and completed quests are under completedQuests. We can modify the quest and rewards to anything we want to get that money. This is a completed quest.

Moonlighter Cheat Engine Epic Games Unblocked

I am not going to talk about the rest of the save file. It's pretty obvious.

We learned:

Moonlighter Cheat Engine Epic Games Download

  • How to locate the save file of Moonlighter (Steam edition).
  • Where Unity Analytics are stored.
  • The structure of the save file.
  • How to modify the save file and change everything in the game.

Cheat Engine Download

In the next part, I will mess with the game files to change game mechanics (e.g. one shotting everything).

Mono features tables must be enabled for correct operation!

Moonlighter Cheat Engine Epic Games Pc

Moonlighter: Cheat Engine Table (Invincible) [1.3.7.2] {dunenkoff} Free Download

Options:

  • Invulnerability (Invincibility) – monsters and falling into pits do no damage.

Work on endless money in progress.

Startup process:
1. Start Cheat Engine, “Load” and select a table
2. “Select a process to open”, select the desired process.
3. Select the menu Mono – Activate Mono features.
4. Select the option you want, put a cross.

Download Cheat Engine from our server you can here.