I read this and my heart sank... I should have written that down?Oh dear. I feel very, VERY sorry for you.
> count flick
flickering pixel (7)
I always use mafia, so I can hopefully dig that out (how old is this content again?) with some regex and patience.If you were running mafia at the time you could probably get that info out of the session log. If that still seems daunting, more help can be offered such as how to text search multiple files.
findstr "flickering" almighty_sapling_2013*.txt
public static final String[][] PIXELS =
{
{
"flickeringPixel1",
"Anger",
"Stupid Pipes",
"25 hot resistance",
},
{
"flickeringPixel2",
"Anger",
"You're Freaking Kidding Me",
"500 buffed Muscle/Mysticality/Moxie",
},
{
"flickeringPixel3",
"Fear",
"Snakes",
"300 buffed Moxie",
},
{
"flickeringPixel4",
"Fear",
"So... Many... Skulls...",
"25 spooky resistance",
},
{
"flickeringPixel5",
"Doubt",
"A Stupid Dummy",
"+300 bonus damage",
},
{
"flickeringPixel6",
"Doubt",
"Slings and Arrows",
"1000 HP",
},
{
"flickeringPixel7",
"Regret",
"This Is Your Life",
"1000 MP",
},
{
"flickeringPixel8",
"Regret",
"The Wall of Wailing",
"60 prismatic damage",
},
};
Just want to make sure you understand the internal difference between appending to an existing buffer and appending the result of string concatenation into an existing buffer.Also, expanded a few of the append(a+b)'s to append(a); append(b)'s, but not very many of them, I'm afraid. I generally find it easier to read concatenated strings, but that's mainly an issue of taste.
buffer page;
page.append( "a" );
page.append( "b" );
page.append( "c" );
string a = page.to_string();
buffer page;
page.append( "a" + "b" + "c" );
string a = page.to_string();
buffer page;
buffer tempb1;
tempb1.append( "a" );
tempb1.append( "b" );
string temps1 = tempb1.to_string();
buff tempb2;
tempb2.append( temps1 );
tempb2.append( "c" );
string temps2 = tempb2.to_string();
page.append( temps2 );
string a = page.to_string();
String a = "a" + "b" + "c";
String a;
{
StringBuilder temp = new StringBuilder();
temp.append( "a" );
temp.append( "b" );
temp.append( "c" );
a = temp.toString();
}
System.out.println( "a = " + a + " b = " + b );
print( "a = " + a + " b = " + b );
buffer page;
page.append( "a" );
page.append( "b" );
page.append( "c" );
string a = page.to_string();
buffer page;
page.append( "a" + "b" + "c" );
string a = page.to_string();
buffer page;
buffer tempb1;
tempb1.append( "a" );
tempb1.append( "b" );
tempb1.append( "c" );
string temps1 = tempb1.to_string();
page.append( temps2 );
string a = page.to_string();
Yeah, well, OK, this is a major problem for me.I tried the "clear: both" fix, but I realized when doing this that I'd originally written it that way, but removed it to conserve vertical space. As more and more info shows up to the left of the imagemap, this should be less of a problem. There's probably a way to make it positioned more consistently -- perhaps by somehow forcing the quote to wrap around -- but I haven't figured that out yet.