Advertisement
kolpastebin

Equip hospital gear.ash

Oct 2nd, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. boolean want_to_banish_orderlies_with_pantsgiving = false; //this will delay wearing the surgical dungarees until the orderlies are banished
  2.  
  3. void main()
  4. {
  5. foreach it in $items[surgical apron,bloodied surgical dungarees,surgical mask,head mirror,half-size scalpel]
  6. {
  7. if (want_to_banish_orderlies_with_pantsgiving && !$monster[pygmy orderlies].is_banished() && $item[pantsgiving].equipped_amount() > 0 && it == $item[bloodied surgical dungarees]) //not until then
  8. continue;
  9. if (it.available_amount() == 0)
  10. continue;
  11. if (!it.can_equip())
  12. continue;
  13. if (it.equipped_amount() == 0)
  14. equip(it);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement