Satisfactory Versions: v0.103 - CL 96731 / v0.104 - CL 97236
Changes
Changed hotkeys for everything. The new hotkeys can be found in the Table Extras along with more information.
Moved Noclip into the "Teleport / Coords" section so that I can share the coord code with the noclip script.
Rewrote the Teleport / Coords script, now in LUA. The floating in mid air for a few seconds script is now more consistant.
Enabling the "Teleport / Noclip / Coords" script now takes significantly longer as a direct result of rewriting this script to LUA but overall I think it was worth it.
Noclip Changes:
The script is still the same janky stuff from before. I've added a second script which gets automatically enabled when enabling noclip.
This new script will allow you to hold space to fly up in the sky and left ctrl to fly back down. (at a set speed, can be changed in the script)
|Teleport / Coords / Noclip ===================================
|Enables the cheat. This can take 10+ seconds (1m+ on slow laptops), especially if you have a slow computer,
|and the game will sometimes temporarily freeze during this process.
|
|Player Coords
|Displays your current coordinates
|
|
|Teleport
|Contains a bank of 4 locations to teleport to. You can use the hotkey (ALT + 5)
|to save a location to slot #1 in the save bank and the rest are
|preset to the 3 starting locations.
|You can modify the preset locations by changing the XYZ values
|corresponding to each bank.
|
|Why do I hover for a few seconds after teleporting ?
|This game takes quite a long time to load the world
|and if you didn't hover for a few seconds after teleporting
|a siginficant distant then you would fall through the world.
|
|
|ALT + 5: Save location
|ALT + 4: Teleport to location
|ALT + 1: Teleport to Grass Fields
|ALT + 2: Teleport to Rocky Desert
|ALT + 3: Teleport to Northern Forest
|
|
|Auto Find Ground Collision Flag (ASM) ======================
|Ground Collision Flags:
|0: Hovering in air, no movement
|1: Default.
|2: Unknown
|3: Falling
|4: Unknown
|5: Hovering, move forward/backward/left/right, no up/down movement
|
|
|Noclip ================================================
|The noclip script can be improved drastically.
|Currently using the same script twice because idk how to
|reset the value on [DISABLE], the game keeps crashing when I try.
|
|ALT + 9: Enable Noclip
|ALT + 8: Disable Noclip
|
|After enabling noclip these hotkeys become available:
|SPACE: Move up
|CTRL: Move down
|
|
|Random Stuff ==========================================
|Auto Find Ground Collision Flag will use ASM to
|find an address containing a value which has
|certain effects on your character:
|0: Hovering in air, no movement
|1: Default.
|2: Unknown
|3: Falling
|4: Unknown
|5: Hovering, move forward/backward/left/right, no up/down movement
|
|I have not fully explored this yet but I know it changes
|when your jumping/falling and when you're on a ladder
|and it has some unknown values such as 5 (no fall).
|
|Find Walk Speed will find the address for the walk modifier
|
|IgnoreFallingPhysics freezes the ground "Ground Flag" to
|1 which will prevent the player from falling and will
|still allow the player to sprint unlike setting it to 5.
|
|
|Pointers ==============================================
|Bunch of pointers, lots of duplicates incase one stops
|working because I couldn't narrow it down any further.
|
|
|CREDITS:
|CheatingMuppet - Creator
|BloodFayte/CheatTheGame - For teaching me just about everything.
|
|
If someone knows how I can speed up the aobscan in lua (I suspect its slow because its a full aobscan as oppose to scanning a single module) and the breakpoint stuff (which seems super slow too) please let me know.