Powered by Jitbit .Net Forum free trial version.

HomeFallen London » The Bazaar

This is the place to discuss playing the game. Find tips, debate the best places to find certain items and share advice.

The echo worth of all items one owns Messages in this topic - RSS

Locrian
Locrian
Posts: 31

3/21/2014
14,291 Echoes. Apparently I could get my second overgoat right now if I sold my first one. This sounds like an excellent idea.

--
Locrian, the Genial Promethean
Dorian, the Implacable Hedonist
Aeolian, the Gentle Cypher
Lydian, the Boisterous Brawler
+4 link
Miss Perative
Miss Perative
Posts: 46

3/21/2014

  • Yikes, can that be?? I guess I should stop putting off a second overgoat.

    Thank you for the script! I've always been curious.

    --
    I've removed my profile link for the time being as I don't play often enough these days to engage in social actions.
  • 0 link
    ShadeJackrabbit
    ShadeJackrabbit
    Posts: 16

    3/21/2014
    3562.02

    Well, that's actually pretty close to what I estimated.

    --
    Professional academic, Ambitious avenger, orphan-raiser, drink-downer.
    0 link
    John Vazquez
    John Vazquez
    Posts: 108

    3/21/2014
    5221 echoes and 72 pence. I guess is not that bad, considering I have spent the last weeks gathering resources for a zubmarine

    --
    http://fallenlondon.storynexus.com/Profile/John~Vazquez
    0 link
    A B Nile
    A B Nile
    Posts: 414

    3/21/2014
    MittenO wrote:
    I managed to scrounge up Internet Explorer and yes, it seems to work. Press F12, choose the tab Console, copy paste the code next to the >> and press Ctl-Enter (Or push the button Run script). All this while in the bazaar page, of course.


    Thank you! It worked. Although I have just shy of 7,000 Echoes, which is a lot less than I had hoped!



  • --
    My profile: A B Nile

    My alt: Zanzibar Buck-Buck McFate
    (seeking Acquaintances and accepting all social actions)

    Item conversion table - finally complete with all rare successes!

    Bloody, bold and resolute
  • 0 link
    Playersideblog
    Playersideblog
    Posts: 397

    3/21/2014
    I haven't dabbled in JS for ages; would there be a way to cut off items above a certain cost threshold, in case (for instance) I wanted to exclude things like my Dreadful Surmise?

    --
    My profile

    I am now a Correspondent, and no longer able to accept invitations as an Author. (Or so I believe.)
    0 link
    Raymond Price
    Raymond Price
    Posts: 48

    3/21/2014
    I have about E5800, plus another E1300 in the bank. I need to get grinding.
    ETA: Of course, as others have noted, a lot of those items are things I'd best not sell because they're more useful to me than the echoes they're worth. Stat/BDR equipment, trade goods, rostygold for buying connections and whispered secrets for buying expedition supplies, or Favours to turn into MW.
    Playersideblog wrote:
    I haven't dabbled in JS for ages; would there be a way to cut off items above a certain cost threshold, in case (for instance) I wanted to exclude things like my Dreadful Surmise?
    This worked for me. Sorry for the crap formatting, but I added a ternary expression in the price scraper that only returns prices less than 300.
    ETA: Because I could, I wrote a new and improved version. Regrettably, I couldn't do it all on one line because jQuery doesn't have a native reduce function. I did include the exclude-ridiculously-expensive-items check, though.
    $.fn.reduce = [].reduce;
    $("li.shop-item").reduce(function(accumulator, item) {
    var price = parseFloat( $(item).find("span.price.currency-echo").text()|| 0);
    price = (price > 300) ? 0: price;
    var quantity = parseInt($(item).find("div.item-quantity").text() || 0);
    var title = $(item).find(".item-details h6").text();
    var worth = price * quantity;

    //console.log(title + "=>" + worth);
    return accumulator + worth;
    }, 0);

    edited by Raymond R Price on 3/22/2014

    --
    http://fallenlondon.storynexus.com/Profile/Raymond~R~Price
    Up for any and all social actions, including
    * Menace Reductions * Newspaper Interviews
    * Tournament of Lilies * Affluent Photographer
    ** I also have Parabolan Kittens **
    +2 link
    æsc
    æsc
    Posts: 73

    3/22/2014
    11,375. It was more before I bought that Ray-Drenched cinder about a few hundred expedition supplies, mind. (I was really curious what the Fate option for the cinder was, but am not in a position at the moment where spending £6 on virtual things instead of actual edible things is a viable life choice. Virtual money is easier to come by.)

    --
    Dr Cecily Morgan
    an inescapable, sagacious, irresistible and breathtaking lady.
    Devoted Scholar of the Correspondance, Author, and Excellent Dancer.

    No photographers please. Most pleasant socials, invitations and calling cards welcome. Happy to accept Guest of Honour invites to salons looking for Authors.
    0 link
    Raymond Price
    Raymond Price
    Posts: 48

    3/22/2014
    Improved it again. Now it also tallies the echoes you have in the bank.
    $.fn.reduce = [].reduce;
    $("li.shop-item").reduce(function(accumulator, item) {
    var price = parseFloat( $(item).find("span.price.currency-echo").text()|| 0);
    price = (price > 300) ? 0: price;
    var quantity = parseInt($(item).find("div.item-quantity").text() || 0);
    var title = $(item).find(".item-details h6").text();
    var worth = price * quantity;

    //console.log(title + "=>" + worth);
    return accumulator + worth;
    }, 0)
    + parseFloat($(".you_lhs span.currency-echo").text());

    --
    http://fallenlondon.storynexus.com/Profile/Raymond~R~Price
    Up for any and all social actions, including
    * Menace Reductions * Newspaper Interviews
    * Tournament of Lilies * Affluent Photographer
    ** I also have Parabolan Kittens **
    +2 link
    RandomWalker
    RandomWalker
    Posts: 948

    3/22/2014
    Cool! Thanks. I now know that only a third of my wealth comes from items worth over 300 echoes. I actually thought it was going to be higher than that. Maybe that overgoat isn't that far off after all...
    0 link
    Fhoenix
    Fhoenix
    Posts: 602

    3/22/2014
    Oh, turns out I am slightly rich.
    21663 echoes.
    Thank you very much for the script!

    --
    My Character
    0 link
    Mr. Mercutio
    Mr. Mercutio
    Posts: 133

    3/23/2014
    Just shy of 8000 Echoes for me, but I also recently came into an Ubergoat, which has no sell-value, so it was about 10,000 Echoes more a few weeks ago. Thank you for the code!

    --
    Mr. Mercutio
    Immortal. Rich. Only moderately insane.

    Want a taste of immortality? Reach out to me in-game to ask for a sip of Hesperidean Cider. Please follow Ocelot's guide to asking here.

    New to our dark city? Send me a message in-game and I will respond when I can with a welcome gift!

    I welcome most social actions, so feel free to send them to me. Just please don't ask me to Loiter Suspiciously or to help with the Affluent Photographer. I have disavowed all knowledge of her.

    Galatea LaChance
    She has gone North, and none shall know what she found there.
    0 link
    Theminimanx
    Theminimanx
    Posts: 27

    3/23/2014
    About 16,000 echoes for me. More than I expected, but a lot of that is stuff I don't want to sell, I stuff I want to keep in stock in case I need a lot of it for a new piece of content. Still, with my 7500 echoes in the bank, I hope I can buy an overgoat when I reach dangerous 200.

    --
    My previous main, who has come to a terrible end: https://www.fallenlondon.com/Profile/Theminimanx
    0 link
    babelfishwars
    babelfishwars
    Administrator
    Posts: 1152

    3/24/2014
    Ooh - 11091 if only the sub 300 ones are counted. In.ter.es.ting.

    --
    Mars, God of Fish; Leaning Tower of Fish
    0 link
    Playersideblog
    Playersideblog
    Posts: 397

    3/24/2014
    Interesting. Even when excluding the 300+ Echo items (thanks for that!) I still have 8871.32, hmm. So a bit more of grinding, and it might just be within my grasp.

    --
    My profile

    I am now a Correspondent, and no longer able to accept invitations as an Author. (Or so I believe.)
    0 link
    Cookoo
    Cookoo
    Posts: 59

    3/24/2014
    I apparently own 9168.44 echo's worth of items. Not too bad, though of course I am unwilling to sell most of the more valuable stuff...

    --
    http://fallenlondon.storynexus.com/Profile/cookoo

    A hunter, of sorts.
    0 link
    Loon
    Loon
    Posts: 379

    3/26/2014
    So, my main has 7925.60 worth of stuff, including cash, items over 300 and items that sell for other items.
    My alt gains the prize for poorest character posted in this thread, with 306.06 echos (again including everything.)

    --
    My main character Krawald can be found at http://fallenlondon.storynexus.com/Profile/Krawald and welcomes all social actions bar photographers.

    My alt Loogan Cuthoat can be found at http://fallenlondon.storynexus.com/Profile/Loogan~Cuthoat and welcomes all social actions bar cats and photographers.

    My alt Ally Mooney can be found at http://fallenlondon.storynexus.com/Profile/Ally~Mooney and welcomes all social actions including patronage, though they are a bit confused by cats in boxes.
    0 link
    Playersideblog
    Playersideblog
    Posts: 397

    3/26/2014
    I also just remembered that if I desperately wanted an Overgoat, I could start cashing in my connections. Hmmmmm.

    --
    My profile

    I am now a Correspondent, and no longer able to accept invitations as an Author. (Or so I believe.)
    0 link
    Sackville
    Sackville
    Posts: 295

    3/26/2014
    I've added a quick hack to Raymond's work that includes a list of items you don't want to sell, regardless of price. I've already included all the high-end bazaar gear and a few other things that are unique or difficult to acquire that I figured would be popular to exclude, but you can throw anything else you're attached to into the array. I've surely forgotten some things, or you might want to remove something you're grinding to turn into a collectible or PoSI item. When I ran it, for example, I excluded enigmas, cellars, and airag since they're earmarked for an Impossible Theorem and M_____'s B___d, which left me with just over 8k in saleable items.

    $.fn.reduce = [].reduce;

    //Array of items you don't want to sell
    var nosale = ["Semiotic Monocle", "Gloam-Foam", "Snuffer's Face", "Sneak-Thief's Mask", "Devilish Fedora", "Fecund Amber Tiara", "Smock of Four Thousand Three Hundred and Eight Pockets", "Moderately Co-operative Clothes Colony", "Academic Gown", "Ratskin Suit", "Far Khanate Lacquered Armour", "Exquisite Ivory Gown", "Sumptuous Dandy's Outfit", "Insatiable Glove", "Lenguals", "Spiderchitin Gauntlets", "Twelve-carat Diamond Ring", "Ratwork Watch", "Poison-tipped Umbrella", "Infernal Sharpshooter's Rifle", "Irresistible Drum", "Forgotten Spidersilk Slippers", "Kingscale Boots", "Vakeskin Boots", "Masterwork Dancing Slippers", "Overgoat", "Haunted-looking Dog", "Salt Weasel", "Bifurcated Owl", "Rattus Faber Bandit-Chief", "Rubbery Associate", "Rubbery Conspirator", "Silent Soul"];

    $("li.shop-item").reduce(function(accumulator, item) {

    var title = $(item).find(".item-details h6").text();
    var price = parseFloat( $(item).find("span.price.currency-echo").text()|| 0);

    price = (price > 300) ? 0: price;
    price = (nosale.indexOf(title.trim()) == -1) ? price: 0;

    var quantity = parseInt($(item).find("div.item-quantity").text() || 0);
    var worth = price * quantity;

    //console.log(title + "=>" + worth);
    return accumulator + worth;
    }, 0)
    + parseFloat($(".you_lhs span.currency-echo").text());
    +1 link
    Raymond Price
    Raymond Price
    Posts: 48

    3/26/2014
    Playersideblog wrote:
    I also just remembered that if I desperately wanted an Overgoat, I could start cashing in my connections. Hmmmmm.
    Indeed. By my estimation, I have on the order of E250 in connections if I cashed them in. Things like this make me wish this game had a scrapable API, so I could get the echo value of both connections and inventories at the same time.
    ETA: Of course, considering the expense in time and bandwidth to create and make available such an API, I completely understand why Failbetter hasn't done so.
    Sackville wrote:
    I've added a quick hack to Raymond's work that includes a list of items you don't want to sell, regardless of price. I've already included all the high-end bazaar gear and a few other things that are unique or difficult to acquire that I figured would be popular to exclude, but you can throw anything else you're attached to into the array.

    Much appreciated. After excluding items I'm not willing to sell, I have a mere E5975 towards an overgoat. upset

  • edited by Raymond R Price on 3/26/2014

    --
    http://fallenlondon.storynexus.com/Profile/Raymond~R~Price
    Up for any and all social actions, including
    * Menace Reductions * Newspaper Interviews
    * Tournament of Lilies * Affluent Photographer
    ** I also have Parabolan Kittens **
    0 link




    Powered by Jitbit Forum 8.0.2.0 © 2006-2013 Jitbit Software