Get path

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

string get_path()

When called by a relay override script, this returns the page name of the URL that was submitted in the relay browser. This does not include any variables which might follow a question mark in the URL.

Code Sample

Print path information about how the current override was called.

print( "This script was called by the URL: " + get_path_full() );
if( get_path_variables() != "" ) {
   print( "Which is composed of the page name: " + get_path() );
   print( "followed by a question mark and the variables: "+ get_path_variables() );
}

See Also

form_fields() | get_path_full() | get_path_variables()

Special

When this function is called by any script that is not a relay override, it returns an empty string.