void DOD()
{
if (my_meat() < 5000)
{
print("You need atleast 5000 meat to finish this quest.");
}
set_property("choiceAdventure25", 2);
add_item_condition (0, $item[dead mimic]);
adventure(my_adventures(), $location[Dungeons of Doom]);
if ($item[dead mimic].available_amount() == 1)
{
print("Congrats, You've got a dead mimic! Now use it, and Zap stuff!");
exit;}
if ($item[dead mimic].available_amount() == 0)
{
DOD();
}
}
void EGTS()
{
string dungeon = visit_url("da.php");
if (dungeon.contains_text("The Dungeons of Doom"))
{
DOD();
}
int count;
set_property("choiceAdventure3", 3);
if ($item[plus sign].available_amount() == 0)
{
set_property("choiceAdventure451", 3);
add_item_condition (1, $item[plus sign]);
}
if ($item[plus sign].available_amount() == 1)
{
cli_execute("use plus sign");
set_property("choiceAdventure451", 5);
}
if(can_interact() && my_meat() > 100000 && $item[ring of teleportation].available_amount() == 0)
{
cli_execute("buy ring of teleportation");
item prev = equipped_item($slot[acc1]);
equip($slot[acc1], $item[ring of teleportation]);
}
if ($item[potion of teleportitis].available_amount() == 0 && $item[ring of teleportation].available_amount() == 0 && have_effect($effect[teleportitis]) == 0)
{
cli_execute("buy potion of teleportitis");
cli_execute("use potion of teleportitis");
}
if ($item[potion of teleportitis].available_amount() >= 1 && $item[ring of teleportation].available_amount() == 0 && have_effect($effect[teleportitis]) == 0)
{
cli_execute("use potion of teleportitis");
}
adventure(my_adventures(), $location[The Enormous Greater-Than Sign]);
EGTS();
}
void main()
{
if (my_meat() <= 5999)
{
print("You need 6000 meat or more to complete this part of the quest. Please gain some meat and try again");
exit;
}
string dungeon = visit_url("da.php");
if (dungeon.contains_text("The Enormous Greater-Than Sign"))
{
EGTS();
}
if (dungeon.contains_text("The Dungeons of Doom"))
{
DOD();
}
}