Results 1 to 8 of 8

Thread: Easy Restocking Guide

  1. #1
    Jolz's Avatar
    Joined
    Oct 2012
    Posts
    807
    Userbars
    6
    Thanks
    401
    Thanked
    1,490/730
    DL/UL
    26/0
    Mentioned
    487 times
    Time Online
    26d 4h 56m
    Avg. Time Online
    9m

    Easy Restocking Guide

    Easy Restocking Guide


    Use Firefox and download the add on vobcabulary hightlighter, (you need an account to see links)

    Restart firefox to complete installation.


    To make a list - highlight items you want to add, right click, vocab highlighter, add.

    To add a list - without anything highlighted, right click, vocab highlighter, database, import. select list. export = save list

    Go to Subeta shop you have added. eg food, all food items which you have added will be highlighted so you know what to buy for profit.

    Currently working on lists for all shops.
    They will be added once complete.


    For the time being this is a list for food which sells for above 20k, and seedlings which sells for over 50k.
    (also has a few books added which sell for 100k plus but incomplete as was a test list)

    I can also make lists for this if anyone wants they can request.


    Save this as an XML file and import


    I see you have an opinion?



  2. The Following 2 Users Say Thank You to Jolz For This Useful Post:

    Jay (07-29-2013),Soul (08-02-2013)

  3. #2
    Jay's Avatar
    Joined
    Aug 2012
    Posts
    367
    Userbars
    6
    Thanks
    430
    Thanked
    242/159
    DL/UL
    13/0
    Mentioned
    205 times
    Time Online
    10d 9h 14m
    Avg. Time Online
    3m
    -clap- -clap-

    ~credit to katzes
    MY FUCKING RANDOMS YO


  4. #3
    zyocuh's Avatar
    Joined
    Jan 2012
    Posts
    105
    Userbars
    1
    Thanks
    5
    Thanked
    17/13
    DL/UL
    45/0
    Mentioned
    17 times
    Time Online
    2d 14h 57m
    Avg. Time Online
    N/A
    @(you need an account to see links) would there be anyway you could write a script that highlighted items based on rarity that would probably be easier than having a huge list of tons of items
    Here is a script that used to work but no longer works if it helps

    // ==UserScript==
    // @(you need an account to see links) Subeta Shop Item Rarity Tooltips
    // @(you need an account to see links)space Shaun Dreclin
    // @include *subeta.net/shop.php*
    // ==/UserScript==

    //A big thank-you to pagewil on stackoverflow.com for this asynchronous for loop!
    var asyncLoop = function(o){
    var i=-1, length = o.length;
    var loop = function(){
    i++;
    if(i==length){o.callback(); return;}
    o.functionToLoop(loop, i);
    }; loop();
    };

    var itemName; var itemNameTooltip; var rarityName; var rarityColor;
    asyncLoop({ length: document.getElementsByTagName('img').length, functionToLoop: function(loop, i){ setTimeout(function(){
    try {
    if(document.getElementsByTagName('img')[i].style.border == "1px solid black" || document.getElementsByTagName('img')[i].style.border == "1px solid white") {
    itemName = document.getElementsByTagName('body')[0].innerHTML.split(document.getElementsByTagName('im g')[i].src);
    itemName = itemName[1].split("");
    itemName = itemName[0].split("\n");
    itemName = itemName[2];
    while(itemName.indexOf(String.fromCharCode(9)) != -1) { itemName = itemName.replace(String.fromCharCode(9), ""); }

    document.getElementsByTagName('img')[i].style.opacity = "0.25";
    document.getElementsByTagName('img')[i].style.border = "1px solid white";

    GM_xmlhttpRequest({
    method: "GET",
    url: "http://subeta.net/hover_item.php?name=" + escape(itemName),
    onload: function(response) {
    itemNameTooltip = unescape(this.url.split("=")[1]);

    rarityName = response.responseText.split("'>");
    rarityName = rarityName[2].split("");
    rarityName = rarityName[0];

    rarityColor = rarityName;
    rarityColor = rarityColor.replace("Really Common", "999999");
    rarityColor = rarityColor.replace("Mundane", "666666");
    rarityColor = rarityColor.replace("Common", "333333");
    rarityColor = rarityColor.replace("Normal", "000000");
    rarityColor = rarityColor.replace("Super Rare", "dd00ff");
    rarityColor = rarityColor.replace("Rare", "0099ff");
    rarityColor = rarityColor.replace("Retired", "6da877");

    for(j in document.getElementsByTagName('img')) {
    try {
    if(document.getElementsByTagName('img')[j].style.border == "1px solid white") {
    itemName = document.getElementsByTagName('body')[0].innerHTML.split(document.getElementsByTagName('im g')[j].src);
    itemName = itemName[1].split("");
    itemName = itemName[0].split("\n");
    itemName = itemName[2];
    while(itemName.indexOf(String.fromCharCode(9)) != -1) { itemName = itemName.replace(String.fromCharCode(9), ""); }

    if(itemName == itemNameTooltip) {
    document.getElementsByTagName('img')[j].style.opacity = "1.0";
    document.getElementsByTagName('img')[j].style.border = "2px solid #" + rarityColor;
    if(rarityName == "Rare" || rarityName == "Super Rare" || rarityName == "Retired") {
    document.getElementsByTagName('img')[j].style.boxShadow = "0px 0px 50px #" + rarityColor;
    }
    document.getElementsByTagName('img')[j].title = "Rarity: " + rarityName;
    }
    }
    } catch(e) { }
    }
    }
    });
    }
    } catch(e) { }
    loop(); },1); }, callback: function(){ /* Done! */}});
    Last edited by zyocuh; 09-16-2013 at 11:37 PM.

  5. #4
    Jolz's Avatar
    Joined
    Oct 2012
    Posts
    807
    Userbars
    6
    Thanks
    401
    Thanked
    1,490/730
    DL/UL
    26/0
    Mentioned
    487 times
    Time Online
    26d 4h 56m
    Avg. Time Online
    9m
    Quote Originally Posted by zyocuh View Post
    @(you need an account to see links) would there be anyway you could write a script that highlighted items based on rarity that would probably be easier than having a huge list of tons of items
    Here is a script that used to work but no longer works if it helps
    I'm GFX team dude lol. Try asking the programing team


    I see you have an opinion?



  6. #5

    Joined
    Jul 2013
    Posts
    249
    Userbars
    2
    Thanks
    249
    Thanked
    245/160
    DL/UL
    15/0
    Mentioned
    117 times
    Time Online
    11d 15h 7m
    Avg. Time Online
    4m
    @(you need an account to see links) Something for Chrome would be baws!

  7. #6

    Joined
    Sep 2013
    Posts
    8
    Userbars
    0
    Thanks
    1
    Thanked
    0/0
    Mentioned
    1 time
    Time Online
    54m
    Avg. Time Online
    N/A
    I;ll have to give this a try when I am un-sleepy enough to be able to pay attention properly

  8. #7
    zyocuh's Avatar
    Joined
    Jan 2012
    Posts
    105
    Userbars
    1
    Thanks
    5
    Thanked
    17/13
    DL/UL
    45/0
    Mentioned
    17 times
    Time Online
    2d 14h 57m
    Avg. Time Online
    N/A
    Trying to get a rarity script commissioned and wokring

  9. #8

    Joined
    Jul 2013
    Posts
    249
    Userbars
    2
    Thanks
    249
    Thanked
    245/160
    DL/UL
    15/0
    Mentioned
    117 times
    Time Online
    11d 15h 7m
    Avg. Time Online
    4m
    @(you need an account to see links)
    I'd love to have that as well!:3

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •