Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Volcano drunk removal
- if (!get_property("hotAirportAlways").to_boolean() && !get_property("_hotAirportToday").to_boolean()) abort("You do not have access to the Discotheque.");
- if (my_inebriety() > 0 && !to_boolean(get_property("_infernoDiscoVisited"))) {
- cli_execute("outfit save backup");
- int velvet = 0;
- foreach it in $items[smooth velvet hat, smooth velvet shirt, smooth velvet pants] {
- if (it.item_amount() > 0) {
- equip(it);
- velvet = velvet +1;
- }
- }
- int slot_number = 1;
- slot accessory_slot;
- foreach it in $items[smooth velvet hanky, smooth velvet socks, smooth velvet pocket square] {
- if (it.item_amount() > 0) {
- if (slot_number == 1) accessory_slot = $slot[acc1];
- if (slot_number == 2) accessory_slot = $slot[acc2];
- if (slot_number == 3) accessory_slot = $slot[acc3];
- equip(accessory_slot, it);
- slot_number = slot_number +1;
- velvet = velvet +1;
- }
- }
- if (velvet < 4) abort("You probably need more smooth velvet gear.");
- string temp = visit_url("place.php?whichplace=airport_hot&action=airport4_zone1");
- temp = visit_url("choice.php?pwd=&whichchoice=1090&option=5");
- print("Successfully removed one drunkenness.", "green");
- cli_execute("outfit backup");
- } else if(to_boolean(get_property("_infernoDiscoVisited"))) {
- print("You already visited the Discotheque today.", "red");
- } else {
- abort("Not enough drunkenness for the flaming discotheque.");
- }
Advertisement
Add Comment
Please, Sign In to add comment