Bale
Minion
Are you sure it's the script's output being printed again, and not just everything after it disappearing?
After I scroll up I am sure.
Are you sure it's the script's output being printed again, and not just everything after it disappearing?
but then I would expect it to remove one line at the time, and everything above that line to remain static?
I'll admit, I was sure this wasn't the Java bug, but I'm wrong, it is. You need to make your CLI very large to see it. Even on my screen it doesn't exactly match the Java bug, but I see multiple copies of the information, much like I do with other tables. The feature showing your current status should probably be removed for now.
Oh, got you. No, I'm using the buggy Java, but I did see the other trouble before I updated. So it hits the double table bug and something else is wrong. Double trouble. I see know.There is that java bug also if you are using current java. Or if you are using java 7u55 like me, you will see only one the more mysterious bug and the table will look perfect.
It thinks TΤ◊lisman of Baiø‡ is 4 Rs, but I just spaded it (unequipped everything, 0 Rs, put it on, 1 R). I don't know how you want to go about fixing that (or if anything else is borked like that)
The problem is, it's PvP. I did some quick spading, decided what rules KoL used and patched my code. Is it perfect? I doubt it, but it's pretty close. Even though I'm not really trying this season, it's hard to put in the effort to share. The only time I've shared PvP code was when I didn't like a mini. I like this one. I just copied the code from nameLength() into lettersinname(). Arrr.There are lots of HTML entities. No one has posted anywhere that I know of which ones KoL counts as the HTML entity and which ones are counted as the individual characters. That is the first step to anything being fixed.
Drat. I just did something similar this afternoon. I used a negative weight for 'L' also. I just used existing booze code. I also added the combat stuff, but I wanted to test it tomorrow as well. Maybe I'll post when I get home.Consider this an unofficial patch for this season. It weights cold resistance at 6/5 letters, and booze drops at the same weight as meat & item drops. It also uses the letter of the moment code but with a negative weight to "L"s. Happy clubbing!
if (available_amount(i)-equipped_amount(i) > 0){
if(!(get_inventory() contains i)){
boolean raidCloset= get_property("autoSatisfyWithCloset").to_boolean() && closet_amount(i)>=1;
if(raidCloset){
take_closet( 1, i );
}
}
return equip(s, i);
}
else
return false;