Page 1 of 25

Wo Long: Fallen Dynasty [+46]

Posted: Sat Mar 04, 2023 7:45 am
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 5789 times
WoLong.CT
Initial release for Ver.1.03
(91.52 KiB) Downloaded 1594 times
WoLong.CT
V15 Added 4(7) scripts/Compatible with 1.03
(86.16 KiB) Downloaded 2692 times
WoLong.CT
V14 Added 4 scripts
(82.98 KiB) Downloaded 1907 times
WoLong.CT
V13 Added 2 scripts
(80.79 KiB) Downloaded 895 times
WoLong.CT
V12 Infinite SP
(78.34 KiB) Downloaded 936 times
WoLong.CT
V11 Ghost Mode
(77.91 KiB) Downloaded 1184 times
WoLong.CT
V10 Added 3 scripts
(77.29 KiB) Downloaded 599 times
WoLong.CT
V9 Added 2 scripts
(75.31 KiB) Downloaded 580 times
WoLong.CT
V8 Added 3 scripts
(71.93 KiB) Downloaded 626 times
WoLong.CT
V7 Added Equip effect IDs
(67.85 KiB) Downloaded 1652 times
WoLong.CT
V6 Added Equip related
(54.32 KiB) Downloaded 2101 times
WoLong.CT
V5 Added 4 scripts
(48.22 KiB) Downloaded 785 times
WoLong.CT
V4 Update measures have been taken
(43.57 KiB) Downloaded 823 times
WoLong.CT
V3 Ignore required craft material
(41.24 KiB) Downloaded 1183 times
WoLong.CT
V2 Camera Location
(40.01 KiB) Downloaded 601 times
WoLong.CT
Initial release
(36.32 KiB) Downloaded 1036 times
Other Table
Save Data Decrypter by mi5hmash
Userdefined DropdownList/Effect/Martial Arts
Password is wolong
WolongDropdownlist.zip
Password: wolong
(3.36 KiB) Downloaded 1398 times
[Link]

Re: Wo Long: Fallen Dynasty [+10]

Posted: Sat Mar 04, 2023 9:13 am
by hgvphg
really thanks raynard for the tables
can you pls add max drop rate from enemy ?

Re: Wo Long: Fallen Dynasty [+10]

Posted: Sat Mar 04, 2023 9:57 am
by panda1308
would you mind figuring out about the deflect option? so we don't have to timing it..

Re: Wo Long: Fallen Dynasty [+10]

Posted: Sat Mar 04, 2023 10:04 am
by lordjoseph7
Nevermind. :mrgreen:

Re: Wo Long: Fallen Dynasty [+12]

Posted: Sat Mar 04, 2023 11:02 am
by Cobepeuh
how to understand? Level doesn't increase with level up

Re: Wo Long: Fallen Dynasty [+13]

Posted: Sat Mar 04, 2023 1:31 pm
by jl33r0y
Can u please add Morale, so we can play legit but don't have to farm it constantly? pls pls pls <3

Re: Wo Long: Fallen Dynasty [+13]

Posted: Sat Mar 04, 2023 1:51 pm
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

Re: Wo Long: Fallen Dynasty [+13]

Posted: Sat Mar 04, 2023 2:42 pm
by Cobepeuh
craft. ignoring materials for forging does not work.

Re: Wo Long: Fallen Dynasty [+14]

Posted: Sat Mar 04, 2023 3:37 pm
by cheatingandscheming
works with gamepass FYI however update broke combat parameters

Re: Wo Long: Fallen Dynasty [+14]

Posted: Sat Mar 04, 2023 3:56 pm
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

Re: Wo Long: Fallen Dynasty [+14]

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

Re: Wo Long: Fallen Dynasty [+14]

Posted: Sat Mar 04, 2023 6:16 pm
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?

Re: Wo Long: Fallen Dynasty [+14]

Posted: Sat Mar 04, 2023 7:44 pm
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.

Re: Wo Long: Fallen Dynasty [+22]

Posted: Sat Mar 04, 2023 8:00 pm
by RwX
Combat parameters is not working on Gamepass version :/

Re: Wo Long: Fallen Dynasty [+22]

Posted: Sat Mar 04, 2023 9:49 pm
by lawanoli
ignore craft materials isn't working on gamepass version