mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-02-03 16:39:07 +00:00
feat(core): CheatEngine script loaders
This commit is contained in:
parent
f9fe6ca3e7
commit
4ca5f1bbe5
15 changed files with 4578 additions and 17 deletions
39
CheatEngineScriptsInfo.md
Normal file
39
CheatEngineScriptsInfo.md
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#### How to execute the script
|
||||
- Click *'Table'* then *'Show Cheat Table Lua Script'* or press Ctrl+Alt+L
|
||||
|
||||
#### CObject_C hierarchy
|
||||
**CGUnit_C**
|
||||
* Select a target unit (it must be of type Unit).
|
||||
* Execute the script: [Load_CGUnit.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CGUnit.lua)
|
||||
|
||||
**CGPlayer_C (your character)**
|
||||
* Execute the script: [Load_CGPlayer.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CGPlayer.lua)
|
||||
|
||||
**CGCorpse_C**
|
||||
* Execute the script: [Load_CGCorpse.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CGCorpse.lua)
|
||||
* Then hover your mouse cursor over the corpse.
|
||||
|
||||
**CGItem_C** (items in the main 16-slot backpack)
|
||||
* Execute the script: [Load_CGItem.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CGItem.lua)
|
||||
|
||||
**CGContainers_C** (only for equipped bags)
|
||||
* Execute the script: [Load_CGContainer.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CGContainer.lua)
|
||||
|
||||
#### CMapBaseObj hierarchy
|
||||
**CMapArea** (ADT)
|
||||
* Execute the script: [Load_CMapArea.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CMapArea.lua)
|
||||
|
||||
**CMapChunk**
|
||||
* Execute the script: [Load_CMapChunk.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CMapChunk.lua)
|
||||
|
||||
**CMapEntity**
|
||||
* Select a target (unit or player)
|
||||
* Execute the script: [Load_CMapEntity.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CMapEntity.lua)
|
||||
|
||||
**CMapObjDef** (WMO)
|
||||
* Run inside a WMO object (tower, cave, barracks etc)
|
||||
* Execute the script: [Load_CMapObjDef.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CMapObjDef.lua)
|
||||
|
||||
**CMapObjDefGroup**
|
||||
* Run inside a WMO object (tower, cave, barracks etc)
|
||||
* Execute the script: [Load_CMapObjDefGroup.lua](https://github.com/thunderbrewhq/binana/blob/master/profile/3.3.5a-windows-386/cheatengine/Load_CMapObjDefGroup.lua)
|
||||
Loading…
Add table
Add a link
Reference in a new issue