Search results

  1. G

    Request with a reward!

    string tosell =""; int queue = 0; int total = 0; int price; for i from $items[] { item it = to_item(i); if (is_tradeable(it) && stash_amount(it) > 100) { amt = stash_amount(it)-50; if (take_stash(amt,it)) { if (length(tosell) != 0) tosell.append(", ")...
  2. G

    Request with a reward!

    int amt; buffer tosell; for i from 1 to 4000 { item it = to_item(i); if (is_tradeable(it) && stash_amount(it) > 50) { amt = stash_amount(it)-50; if (take_stash(amt,it)) { if (length(tosell) != 0) tosell.append(", "); tosell.append(amt+" "+to_string(it))...
Back
Top