Difference between revisions of "To url"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
m
imported>Eliteofdelete
 
Line 17: Line 17:
 
function_description=Returns the short url (normally of the form "adventure.php?snarfblat=") used to visit the location {{pspan|place}}.|
 
function_description=Returns the short url (normally of the form "adventure.php?snarfblat=") used to visit the location {{pspan|place}}.|
  
needscode=yes|
+
code1={{CodeSample|
 +
title=Code Samples|
 +
description=Following example shows basic to_url operations.||
 +
code=
 +
<syntaxhighlight>
 +
location first;
 +
first = $location[The Poop Deck];
 +
print(first+" gives "+to_url(first)+".", "blue");
 +
</syntaxhighlight>|
 +
moreinfo=
 +
It gives the following output.
 +
<pre>
 +
The Poop Deck gives adventure.php?snarfblat=159.
 +
</pre>
 +
}}|
  
 
see_also={{SeeAlso|visit_url}}|
 
see_also={{SeeAlso|visit_url}}|

Latest revision as of 15:42, 26 January 2015

Function Syntax

string to_url(location place )

  • place is an in-game location to parse

Returns the short url (normally of the form "adventure.php?snarfblat=") used to visit the location place.

Code Samples

Following example shows basic to_url operations.

location first;
first = $location[The Poop Deck];
print(first+" gives "+to_url(first)+".", "blue");

It gives the following output.

The Poop Deck gives adventure.php?snarfblat=159.

See Also

visit_url()

Special

Trying to use $location[none] will generate an "Unexpected error."