NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide Travel Agency // @namespace Hide Travel Agency // @version 0.1.1 // @description // @author AquaRegia // @match http://www.torn.com/travelagency.php* // @match https://www.torn.com/travelagency.php* // ==/UserScript== var myID = $("#player-stats [href*='profiles.php?XID']").attr("href"); $(".travel-agency").eq(0).hide(); $.ajax({type: "POST", url: "http://www.torn.com/factions.php?rfcv=" + getRFC(), data: {step: "crimes"}}).success(function(data) { var plannedCrimes = $(data).find(".crimes-list").eq(0).find(".item-wrap"); var readyCrimes = plannedCrimes.filter(function(i, e) { return $(e).find(".item .status .t-green").size() > 0; }); var myReadyCrimes = readyCrimes.filter(function(i, e) { return $(e).find("a[href$='" + myID + "']").size() > 0; }); if(myReadyCrimes.size() == 0) { $(".travel-agency").eq(0).show(); } });