I'm having the maximizer suggest a terminal buff even if I have the buff, I think as of r17170.
KoL bug (of not triggering a charpane refresh) handled in 17175.
I'm having the maximizer suggest a terminal buff even if I have the buff, I think as of r17170.
Not sure if this should be here or in it's own thread, but the Source terminal files do not appear in the filtered zap list in the relay browser (daily version 17521)
Wiki lists them as a zap group, tested this myself:
You zap the Source terminal file: dram.ext with your hexagonal wand.
Source terminal file: compress.edu You acquire an item: Source terminal file: compress.edu [use]
Not sure if this should be here or in it's own thread,
Given that digitized wanderers have a set counter, would it be onerous if mafia prompted you if you're sure you want to adventure in the selected location when the timer's at 0, a la SRs?
I've just been setting timers, but whenever I forget and find a digitized monster in an undelayed zone, I get grumpy. Thanks!
if ( !can_interact() && get_property( "relayCounters" ).contains_text( "Digitize Monster" ) && !get_counters( "", 0, 950 ).contains_text( "Digitize Monster" ) )
{
cli_execute( "counters warn Digitize Monster" );
}
That is what I'm using, in a post-adventure script.Code:if ( !can_interact() && get_property( "relayCounters" ).contains_text( "Digitize Monster" ) && !get_counters( "", 0, 950 ).contains_text( "Digitize Monster" ) ) { cli_execute( "counters warn Digitize Monster" ); }
if( !to_boolean(get_property("kingLiberated")) && get_counters("Digitize Monster", 0, 4).contains_text("Digitize Monster") )
cli_execute( "counters warn Digitize Monster" );
void warn_digitize() {
if( !to_boolean(get_property("kingLiberated")) && get_counters("Digitize Monster", 0, 4).contains_text("Digitize Monster") && !get_counters("", 0, 4).contains_text("Digitize Monster") )
cli_execute( "counters warn Digitize Monster" );
}
That is what I'm using, in a post-adventure script.Code:if ( !can_interact() && get_property( "relayCounters" ).contains_text( "Digitize Monster" ) && !get_counters( "", 0, 950 ).contains_text( "Digitize Monster" ) ) { cli_execute( "counters warn Digitize Monster" ); }
> help counters
counters [ clear | add number [title img] ] - show, clear, or add to current turn counters.
Using the Orcish Frat House blueprints will start mafia's digitize counter. It does not, however, start the actual KoL digitize counter.