Mono:Lua:mono method getClass

From Cheat Engine
Revision as of 19:06, 18 March 2019 by Dark Byte (talk | contribs) (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

function mono_method_getClass(methodId) : integer

Returns the class Id a method belongs in.

Function Parameters

Parameter Type Description
methodId integer The method's ID


Examples

In Lua Engine form

While attached to Cuphead.

Input:

local mId = mono_findMethod('', 'PlayerStatsManager', 'TakeDamage')
return mono_method_getClass(mId)

Output:

:284773608


See also

Related Functions