-
-
Notifications
You must be signed in to change notification settings - Fork 126
Guidance for good DataFrame
Making a good FrameConfiguration
is essential in order to reliably obtain the in-game state to the backend.
In this topic I would like give a few handy tips how to create a good one. These steps attempts to give some guides about how create the best DataFrame
.
- Make sure the in-game camera is still.
- The background at the top left corner of the game window is still, there are no movement.
- There are no meaningful color difference.
- Darker background color around the top left corner yields better result.
- There are at least two different colors, the skybox and the tree leaves
With some game resolutions and windows GUI scale combo, its really hard to create a good FrameConfiguration
. That case you can try increase the CELL_SIZE
which is by default 1
. To do that first you have to find out what game version you are running. Then have to remember what Title
you named the addon, during the Addon Config
process.
{AddonTitle}
- Let the addon title be =
dtc
{GameVersion}
This one is actually tricky because you can run Season of Mastery or Classic TBC
-
C:\Program Files (x86)\World of Warcraft\_classic_era_\
-> Season of Mastery -
C:\Program Files (x86)\World of Warcraft\_classic_\
-> Classic TBC
Navigate to the following location
{GameVersion}\Interface\AddOns\{AddonTitle}\{AddonTitle}.lua
- example
C:\Program Files (x86)\World of Warcraft\_classic_\Interface\AddOns\dtc\dtc.lua
Open the previously mentioned file and find the following text and edit from
local CELL_SIZE = 1 -- 1-9
to
local CELL_SIZE = 2 -- 1-9
make sure to save it. Incase the game is already running type /reload
in order to active the changes. As a result the cells at the top left corner should appear bigger.