Mono:Lua:mono method getName
Jump to navigation
Jump to search
function mono_method_getName(methodId) : string
Returns the name of a method given the method id.
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
methodId | integer | The method's ID |
Examples[edit]
In Lua Engine form[edit]
- While attached to Cuphead.
Input:
local mId = mono_findMethod('', 'PlayerStatsManager', 'TakeDamage') return mono_method_getName(mId)
Output:
:TakeDamage