Mono:Lua:mono class getName

From Cheat Engine
Revision as of 00:40, 6 May 2018 by TheyCallMeTim13 (talk | contribs) (Related Functions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

function mono_class_getName(classId) : string

Returns the class name as a string.

Function Parameters[edit]

Parameter Type Description
classId integer The class' ID


Examples[edit]

In Lua Engine form[edit]

While attached to Cuphead.

Input:

local cId = mono_findClass('', 'PlayerStatsManager')
return mono_class_getName(cId)

Output:

:PlayerStatsManager


See also[edit]

Related Functions[edit]