Skip to content

Commit

Permalink
don't summon/backup grops if battlefield is cleared
Browse files Browse the repository at this point in the history
  • Loading branch information
Alium58 committed Oct 14, 2023
1 parent ef3c419 commit a4bfbe7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions RELEASE/scripts/autoscend/auto_util.ash
Original file line number Diff line number Diff line change
Expand Up @@ -1992,7 +1992,7 @@ boolean LX_summonMonster()
}

// summon grops to start copy chain. Goal is to copy into delay zones and get war progress at same time. Bonus if we get smoke bombs
if(!summonedMonsterToday($monster[Green Ops Soldier]) && get_property("hippiesDefeated") > 399 && !in_koe())
if(!summonedMonsterToday($monster[Green Ops Soldier]) && get_property("hippiesDefeated") > 399 && get_property("hippiesDefeated") < 1000 && !in_koe())
{
if(summonMonster($monster[Green Ops Soldier])) return true;
}
Expand Down Expand Up @@ -2105,9 +2105,7 @@ boolean summonedMonsterToday(monster mon)
{
string copiedMonsters = get_property("auto_copies");
string searchString = "(" + my_daycount() + ":" + mon.to_string();
//"(" + my_daycount() + ":" + safeString(used) + ":" + my_turncount() + ")";
return contains_text(copiedMonsters, searchString);
//`({my_daycount()}:{mon.to_string()}`;
}

boolean handleCopiedMonster(item itm)
Expand Down
2 changes: 1 addition & 1 deletion RELEASE/scripts/autoscend/iotms/mr2021.ash
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ boolean auto_backupTarget()
return true;
break;
case $monster[Green Ops Soldier]:
if(get_property("hippiesDefeated") > 399 && !in_koe())
if(get_property("hippiesDefeated") > 399 && get_property("hippiesDefeated") < 1000 && !in_koe())
return true;
break;
default: break;
Expand Down

0 comments on commit a4bfbe7

Please sign in to comment.