Path id to name

From Kolmafia
Jump to navigation Jump to search

This function is deprecated in KoLmafia r26713.

Use to_path(id).name instead.


Function Syntax

string path_id_to_name(int id )

Returns the name of the specified path id.

Code Samples

Following example shows basic path_id_to_name operations.

int first = 3;
int second = 7;
int third = 24;

print(first+" gives "+path_id_to_name(first)+".");
print(second+" gives "+path_id_to_name(second)+".");
print(third+" gives "+path_id_to_name(third)+".");

Gives the following output.

3 gives Oxygenarian.
7 gives Trendy.
24 gives One Crazy Random Summer.

See Also

my_path() | my_path_id() | path_name_to_id()

Special

Returns "None" when submitting an ID which doesn't have a known path tied to, such as 5 (never released), or 60 (not yet known). Also, the 3 first unknown paths return "Path id", for internal reasons (as of writing this, for example, 40, 41 and 42 return "Path 40", "Path 41" and "Path 42".