Character Info Toolbox

Bale

Minion
By the way, I forgot to mention it when I added the feature two weeks ago. If you are in KOLHS, the words "KOLHS" in the charpane are a link to the zone. Probably a lot of people figured that out already, but for those who haven't, now you know!
 

Erich

Member
the right click familiar picker is doing something weird. The first time I right click after a battle, it scrunches up and causes a scrollbar to appear:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />

<link rel="stylesheet" type="text/css" href="http://images.kingdomofloathing.com/styles.css">
<style type="text/css">
	#nudges div { position: relative; padding: 0px; }
	#nudges div .close { position: absolute; top: -2px; right: -10px; border: 1px solid black; }
</style>
<script language="Javascript" src="/basics.js"></script><link rel="stylesheet" href="/basics.css" />
<link rel="stylesheet" href="chit.css">
</head>
<script language=Javascript src="/images/scripts/keybinds.min.2.js"></script>
<script language=Javascript src="/images/scripts/window.20111231.js"></script>
<script language="javascript">function chatFocus(){if(top.chatpane.document.chatform.graf) top.chatpane.document.chatform.graf.focus();}
if (typeof defaultBind != 'undefined') { defaultBind(47, 2, chatFocus); defaultBind(190, 2, chatFocus);defaultBind(191, 2, chatFocus); defaultBind(47, 8, chatFocus);defaultBind(190, 8, chatFocus); defaultBind(191, 8, chatFocus); }</script><script language=Javascript src="/images/scripts/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="/images/scripts/pop_query.20130705.js"></script>
<script type="text/javascript">

	var CURFAM = 150;
	var FAMILIARFAVES = [["Number 87","Rogue Program","tronguy",135],["Number 88","Mini-Hipster","minihipster",136],["Number 8B","Knob Goblin Organ Grinder","organgoblin",139],["Number 32","Wild Hare","hare",50],["Number 71","He-Boulder","heboulder",113],["Number 46","Green Pixie","pictsie",70],["Number 6F","Baby Sandworm","babyworm",111],["Number 92","Obtuse Angel","obtuseangel",146],["Number A2","Reagnimated Gnome","frankengnome",162],["Number 69","Frumious Bandersnatch","bandersnatch",105],["Number 7C","Baby Bugged Bugbear","babybugbug",124],["Number 9F","Happy Medium","medium_0",159],["Trort","Angry Jung Man","jungman",165],["Number 98","Fancypants Scarecrow","pantscrow2",152],["Number A0","Artistic Goth Kid","crayongoth",160],["Number 94","Li\'l Xenomorph","lilxeno",148],["Number 36","Comma Chameleon","commacha",54],["Number 48","Exotic Parrot","parrot",72],["Gron","Unconscious Collective","uc",166],["Torg","Oily Woim","woim",168],["Number 96","Pair of Stomping Boots","stompboots",150] ];
</script>

	<script type="text/javascript">
var todo = [];
function nextAction() {
	var next_todo = todo.shift();
	if (next_todo) {
		eval(next_todo);
	}
}
function dojax(dourl, afterFunc, hoverCaller, failureFunc) {
	$.ajax({
		type: 'GET', url: dourl, cache: false,
		global: false,
		success: function (out) {
			nextAction();
			if (out.match(/no\|/)) {
				var parts = out.split(/\|/);
				if (failureFunc) failureFunc(parts[1]);
				else $('#ChatWindow').append('<font color="green">Oops!  Sorry, Dave, you appear to be ' + parts[1] + '.</font><br />' + "\n");
				return;
			}

			if (hoverCaller)  {
				float_results(hoverCaller, out);
				if (afterFunc) { afterFunc(out); }
				return;
			}			var $eff = $(top.mainpane.document).find('#effdiv');
			if ($eff.length == 0) {
				var d = top.mainpane.document.createElement('DIV');
				d.id = 'effdiv';
				var b = top.mainpane.document.body;
				if ($('#content_').length > 0) {
					b = $('#content_ div:first')[0];
				}
				b.insertBefore(d, b.firstChild);
				$eff = $(d);
			}
			$eff.find('a[name="effdivtop"]').remove().end()
				.prepend('<a name="effdivtop"></a><center>' + out + '</center>').css('display','block');
			if (!window.dontscroll || (window.dontscroll && dontscroll==0)) {
				top.mainpane.document.location = top.mainpane.document.location + "#effdivtop";
			}
			if (afterFunc) { afterFunc(out); }
		}
	});
}
	var turnsplayed = 232624;
var turnsthisrun = 251;
var rollover = 1379042997;
var rightnow = 1379029661;
var playerid = 1770423;
var pwdhash = "c494eefb23202a99a4d193793e928ea4";
var hide_nudges = true;
$(document).ready(function () {
	$('.showall').live('click',function () {
		var hidden = $(this).attr('rel');
		var hd = hidden.split(/,/);
		for (var i=0; i< hd.length; i++) {
			deleteCookie(hd[i], '');
		}
		document.location = 'charpane.php?foo=' + escape(Math.random());
	});
	var multi = function  (e) {
		e.preventDefault();
		var link = this;
		pop_query($(this), 'How many times?', 'Do It!', function (res) {
			dojax(($(link).attr('href')+'&ajax=1').replace('qty=1', 'qty='+res));
		});
	};
	$('.upeffect').click(function (e) {
		e.preventDefault();
		if (e.shiftKey) multi.apply(this, [e]);
		else dojax($(this).attr('href')+'&ajax=1');
	});
	$('.upeffect').bind('contextmenu', multi);

	/*
	try {
		var $ue = $('.upeffect');
		if (localStorage.getItem('showing-efarrows') != 1) 
			$ue.hide()
		$ue.parents('td').css('width', '15');
		$ue.parents('table').hover(function (e) {
			$ue.show();
			localStorage.setItem('showing-efarrows', 1);
		}, function (e) {
			$ue.hide();
			localStorage.removeItem('showing-efarrows');
		});
	} catch (e) { }
	 */

	if (hide_nudges) $('#nudges td div').hover(
		function () {
			if (!hide_nudges) return;
			var ht = '<a href="#" class="close"><img alt="Hide" title="Hide"  src="http://images.kingdomofloathing.com/closebutton.gif" /></a>';
			var c = $(ht);
			$(this).append(c);
			c.click(function () {
				var key = $(this).parents('tr:first').attr('rel');
				$(this).parents('tr:first').remove();
				setCookie(key, 1);
			});
		},
			function () {
				if (!hide_nudges) return;
				$(this).find('.close').remove();
			}
	);
});
</script>
<script language=Javascript src="/images/scripts/charpane.20130711.js"></script>
<script type="text/javascript" src="/images/scripts/cookie.20121112.js"></script>

<script type="text/javascript" src="chit.js"></script>
<body bgcolor=white text=black link=black alink=black vlink=black onload='startup();'>
<div id="chit_house"><div id="chit_roof" class="chit_chamber"><table id="chit_character" class="chit_brick nospace"><tr><th colspan="3"><a target="mainpane" href="charsheet.php">Erichwanh</a></th></tr><tr><td rowspan="4" class="avatar"><a href="#" class="chit_launcher" rel="chit_pickeroutfit" title="Select Outfit"><img src="http://images.kingdomofloathing.com/otherimages/sauceror_f.gif"></a></td><td class="label"><a target="mainpane" href="guild.php?guild=m" title="Visit your guild">Erich w/ an h</a></td><td class="level" rowspan="2"><a target="mainpane" href="council.php" title="Visit the Council">9</a></td></tr><tr><td class="info">Hardcore</td></tr><tr><td class="info"><a target='mainpane' style='font-weight:normal;' href='place.php?whichplace=KOLHS'>KOLHS</a></td></tr><tr><td colspan="2"><div class="chit_resource"><div title="Meat" style="float:left"><span>11,534</span><img src="/images/itemimages/meat.gif"></div><div title="175 Adventures remaining
 Current Run: 15 / 251" style="float:right"><span>175</span><img src="/images/itemimages/slimhourglass.gif"></div></div><div style="clear:both"></div></td></tr><tr><td class="progress" colspan="3" title="10 mysticality until level 10
 (1,584 substats needed)" ><div class="progressbar" style="width:39.10034602076124%"></div></td></tr></table><table id="chit_stats" class="chit_brick nospace"><thead><tr><th colspan="3">My Stats</th></tr></thead><tbody><tr><td class="label">Muscle</td><td class="info"><span style="color:blue">57</span>  (51)</td><td class="progress"><div class="progressbox" title="95 / 103 (8 needed)"><div class="progressbar" style="width:92.23300970873787%"></div></div></td></tr><tr><td class="label">Myst</td><td class="info"><span style="color:blue">108</span>  (75)</td><td class="progress"><div class="progressbox" title="16 / 151 (135 needed)"><div class="progressbar" style="width:10.596026490066226%"></div></div></td></tr><tr><td class="label">Moxie</td><td class="info"><span style="color:blue">102</span>  (51)</td><td class="progress"><div class="progressbox" title="28 / 103 (75 needed)"><div class="progressbar" style="width:27.184466019417474%"></div></div></td></tr></tbody><tbody><tr><td class="label">HP</td><td class="info">84 / 84</td><td class="progress"><div class="progressbox" title="84 / 84"><div class="progressbar" style="width:100.0%;background-color:green"></div></div></td></tr><tr><td class="label">MP</td><td class="info">218 / 223</td><td class="progress"><div class="progressbox" title="218 / 223"><div class="progressbar" style="width:97.75784753363229%;background-color:green"></div></div></td></tr></tbody><tbody><tr><td class="label"><a href="canadia.php?place=machine" target="mainpane" title="Mind-Control Device">MCD</a></td><td class="info"><a href="#" class="chit_launcher" rel="chit_pickermcd" title="Touch that dial!">11</a></td><td class="progress"><a href="#" id="chit_mcdlauncher" class="chit_launcher" rel="chit_pickermcd"><div class="progressbox" title="Touch that dial!"><div class="progressbar" style="width:100.0%;background-color:black"></div></div></a></td></tr></tbody><tbody><tr><td class="label"><a class="visit" target="mainpane" href="place.php?whichplace=KOLHS">Last</a></td><td class="info" style="display:block;" colspan="2"><a class="visit" target="mainpane" href="adventure.php?snarfblat=328">Chemistry Class</a></td></tr><tr><td class="label"> </td><td class="florist" colspan="2"><a class="chit_launcher" rel="chit_pickerflorist" href="#"><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant20.gif" title="Pitcher Plant
 (Restores MP after combat)"><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant12.gif" title="Stealing Magnolia
 (+25% Item drops)"><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant19.gif" title="Aloe Guv'nor
 (Restores HP after combat)"></a></td></tr></tbody></table><table id="chit_organs" class="chit_brick nospace"><thead><tr><th colspan="3"><img src="/images/chit/organs.png">Consumption</th></tr></thead><tr><td class="label">Stomach</td><td class="info">0 / 15</td><td class="progress"><div class="progressbox" title="Hmmm... pies"><div class="progressbar" style="width:0.0%;background-color:green"></div></div></td></tr><tr><td class="label">Liver</td><td class="info">0 / 14</td><td class="progress"><div class="progressbox" title="You are stone-cold sober"><div class="progressbar" style="width:0.0%;background-color:blue"></div></div></td></tr><tr><td class="label">Spleen</td><td class="info">0 / 15</td><td class="progress"><div class="progressbox" title="Your spleen is in perfect shape!"><div class="progressbar" style="width:0.0%;background-color:blue"></div></div></td></tr></table></div><div id="chit_walls" class="chit_chamber"><center id='rollover' class=tiny style='color: red; cursor: pointer;' onClick='poop("doc.php?topic=maintenance", "documentation", 558, 518, "scrollbars=yes,resizable=no");'></center><table id="chit_effects" class="chit_brick nospace"><thead><tr><th colspan="4"><img src="/images/chit/effects.png">Effects</th></tr></thead><tbody class="buffs"><tr class="effect" style="background-color:khaki"><td class="icon"><img src="http://images.kingdomofloathing.com/itemimages/fortune.gif"></td><td class="info">Fortune Cookie</td><td class="shrug"><a href="/KoLmafia/sideCommand?cmd=counters+deletehash+1238802595&pwd=c494eefb23202a99a4d193793e928ea4">6</a></td><td> </td></tr><tr class="effect"><td class="icon"><img src="http://images.kingdomofloathing.com/itemimages/greaserint.gif" width=20 height=20  onClick='eff("f9c4145cc96ab8b3479d3eb88696da8b");'></td><td class="info">Slicked-Back Do</td><td class="shrug"><a href="/KoLmafia/sideCommand?cmd=uneffect+Slicked-Back+Do&pwd=c494eefb23202a99a4d193793e928ea4" title="Use a remedy to remove the Slicked-Back Do effect">16</a></td><td class="powerup"><a href="/KoLmafia/sideCommand?cmd=use+1+hair+oil&pwd=c494eefb23202a99a4d193793e928ea4" title="Increase rounds of Slicked-Back Do"><img src="/images/chit/up.png" border=0></a></td></tr><tr class="effect"><td class="icon"><img src="http://images.kingdomofloathing.com/itemimages/dasboot.gif" width=20 height=20  onClick='eff("c781c7a1ab57b20200e07228ef913165");'></td><td class="info">Silent Running</td><td class="shrug"><a href="/KoLmafia/sideCommand?cmd=uneffect+Silent+Running&pwd=c494eefb23202a99a4d193793e928ea4" title="Use a remedy to remove the Silent Running effect">64</a></td><td class="powerup"><a href="/KoLmafia/sideCommand?cmd=swim+sprints&pwd=c494eefb23202a99a4d193793e928ea4" title="Increase rounds of Silent Running"><img src="/images/chit/up.png" border=0></a></td></tr><tr class="effect"><td class="icon"><img src="http://images.kingdomofloathing.com/itemimages/raindrop.gif" width=20 height=20  onClick='eff("df5ed605feb8ac254669bbb54b9c22f1");'></td><td class="info">Thaumodynamic</td><td class="shrug"><a href="/KoLmafia/sideCommand?cmd=uneffect+Thaumodynamic&pwd=c494eefb23202a99a4d193793e928ea4" title="Use a remedy to remove the Thaumodynamic effect">143</a></td><td class="powerup"><a href="/KoLmafia/sideCommand?cmd=shower+lukewarm&pwd=c494eefb23202a99a4d193793e928ea4" title="Increase rounds of Thaumodynamic"><img src="/images/chit/up.png" border=0></a></td></tr></tbody><tbody class="intrinsics"><tr class="effect"><td class="icon"><img height=20 width=20 src="http://images.kingdomofloathing.com/itemimages/kungfu.gif" onClick='eff("c3b40896d1596565f2f489b2774dd6ec");'></td><td class="info" colspan="2">Kung Fu Fighting</td><td class="infinity">∞</td></tr><tr class="effect"><td class="icon"><img height=20 width=20 src="http://images.kingdomofloathing.com/itemimages/lightning.gif" onClick='eff("e5da19b3764183b04d100fabe8978416");'></td><td class="info" colspan="2">Fast as Lightning</td><td class="infinity">∞</td></tr><tr class="effect"><td class="icon"><img height=20 width=20 src="http://images.kingdomofloathing.com/itemimages/scaredeyes.gif" onClick='eff("346ada2be15421d61362feb7efe73249");'></td><td class="info" colspan="2">A Little Bit Frightening</td><td class="infinity">∞</td></tr><tr class="effect"><td class="icon"><img height=20 width=20 src="http://images.kingdomofloathing.com/itemimages/watch.gif" onClick='eff("8026f881e7284dc03b962eef338210d8");'></td><td class="info" colspan="2">Expert Timing</td><td class="infinity">∞</td></tr><tr class="effect"><td class="icon"><img height=20 width=20 src="http://images.kingdomofloathing.com/itemimages/nerdint.gif" onClick='eff("e45f7eeddd4f3afe1c4883d8d98c6d33");'></td><td class="info" colspan="2">Nerd is the Word</td><td class="infinity">∞</td></tr></tbody></table></div><div id="chit_floor" class="chit_chamber"><table id="chit_familiar" class="chit_brick nospace"><tr><th width="40" title="Buffed Weight" style="color:blue">12</th><th><a target=mainpane href="familiar.php" class="familiarpick" title="Visit your terrarium">Number 96</a></th><th width="30"> </th></tr><tr><td class="icon" title="Visit your terrarium"><a target=mainpane href="familiar.php" class="familiarpick"><img src="/images/itemimages/stompboots.gif"></a></td><td class="info" style=""><a title="Familiar Haiku" class="hand" onclick="fam(150)" origin-level="third-party"/>Pair of Stomping Boots</a><br><span style="color:#606060;font-weight:normal">(0/2 runs, 2/7  stomps)</span></td><td class="icon" title="Equip your familiar"><a class="chit_launcher" rel="chit_pickerfam" href="#"><img title="" src="/images/itemimages/blank.gif"></a></td></tr><tr><td colspan="3" class="progress" title="10 / 15" ><div class="progressbar" style="width:66.66666666666667%"></div></td></tr></table><table id="chit_toolbar"><tr><th><ul style="float:left"><li><a href="charpane.php" title="Reload"><img src="/images/chit/refresh.png"></a></li></ul><ul style="float:right"><li><a href="#" class="chit_launcher" rel="chit_pickermood" title="Select Mood"><img src="/images/chit/select_mood.png"></a></li></ul><ul><li><a class="tool_launcher" title="Recent Adventures" href="#" rel="trail"><img src="/images/chit/trail.png"></a></li><li><a class="tool_launcher" title="Modifiers" href="#" rel="modifiers"><img src="/images/chit/modifiers.png"></a></li><li><a class="tool_launcher" title="Tracker" href="#" rel="tracker"><img src="/images/chit/tracker.png"></a></li><li><a class="tool_launcher" title="Current Quests" href="#" rel="quests"><img src="/images/chit/quests.png"></a></li></ul></th></tr></table></div><div id="chit_closet"><div id="chit_pickerfam" class="chit_skeleton" style="display:none"><table class="chit_picker"><tr><th colspan="2">Equip Thy Familiar Well</th></tr><tr class="pickloader" style="display:none"><td class="info">Changing Equipment...</td><td class="icon"><img src="/images/itemimages/karma.gif"></td></tr><tr class="pickitem"><td class="inventory"><a class="change" href="/KoLmafia/sideCommand?cmd=equip+familiar+sugar+shield&pwd=c494eefb23202a99a4d193793e928ea4" title="Equip sugar shield">sugar shield<br /><span style='color:#707070'>Weight: +10<span></a></td><td class="icon"><a class="change" href="/KoLmafia/sideCommand?cmd=equip+familiar+sugar+shield&pwd=c494eefb23202a99a4d193793e928ea4" title="Equip sugar shield"><img src="/images/itemimages/sugshield.gif"></a></td></tr></table></div><div id="chit_pickerflorist" class="chit_skeleton" style="display:none"><table class="chit_picker"><tr><th colspan="2">Pull a Plant</th></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/itemimages/shovel.gif"></td><td><a href="/KoLmafia/sideCommand?cmd=ashq+visit_url%28%22forestvillage.php%3Faction%3Dfloristfriar%22%29%3Bvisit_url%28%22choice.php%3Foption%3D2%26whichchoice%3D720%26pwd%3Dc494eefb23202a99a4d193793e928ea4%26plnti%3D0%22%29%3B&pwd=c494eefb23202a99a4d193793e928ea4">Pitcher Plant<br>(Restores MP after combat)</a></td></tr><tr class="florist" style="background-color:PaleGreen"><td><img src="http://images.kingdomofloathing.com/itemimages/shovel.gif"></td><td><a href="/KoLmafia/sideCommand?cmd=ashq+visit_url%28%22forestvillage.php%3Faction%3Dfloristfriar%22%29%3Bvisit_url%28%22choice.php%3Foption%3D2%26whichchoice%3D720%26pwd%3Dc494eefb23202a99a4d193793e928ea4%26plnti%3D1%22%29%3B&pwd=c494eefb23202a99a4d193793e928ea4">Stealing Magnolia<br>(+25% Item drops)</a></td></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/itemimages/shovel.gif"></td><td><a href="/KoLmafia/sideCommand?cmd=ashq+visit_url%28%22forestvillage.php%3Faction%3Dfloristfriar%22%29%3Bvisit_url%28%22choice.php%3Foption%3D2%26whichchoice%3D720%26pwd%3Dc494eefb23202a99a4d193793e928ea4%26plnti%3D2%22%29%3B&pwd=c494eefb23202a99a4d193793e928ea4">Aloe Guv'nor<br>(Restores HP after combat)</a></td></tr><tr class="pickitem"><td colspan="2" style="color:white;background-color:blue;font-weight:bold;">Remaining Plants</th></tr><tr class="florist" style="background-color:Khaki"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant11.gif" title="War Lily
 (+30 Monster Level)"></td><td>War Lily<br>(+30 Monster Level)</td></tr><tr class="florist" style="background-color:Khaki"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant13.gif" title="Canned Spinach
 (+5 Muscle stats per fight)"></td><td>Canned Spinach<br>(+5 Muscle stats per fight)</td></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant14.gif" title="Impatiens
 (+25% Combat Initiative)"></td><td>Impatiens<br>(+25% Combat Initiative)</td></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant15.gif" title="Spider Plant
 (Damages and poisons enemies before combat)"></td><td>Spider Plant<br>(Damages and poisons enemies before combat)</td></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant16.gif" title="Red Fern
 (Delevels enemies during combat)"></td><td>Red Fern<br>(Delevels enemies during combat)</td></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant17.gif" title="BamBOO!
 (Deals Spooky damage)"></td><td>BamBOO!<br>(Deals Spooky damage)</td></tr><tr class="florist" style="background-color:LightSkyBlue"><td><img src="http://images.kingdomofloathing.com/otherimages/friarplants/plant18.gif" title="Arctic Moss
 (Deals Cold damage)"></td><td>Arctic Moss<br>(Deals Cold damage)</td></tr><tr class="pickloader" style="display:none"><td class="info">Planting</td><td class="icon"><img src="/images/itemimages/karma.gif"></td></tr></table></div><div id="chit_pickermcd" class="chit_skeleton" style="display:none"><table class="chit_picker"><tr><th colspan="2">Touch that dial!</th></tr><tr class="pickloader" style="display:none"><td class="info">Changing Dial...</td><td class="icon"><img src="/images/itemimages/karma.gif"></td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+0&pwd=c494eefb23202a99a4d193793e928ea4">Turn it off</a></td><td class="level">0</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+1&pwd=c494eefb23202a99a4d193793e928ea4">Turn it mostly off</a></td><td class="level">1</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+2&pwd=c494eefb23202a99a4d193793e928ea4">Ratsworth's money clip</a></td><td class="level">2</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+3&pwd=c494eefb23202a99a4d193793e928ea4">Glass Balls of the King</a></td><td class="level">3</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+4&pwd=c494eefb23202a99a4d193793e928ea4">Boss Bat britches</a></td><td class="level">4</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+5&pwd=c494eefb23202a99a4d193793e928ea4">Rib of the Bonerdagon</a></td><td class="level">5</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+6&pwd=c494eefb23202a99a4d193793e928ea4">Horoscope of the Hermit</a></td><td class="level">6</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+7&pwd=c494eefb23202a99a4d193793e928ea4">Codpiece of the King</a></td><td class="level">7</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+8&pwd=c494eefb23202a99a4d193793e928ea4">Boss Bat bling</a></td><td class="level">8</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+9&pwd=c494eefb23202a99a4d193793e928ea4">Ratsworth's tophat</a></td><td class="level">9</td></tr><tr class="pickitem "><td class="info"><a class="change"  href="/KoLmafia/sideCommand?cmd=mcd+10&pwd=c494eefb23202a99a4d193793e928ea4">Vertebra of the Bonerdagon</a></td><td class="level">10</td></tr><tr class="pickitem current"><td class="info">It goes to 11?</td><td class="level">11</td></tr></table></div><div id="chit_pickermood" class="chit_skeleton" style="display:none"><table class="chit_picker"><tr><th colspan="2">Select New Mood</th></tr><tr class="pickloader" style="display:none"><td class="info">Getting Moody</td><td class="icon"><img src="/images/itemimages/karma.gif"></td></tr><tr class="pickitem"><td class="info"><a title="Make this your current mood" class="visit" href="/KoLmafia/sideCommand?cmd=mood+apathetic&pwd=c494eefb23202a99a4d193793e928ea4">apathetic</a></td><td> </td></tr><tr class="pickitem"><td class="info"><a title="Make this your current mood" class="visit" href="/KoLmafia/sideCommand?cmd=mood+default&pwd=c494eefb23202a99a4d193793e928ea4">default</a></td><td> </td></tr><tr class="pickitem"><th colspan="2">Current Mood</th></tr><tr class="pickitem"><td class="info"><a class="visit" <a title="Save as Mood" href="/KoLmafia/sideCommand?cmd=save+as+mood&pwd=c494eefb23202a99a4d193793e928ea4"><img src="/images/chit/moodsave.png"> Save as Mood</a></td></tr></table></div><div id="chit_pickeroutfit" class="chit_skeleton" style="display:none"><table class="chit_picker"><tr><th colspan="2">Select Outfit</th></tr><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Birthday+Suit&pwd=c494eefb23202a99a4d193793e928ea4">Birthday Suit</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Knob+Goblin+Harem+Girl+Disguise&pwd=c494eefb23202a99a4d193793e928ea4">Knob Goblin Harem Girl Disguise</a></td><tr class="pickitem"><td style="color:white;background-color:blue;font-weight:bold;">Custom Outfits</td></tr><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+%2BPvP&pwd=c494eefb23202a99a4d193793e928ea4">+PvP</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Backup&pwd=c494eefb23202a99a4d193793e928ea4">Backup</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Basement+-+Cold&pwd=c494eefb23202a99a4d193793e928ea4">Basement - Cold</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Basement+-+Damage&pwd=c494eefb23202a99a4d193793e928ea4">Basement - Damage</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Basement+-+Hot&pwd=c494eefb23202a99a4d193793e928ea4">Basement - Hot</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Basement+-+Sleaze&pwd=c494eefb23202a99a4d193793e928ea4">Basement - Sleaze</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Basement+-+Spooky&pwd=c494eefb23202a99a4d193793e928ea4">Basement - Spooky</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Basement+-+Stench&pwd=c494eefb23202a99a4d193793e928ea4">Basement - Stench</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Damage&pwd=c494eefb23202a99a4d193793e928ea4">Damage</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Fire&pwd=c494eefb23202a99a4d193793e928ea4">Fire</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Gauntlet&pwd=c494eefb23202a99a4d193793e928ea4">Gauntlet</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Hobo&pwd=c494eefb23202a99a4d193793e928ea4">Hobo</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Moxie&pwd=c494eefb23202a99a4d193793e928ea4">Moxie</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+MP+Regen&pwd=c494eefb23202a99a4d193793e928ea4">MP Regen</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+MPDrain&pwd=c494eefb23202a99a4d193793e928ea4">MPDrain</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Muscle&pwd=c494eefb23202a99a4d193793e928ea4">Muscle</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Mysticality&pwd=c494eefb23202a99a4d193793e928ea4">Mysticality</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Slime+1&pwd=c494eefb23202a99a4d193793e928ea4">Slime 1</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Slime+2&pwd=c494eefb23202a99a4d193793e928ea4">Slime 2</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Slime+hates+it&pwd=c494eefb23202a99a4d193793e928ea4">Slime hates it</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Time&pwd=c494eefb23202a99a4d193793e928ea4">Time</a></td><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=outfit+Time%3A+Grim&pwd=c494eefb23202a99a4d193793e928ea4">Time: Grim</a></td><tr class="pickitem"><td style="color:white;background-color:blue;font-weight:bold;">Equip for Quest</td></tr><tr class="pickitem"><td class="info"><a class="change" href="/KoLmafia/sideCommand?cmd=equip+acc3+continuum+transfunctioner&pwd=c494eefb23202a99a4d193793e928ea4">continuum transfunctioner</a></td></tr><tr class="pickloader" style="display:none"><td class="info">Getting Dressed</td><td class="icon"><img src="/images/itemimages/karma.gif"></td></tr></table></div><div id="chit_tooltrail" class="chit_skeleton" style="display:none"><table id="chit_trail" class="chit_brick nospace"><tr><th><a class="visit" target="mainpane" href="place.php?whichplace=KOLHS"><img src="/images/chit/trail.png">Last Adventure</a></th></tr><tr><td class="last"><a class="visit" target="mainpane" href="adventure.php?snarfblat=328">Chemistry Class</a></td></tr><tr><td><a class="visit" target="mainpane" href="adventure.php?snarfblat=326"> Hallowed Halls</a></td></tr></table></div><div id="chit_toolmodifiers" class="chit_skeleton" style="display:none"><table id="chit_modifiers" class="chit_brick nospace"><thead><tr><th colspan="2"><img src="/images/chit/modifiers.png">Modifiers</th></tr></thead><tbody><tr><td class="label">Meat Drop</td><td class="info">+40.0%</td></tr><tr><td class="label">Item Drop</td><td class="info">+134.69%</td></tr><tr><td class="label">  Forced Drop @</td><td class="info">43%</td></tr></tbody><tbody><tr><td class="label">Monster Level</td><td class="info">+11</td></tr><tr><td class="label">Initiative</td><td class="info">+70%</td></tr><tr><td class="label">Modified Init</td><td class="info">+70%</tr><tr><td class="label">Combat Rate</td><td class="info">-5%</td></tr></tbody><tbody><tr><td class="label">Damage Absorp</td><td class="info">38% (240)</td></tr><tr><td class="label">Damage Red</td><td class="info">15</td></tr></tbody><tbody><tr><td class="label">Spell Damage</td><td class="info">+9 </td></tr><tr><td class="label">Weapon Damage</td><td class="info">+37 </td></tr><tr><td class="label">Ranged Damage</td><td class="info">+0</td></tr></tbody></table></div><div id="chit_tooltracker" class="chit_skeleton" style="display:none"><table id="chit_tracker" class="chit_brick nospace"><tr><th><img src="/images/chit/tracker.png"><a target="mainpane" href="questlog.php">Quest Tracker</a></th></tr><tr><td>Clear the <a target="mainpane" href="cellar.php">Typical Tavern</a> rats</td></tr><tr><td>Clear the <a target="mainpane" href="friars.php">Deep Fat Friars</a><br><span style="color:red">eldritch butterknife</span> (Elbow)<br><span style="color:red">box of birthday candles</span> (Heart)<br><span style="color:red">dodecagram</span> (Neck)</td></tr><tr><td><table><tr><td colspan=2><a target=mainpane href="crypt.php">Cyrpt</a> Evilometer: 200</td></tr><tr><td><table><tr><td title="+items"><span style="color:black">Nook: 50</span></td><td title="sniff dirty old lihc"><span style="color:black">Niche: 50</span></td></tr><tr><td title="+NC, +ML"><span style="color:black">Cranny: 50</span></td><td title="+init"><span style="color:black">Alcove: 50</span></td></tr></table></td></tr></table></td></tr><tr><td><a target="mainpane" href="place.php?whichplace=mclargehuge">Help the Trapper</a><br>Visit the <a target="mainpane" href="place.php?whichplace=mclargehuge&action=trappercabin">Trapper</a></td></tr><tr><td>Cross the <a target="mainpane" href="place.php?whichplace=orc_chasm">Orc Chasm</a><br>Bridge Progress: 0/30</td></tr><tr><td>Get Library Key at <a target="mainpane" href="manor.php">Billiard Room</a></td></tr></table></div><div id="chit_toolquests" class="chit_skeleton" style="display:none"><table id="nudges" class="chit_brick nospace"><tr><th><img src="/images/chit/quests.png"><a target="mainpane" href="questlog.php">Current Quests</a></th></tr><tr rel="qn_829bd659beca9fefb2bac9f677689a52"><td class="small" colspan="2"><div>Explore the cellar of the <a class=nounder target=mainpane href=tavern.php><b>Typical Tavern</b></a> and find the source of the rats.</div></td></tr><tr rel="qn_1d917ddc3f1fa8c85d4243fbf0834acc"><td class="small" colspan="2"><div>Talk to the Deep Fat Friars in the <a class=nounder target=mainpane href=woods.php><b>Distant Woods</b></a>.</div></td></tr><tr rel="qn_c53d5f5cdcbd1835e21a39f4ba348b65"><td class="small" colspan="2"><div>Go talk to the Trapper on <a href=place.php?whichplace=mclargehuge class=nounder target=mainpane><b>Mt. McLargeHuge</b></a>.</div></td></tr><tr rel="qn_a147ed881781577056fb92ee0af46287"><td class="small" colspan="2"><div>Find a way across the <a class=nounder target=mainpane href=place.php?whichplace=orc_chasm><b>Orc Chasm</b></a>.</div></td></tr><tr rel="qn_56d490aecf1d2172d7258739026cb55a"><td class="small" colspan="2"><div>Get rid of the evil in <b><a class=nounder target=mainpane href="crypt.php">The Cyrpt</a></b>.<br><b><a class=nounder target=mainpane href="inv_use.php?whichitem=4964&pwd=c494eefb23202a99a4d193793e928ea4">Evilometer:</a> 200</b><br>   * <a href="adventure.php?snarfblat=261" target="mainpane">Alcove:</a> 50 (+init)<br>   * <a href="adventure.php?snarfblat=262" target="mainpane">Cranny:</a> 50 (+NC, +ML)<br>   * <a href="adventure.php?snarfblat=263" target="mainpane">Niche:</a> 50 (sniff dirty old lihc)<br>   * <a href="adventure.php?snarfblat=264" target="mainpane">Nook:</a> 50 (+items)</div></td></tr><tr rel="qn_02262a24758db95451600986ed11450a"><td class="small" colspan="2"><div><a class=nounder target=mainpane href='/place.php?whichplace=canadia'><b>Marty</b></a> the Lumberjack	needs some items:<br>   * A branch of the Great Tree<br>   * Phil Bunion's axe<br>   * A bouquet of swamp roses</div></td></tr></table></div></div></div></body></html>

But it's only the first time. After that it works like intended, until the charpane gets refreshed from a battle when it acts wonky again. It's odd.

By the way, I forgot to mention it when I added the feature two weeks ago. If you are in KOLHS, the words "KOLHS" in the charpane are a link to the zone. Probably a lot of people figured that out already, but for those who haven't, now you know!

I was actually going to ask if you could add this to your topmenu override, but this is actually a way nicer thing, thanks!
 

Bale

Minion
the right click familiar picker is doing something weird. The first time I right click after a battle, it scrunches up and causes a scrollbar to appear:

But it's only the first time. After that it works like intended, until the charpane gets refreshed from a battle when it acts wonky again. It's odd.

I think that's probably a browser issue. I'm just guessing though.



I was actually going to ask if you could add this to your topmenu override, but this is actually a way nicer thing, thanks!

My topmenu and charpane combine as related parts of my GUI. Gotta get them both!
 
Hi, small (but pretty big image) problem... The icons for CHIT are missing, the buttons are still there, but the pictures arn't.

r12642
Actions taken: svn deleted and reinstalled CHIT then reopened browser, svn deleted and reinstalled CHIT then restarted mafia. Checked that all icons are in /image (They are. There is a chit folder in relayimages/chit that has some missiing icons but i doubt that the problem.) Checked that all images worked (They work).

Tinkering with the script: Changing the string imagePath from /images/chit/ to /images/relayimages/chit/ makes the icons come back, but outfit icon is still blank although it works.
Copied the folder from images/chit into relayimages/chit because there were more .png files there. :/ (Idk why I did that though.)

Thanks!
 
Last edited:

Bale

Minion
The current mafia builds are experimenting with image cache alterations which has been causing some trouble, but r12642 doesn't cause any problems for ChIT that I can duplicate.

It would be interesting to know...
  • You were successfully using ChIT until a recent mafia upgrade, right?
  • In Preferences -> Relay Browser, did you check "Cache KoL images to conserve bandwidth"?
  • What is your browser?
  • Does ChIT work for you if you downgrade mafia to r12629?
  • By "outfit icon" do you mean the character avatar? That isn't a ChIT image.
 
I upgraded from r29 to r42, had broken links and proceeded to clear Firefox image cache and mafia /images.

I changed the string imagePath to relay/relayimages/chit/ and while I did restart everything, some icons like 'Select Mood' were still not there (But clicking the area where it was located still worked).

But now, after reopening FF again, all icons are there, everything now looks right and works right. (Note that I did not change the imagePath back to /images/chit/)

So the only thing I did different was to change the script. (Apart from closing browsers and windows...)
 
Last edited:
But since it works now, I dont dare to change the script back to images/chit/ instead of the images/relayimages/chit that i edited and svn synced...
 

Bale

Minion
That's fine. You can make whatever changes you want on your end. It relieves me of the responsibility for user support. I was just informing you of which steps in your solution were probably the relevant ones.
 

rlbond86

Member
Hi, small (but pretty big image) problem... The icons for CHIT are missing, the buttons are still there, but the pictures arn't.

r12642
Actions taken: svn deleted and reinstalled CHIT then reopened browser, svn deleted and reinstalled CHIT then restarted mafia. Checked that all icons are in /image (They are. There is a chit folder in relayimages/chit that has some missiing icons but i doubt that the problem.) Checked that all images worked (They work).

Tinkering with the script: Changing the string imagePath from /images/chit/ to /images/relayimages/chit/ makes the icons come back, but outfit icon is still blank although it works.
Copied the folder from images/chit into relayimages/chit because there were more .png files there. :/ (Idk why I did that though.)

Thanks!


I am having this problem too. Image caching is off, using Chrome. My familiar images and the up-arrow in the effects pane show a broken link.

Downgrading to r12629 fixes the problem entirely.

EDIT: No it doesn't, this keeps happening to me now.

7CQ8ReN.png
 
Last edited:

Bale

Minion
I don't know why that keeps happening to you. (I've tested it with Opera 16 which is a Chrome clone.) It's possible that r12646 will fix the issue. Clear the image cache, both browser and KoLmafa/images directory (except for /images/relayimages) and restart both KoLmafia and browser.


I changed the string imagePath to relay/relayimages/chit/ and while I did restart everything, some icons like 'Select Mood' were still not there (But clicking the area where it was located still worked).

You'll be happy to know that I have moved my images back to that directory. Although I did it to ensure compatibility with changes Veracity plans to make for image caching. If you are still having problems with the images it is probably because you forgot to change chit.css to the new URL. I made those changes so I hope you'll be fine after updating.
 
Last edited:

hesuchia

Member
For some reason my browser's been doing that weird right-click familiar scrunching thing that Erich mentioned too. Probably for a few weeks now-- it used to work fine. Using firefox 14. Maybe it was one of those mafia changes that don't really make sense to me :p.
 

Bale

Minion
All I can say is that it is KoL's actual familiar picker, not something ChIT has added so I doubt it is the fault of this script.
 

ckb

Minion
Staff member
I was having an issue with my tracker brick not showing up. Line 3971 is a problem:

PHP:
if(length(result) < 177) { // 176 is the size of an empty table
		chitBricks["tracker"] = result;
		chitTools["tracker"] = "Tracker|tracker.png";
}

This should be:
PHP:
if(length(result) > 177) { // 176 is the size of an empty table

to display results when the length is GREATER than the size of an empty table

ckb
 

Bale

Minion
Oh heck! Oops. There was a change that raised the minimum size of the brick and I accidentally flipped the sign when I changed the integer.

It's now updated.
 
Last edited:
Hey there :) I use chit with some custom changes to icons and colours, to get something a bit more like kol's minimal look (screenshot - http://i.imgur.com/Esemu4z.png).

Whenever charpane.ash gets updated I manually edit it to point at my custom image folder, css file and chit-effects datafile. It would be really cool if those could be set with zlib variables instead so it would *just work* after updating. Is that something you'd be willing to consider?

Beyond that, it'd be great if the inline color changes made in charpane.ash could be shunted out to CSS instead (for things like progress bar severity, and the florist right-click menu) but I appreciate that's quite a lot more work.
 
Last edited:
Top