Advertisement
kolpastebin

Turn in garbage.ash

Aug 25th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. void main()
  2. {
  3. if ((get_property("stenchAirportAlways").to_boolean() || get_property("_stenchAirportToday").to_boolean()) && !get_property("_dinseyGarbageDisposed").to_boolean())
  4. {
  5. if ($item[bag of park garbage].item_amount() == 0)
  6. {
  7. if ($item[bag of park garbage].available_amount() > 0)
  8. retrieve_item(1, $item[bag of park garbage]);
  9. else if (can_interact() && $item[bag of park garbage].mall_price() < 5000)
  10. cli_execute("acquire 1 bag of park garbage");
  11. }
  12. if ($item[bag of park garbage].item_amount() > 0)
  13. {
  14. visit_url("place.php?whichplace=airport_stench&action=airport3_tunnels");
  15. visit_url("choice.php?whichchoice=1067&option=6");
  16. visit_url("main.php");
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement