Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void main()
- {
- if ((get_property("stenchAirportAlways").to_boolean() || get_property("_stenchAirportToday").to_boolean()) && !get_property("_dinseyGarbageDisposed").to_boolean())
- {
- if ($item[bag of park garbage].item_amount() == 0)
- {
- if ($item[bag of park garbage].available_amount() > 0)
- retrieve_item(1, $item[bag of park garbage]);
- else if (can_interact() && $item[bag of park garbage].mall_price() < 5000)
- cli_execute("acquire 1 bag of park garbage");
- }
- if ($item[bag of park garbage].item_amount() > 0)
- {
- visit_url("place.php?whichplace=airport_stench&action=airport3_tunnels");
- visit_url("choice.php?whichchoice=1067&option=6");
- visit_url("main.php");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement