My class

From Kolmafia
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Function Syntax

class my_class()

Returns the current class of the logged-in character.

Code Sample

The following decides how many big rocks to acquire based on the character's class:

int rocks = 1;

if (my_class() == $class[seal clubber] || my_class() == $class[turtle tamer] || my_class() == $class[disco bandit]) {
   rocks = 2
}

Special

When not logged in, this function returns $class[none].