Wo Long: Fallen Dynasty [+46]

Upload your cheat tables here (No requests)
Post Reply
Raynard
Novice Cheater
Novice Cheater
Posts: 22
Joined: Sat Oct 15, 2022 5:16 pm
Reputation: 431

Wo Long: Fallen Dynasty [+46]

Post by Raynard »

Wo Long: Fallen Dynasty Steam

Code: Select all

Genre:			Action/RPG/Souls-like/Single-player
Release:		3 Mar, 2023
Process:		WoLong.exe
Build:			Ver.1.04/Build.10790985
Save Location		%USERPROFILE%\Documents\KoeiTecmo\Wolong\Savedata\<user-id>\SAVEDATA
CheatEngine:		7.50/Open to public for free

I've completed game until last so don't have much interest in updating.

All scripts will remain compatible with upgrade, so only report problems when you have.

It's created as a single player. As for the multi, forbidden here, please do not ask that related.


Combat Parameters/FOV/Title/Play Time/Equip Stats/special effects/Friendship

Ghost Mode
Set Fortitude Rank
Max quantity/Items
Qi doesn't decrease
Equip rarity become 4
Set Equip Effect Values
Set Equip's upgrade level
Equip Max stats/No Weight
Get All basic titles/Test Phase
Ignore required craft materials
Craft material doesn't decrease
Wipe out the enemies on the map
Damage/Fortitude Level Multiplier
Level doesn't increase with level up
Set Accolades at the time of exchange
Accolades doesn't decrease when exchange
Camera Location/Distance/Height/Direction
Infinite HP/Usable/Potion/Throwing/Spirit gauge
Special effects of equipment change to generic ones


Add new:
Fix FOV script for Ver.1.04
Item Data (Not posession is 1)


If you have problems when starting CT, download the latest version of CE.

The drop rate is mostly solved by maximizing the luck of the equipment or effect.

Note that this was created for Steam and will likely not work properly in the Game Pass version.


If you like this Table, Click the Rep button, Thanks
Tutorial to add the script written here

Code: Select all

1. Copy entire codes

Code: Select all

2. Launch Cheat Engine

Code: Select all

3. Ctrl + Alt + A (Open Auto Assemble Display)

Code: Select all

4. Ctrl + V (Paste what you just copied)

Code: Select all

5. Click "File" and Select "Assign to current cheat table"

Code: Select all

6. Close Auto Assemble Display

Code: Select all

7. If that's okay, Save the content

Code: Select all

For everything else, run in the order 1.2.4
Script for opening saved data folder
Read tutorial and do.

For Steam

Code: Select all

[ENABLE]
{$lua}
if syntaxcheck then return end
os.execute("explorer.exe %USERPROFILE%\\Documents\\KoeiTecmo\\Wolong\\Savedata");

[DISABLE]
Make Savedata Backup for Steam

Code: Select all

[ENABLE]
{$lua}
if syntaxcheck then return end

local lfs = require("lfs")
local User_Profile = os.getenv("UserProfile")
local Source_Folder = User_Profile .. "\\Documents\\KoeiTecmo\\Wolong\\Savedata\\"

-- Find the first subfolder that contains a "SAVEDATA" subfolder
local GameName, SaveData_Folder
for dir in lfs.dir(Source_Folder) do
  if dir ~= "." and dir ~= ".." then
    local dir_path = Source_Folder .. dir
    if lfs.attributes(dir_path, "mode") == "directory" then
      for sub_dir in lfs.dir(dir_path) do
        if sub_dir == "SAVEDATA01" then
          GameName = dir
          SaveData_Folder = dir_path .. "\\SAVEDATA01\\"
          break
        end
      end
    end
  end
  if GameName then break end
end

if not GameName then
  MessageDialog("Error: Could not find 'SaveData' folder.", mtError, mbOK)
  return
end

local Backup_Prefix = "Backup_"
local Backup_Name = Backup_Prefix .. os.date("%Y-%m-%d_%H-%M-%S")
local Backup_Folder = SaveData_Folder .. Backup_Name .. "\\"

if not lfs.mkdir(Backup_Folder) then
  MessageDialog("Error: Could not create backup folder.", mtError, mbOK)
  return
end

-- Copy all files in SaveData_Folder to the backup folder
for file in lfs.dir(SaveData_Folder) do
  if file ~= "." and file ~= ".." then
    local Save_Path = SaveData_Folder .. file
    local Backup_Path = Backup_Folder .. file
    local Save_Attributes = lfs.attributes(Save_Path)
    if Save_Attributes.mode == "file" then
      local Save_File = io.open(Save_Path, "rb")
      if not Save_File then
        MessageDialog("Error: Could not open " .. Save_Path, mtError, mbOK)
      else
        local Backup_File = io.open(Backup_Path, "wb")
        if not Backup_File then
          MessageDialog("Error: Could not create " .. Backup_Path, mtError, mbOK)
        else
          Backup_File:write(Save_File:read("*all"))
          Save_File:close()
          Backup_File:close()
        end
      end
    end
  end
end

-- Ask the user if they want to open the backup folder
local Reaction = MessageDialog('Open the Backup folder?', mtConfirmation, mbYes, mbNo)
if Reaction == mrYes then
  local Command = "explorer.exe \"" .. Backup_Folder .. "\""
  local Success, Message = pcall(os.execute, Command)
  if not Success then
    MessageDialog("Error opening folder: " .. Message, mtError, mbOK)
  end
end

[DISABLE]
For GamePass

Code: Select all

[ENABLE]
{$lua}
if syntaxcheck then return end
os.execute("explorer.exe %localappdata%\\Packages\\946B6A6E.WoLongFallenDynasty_dkffhzhmh6pmy\\SystemAppData\\wgs");

[DISABLE]
Thanks:
[Link] by hades
Equip Information by variante
Block Cam Input Script by Akira
Martial Arts Information by oilnarak01
Special Effect Information by delpirero
Special Effect Information by donloder1
What if Combat Parameters are not available?
To enable that, this screen must be displayed.
Some are displayed from the beginning, but under different conditions.
Previous versions
WoLong.CT
V2 Added Item Data
(97.09 KiB) Downloaded 5383 times
WoLong.CT
Initial release for Ver.1.03
(91.52 KiB) Downloaded 1209 times
WoLong.CT
V15 Added 4(7) scripts/Compatible with 1.03
(86.16 KiB) Downloaded 2324 times
WoLong.CT
V14 Added 4 scripts
(82.98 KiB) Downloaded 1536 times
WoLong.CT
V13 Added 2 scripts
(80.79 KiB) Downloaded 527 times
WoLong.CT
V12 Infinite SP
(78.34 KiB) Downloaded 569 times
WoLong.CT
V11 Ghost Mode
(77.91 KiB) Downloaded 825 times
WoLong.CT
V10 Added 3 scripts
(77.29 KiB) Downloaded 244 times
WoLong.CT
V9 Added 2 scripts
(75.31 KiB) Downloaded 212 times
WoLong.CT
V8 Added 3 scripts
(71.93 KiB) Downloaded 264 times
WoLong.CT
V7 Added Equip effect IDs
(67.85 KiB) Downloaded 1289 times
WoLong.CT
V6 Added Equip related
(54.32 KiB) Downloaded 1744 times
WoLong.CT
V5 Added 4 scripts
(48.22 KiB) Downloaded 426 times
WoLong.CT
V4 Update measures have been taken
(43.57 KiB) Downloaded 456 times
WoLong.CT
V3 Ignore required craft material
(41.24 KiB) Downloaded 817 times
WoLong.CT
V2 Camera Location
(40.01 KiB) Downloaded 229 times
WoLong.CT
Initial release
(36.32 KiB) Downloaded 667 times
Other Table
Save Data Decrypter by mi5hmash
Userdefined DropdownList/Effect/Martial Arts
Password is wolong
WolongDropdownlist.zip
Password: wolong
(3.36 KiB) Downloaded 995 times
[Link]


How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
WoLong.CT
Initial release for Ver.1.04
(98.5 KiB) Downloaded 12700 times
Last edited by Raynard on Thu Mar 23, 2023 11:33 am, edited 41 times in total.

hgvphg
Noobzor
Noobzor
Posts: 5
Joined: Sat May 09, 2020 2:16 am
Reputation: 1

Re: Wo Long: Fallen Dynasty [+10]

Post by hgvphg »

really thanks raynard for the tables
can you pls add max drop rate from enemy ?

panda1308
Noobzor
Noobzor
Posts: 14
Joined: Tue Dec 21, 2021 12:46 pm
Reputation: 1

Re: Wo Long: Fallen Dynasty [+10]

Post by panda1308 »

would you mind figuring out about the deflect option? so we don't have to timing it..

lordjoseph7
Noobzor
Noobzor
Posts: 7
Joined: Fri Aug 04, 2017 12:36 am
Reputation: 3

Re: Wo Long: Fallen Dynasty [+10]

Post by lordjoseph7 »

Nevermind. :mrgreen:

Cobepeuh
Cheater
Cheater
Posts: 27
Joined: Mon Feb 17, 2020 5:45 pm
Reputation: 0

Re: Wo Long: Fallen Dynasty [+12]

Post by Cobepeuh »

how to understand? Level doesn't increase with level up

jl33r0y
Noobzor
Noobzor
Posts: 5
Joined: Sat Mar 04, 2023 1:27 pm
Reputation: 0

Re: Wo Long: Fallen Dynasty [+13]

Post by jl33r0y »

Can u please add Morale, so we can play legit but don't have to farm it constantly? pls pls pls <3

arsenel1
Noobzor
Noobzor
Posts: 11
Joined: Fri Mar 11, 2022 6:07 pm
Reputation: 1

Re: Wo Long: Fallen Dynasty [+13]

Post by arsenel1 »

jl33r0y wrote:
Sat Mar 04, 2023 1:31 pm
Can u please add Morale, so we can play legit but don't have to farm it constantly? pls pls pls <3
You can add a through the blacksmith a trait to your armor that let you gain morale and put it to 999 also you can duplicate it in the same armor or in other pieces

Cobepeuh
Cheater
Cheater
Posts: 27
Joined: Mon Feb 17, 2020 5:45 pm
Reputation: 0

Re: Wo Long: Fallen Dynasty [+13]

Post by Cobepeuh »

craft. ignoring materials for forging does not work.

cheatingandscheming
Noobzor
Noobzor
Posts: 11
Joined: Sun Sep 16, 2018 5:59 pm
Reputation: 0

Re: Wo Long: Fallen Dynasty [+14]

Post by cheatingandscheming »

works with gamepass FYI however update broke combat parameters
Last edited by cheatingandscheming on Sat Mar 04, 2023 4:00 pm, edited 1 time in total.

Grutrunka
Novice Cheater
Novice Cheater
Posts: 17
Joined: Wed Sep 08, 2021 4:13 pm
Reputation: 4

Re: Wo Long: Fallen Dynasty [+14]

Post by Grutrunka »

Just to clarify, when you try to use the "craft. ignoring materials for forging" it makes the game think you have no crafting items, soooo it IS ignoring them but not as intended. XD

GipsyDanger
Expert Cheater
Expert Cheater
Posts: 336
Joined: Sat Jun 27, 2020 2:33 pm
Reputation: 74

Re: Wo Long: Fallen Dynasty [+14]

Post by GipsyDanger »

Can I increase Amar's damage using any option on your table?

Cobepeuh
Cheater
Cheater
Posts: 27
Joined: Mon Feb 17, 2020 5:45 pm
Reputation: 0

Re: Wo Long: Fallen Dynasty [+14]

Post by Cobepeuh »

GipsyDanger wrote:
Sat Mar 04, 2023 4:36 pm
Can I increase Amar's damage using any option on your table?
What is Amara?

GipsyDanger
Expert Cheater
Expert Cheater
Posts: 336
Joined: Sat Jun 27, 2020 2:33 pm
Reputation: 74

Re: Wo Long: Fallen Dynasty [+14]

Post by GipsyDanger »

Cobepeuh wrote:
Sat Mar 04, 2023 6:16 pm
GipsyDanger wrote:
Sat Mar 04, 2023 4:36 pm
Can I increase Amar's damage using any option on your table?
What is Amara?
Sorry, I meant weapons.

RwX
Cheater
Cheater
Posts: 31
Joined: Tue Nov 08, 2022 9:36 am
Reputation: 4

Re: Wo Long: Fallen Dynasty [+22]

Post by RwX »

Combat parameters is not working on Gamepass version :/

lawanoli
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Mar 04, 2023 9:48 pm
Reputation: 1

Re: Wo Long: Fallen Dynasty [+22]

Post by lawanoli »

ignore craft materials isn't working on gamepass version

Post Reply

Who is online

Users browsing this forum: AhrefsBot, atashi, bigbri, Bing [Bot], DevMaster92, DotBot, Irre33, Kadaji, mflau, nbl88, notoriousyh, ricebandit, SemrushBot, Tech0506, UPT000, Wiper, YandexBot, ZoDDeL