fixed in version 0.9 
https://sourceforge.net/tracker/?func=detail&aid=3471956&group_id=503565&atid=2048077
Dave

https://sourceforge.net/tracker/?func=detail&aid=3471956&group_id=503565&atid=2048077
Dave
Version 0.9 released with CHIT support. Including Avatar of Boris support.
Looking at it, some of his code is improved over the original CHIT, but he didn't make as many modifications for an awesome Boris experience. Mine is definitely nicer for the user. I even provided an equipment switcher for Clancy.
bumcheekcity, do you mind if I steal some of your changes to use for my version of CHIT, which I would probably post as updates in the CHIT thread? I think you made some nice improvements to the code.
// Get continuum transfunctioner automatically, originally by Alhifar
// Modified and MUCH added by Bale
boolean no_legionknife() {
if(in_hardcore()) return false;
foreach it in get_related($item[Loathing Legion knife], "fold")
if(available_amount(it) > 0 || storage_amount(it) > 0) return false;
return true;
}
void main() {
if(form_field("action") != "") exit;
buffer crack = visit_url("woods.php");
if(available_amount($item[continuum transfunctioner]) == 0) {
visit_url("mystic.php?action=crackyes3&crack1=Er%2C+sure%2C+I+guess+so...&pwd");
crack.insert(crack.index_of("<center><a href=\"main.php\">"),
"<div style='color:#0000CC;'>You stop off at the Crackpot Mystic's Shed and listen to a long boring story.<br />"+
"<b>You acquire an item: continuum transfunctioner</b></div></p><p>");
if(no_legionknife() || knoll_available()) {
visit_url("forestvillage.php?action=screwquest");
if(!knoll_available())
crack.insert(crack.index_of("<center><a href=\"main.php\">"),
"<div style='color:#0000CC;'>The untinker needs you to run some errands.</p><p>");
}
if(knoll_available()) {
visit_url("knoll.php?place=smith");
visit_url("forestvillage.php?place=untinker");
crack.insert(crack.index_of("<center><a href=\"main.php\">"),
"<div style='color:#0000CC;'>The untinker needs you to run some errands.<br />"+
"<b>You acquire an item: rusty screwdriver</b><br />"+
"After returning the screwdriver to the untinker he swears eternal servitude!</p><p>");
}
}
crack.write();
}
//Wiki Links v1.0
//By IceColdFever
void main()
{
buffer results;
results.append(visit_url());
int start = index_of(results, "<b>");
int end = index_of(results, "</b>");
string name_of_item = substring(results, start+3,end);
name_of_item = replace_string(name_of_item, " ", "_");
insert(results, start, "<a target=_blank href=http://kol.coldfront.net/thekolwiki/index.php/"+name_of_item+">");
int new_end = index_of(results, "</b>");
insert(results, new_end + 4, "</a>");
results.write();
}