FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
CheatEngineMonoHelper/Scripts/Enum.lua at master · JasonGoemaat/CheatEngineMonoHelper · GitHub
JasonGoemaat
/
CheatEngineMonoHelper
Public
Notifications
You must be signed in to change notification settings
Fork
13
Star
59
Code
Issues
1
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
CheatEngineMonoHelper
/
Scripts
/
Enum.lua
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (16 loc) · 720 Bytes
Breadcrumbs
CheatEngineMonoHelper
/
Scripts
/
Enum.lua
Copy path
File metadata and controls
17 lines (16 loc) · 720 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local
class
=
mono_findClass
(
"
CryingSuns.Navigation
"
,
"
NavigationAlertLevel
"
)
return
mono_class_enumFields
(
class
)
--[[
for i,f in ipairs(mono_class_enumFields(class)) do
if f.isStatic and f.name == "currentRunState" then
registerSymbol("CryingSuns:GameState:currentRunState", mono_class_getStaticFieldAddress(mono_enumDomains()[1], class) + f.offset, true)
break
end
end
unregisterSymbol("CryingSuns:GameState:currentRunState")
--local address = mono_class_getStaticFieldAddress(mono_enumDomains()[1], class)
--return string.format("%X", address + field.offset)
--print(string.format("%X", address + field.offset))
--return field
--return getStaticAddress("CryingSuns", "GameState", "currentRunState")
--]]
Back
|
FazBrowse Home
|
New Git URL