Method code for $realm_settings.parse_map_position()

[Turn on line numbering]
arg value;

if (value in ["n", "no", "none", "0"])
    return 0;
if (type(value) == 'list)
    value = value.join();
value = (| value.match_pattern("window *,* tag * on *").mmap('trim) |);
if (!value)
    throw(~parse, "Syntax: window <x>,<y> tag <tag> on <mapobject>");
return (> [toint(value[1]), toint(value[2]), value[3], $object_lib.to_dbref(value[4])] <);

// $#Edited: 09 Apr 97 08:30 $miro

["// Miroslav Silovic ", "// Created 23-Jan-1997 as a part of ColdCore, see: @help Credit"]

the Cold Dark