Feature - Rejected Feature reqest - kbay stuffies and junk

Dreamthief

New member
Is it possible to implement a feature to automatically clean up your stuffie collection by selling them into kbay? It would be handy to just have it clear out my stuffies, jack in the boxes, purse rats, bb guns, etc automatically.

Dreamthief
 

heeheehee

Developer
Staff member
An ASH script could probably do this for you, rather easily.
For instance, the following bit will list all of your jack-in-the-boxes for 15k meat, with a 100k buyout:
PHP:
while(item_amount($item[jack-in-the-box])>0) {
    cli_execute("kmail jack-in-the-box to kbay || list 7d 15000 100000\nJack-in-the-box");
}
 

Dreamthief

New member
cli_execute("kmail jack-in-the-box to kbay || list 7d 15000 100000\nJack-in-the-box");

Yes, this will send the jack in the box to kbay, however Kbay will send it right back since it doesnt have the 100 meat listing fee...

cli_execute(csend jack-in-the-box, 100 meat to kbay || list 7d 15000 100000\nJack-in-the-box");
this sends the meat and the item, however it doesnt understand the "\n" newline command. Therefore, kbay still rejects the auction for not having a title.

Any tips? I gotta be close on this.
 
Top