Hallo Leute ich habe hier ein kleines JavaScript geschrieben, welches euch im Transfer Markt von Fifa 18 auf der Web Desktop Anwendung helfen kann.
Der niedrigste Sofortkauf Preis wird Grün markiert.
Und das niedrigste aktuelle Gebot wird Rot markiert.
Am besten ihr verwendet Google Chrome.
Wenn ihr die Webapp Offen habt drück ihr F12 und geht auf Console.
Dann gibt ihr folgendes JavaScript ein.
Dies wird nur auf der Webapp aufgeführt und wiederholt sich 10 mal pro Sekunde.
Gebannt werden kann man dafür nicht, da JavaScript nur auf dem Eigenen Client ausgeführt wird.
Und EA davon keinen Wind bekommt.
JavaScript
var lastOne = null;
var lastTwo = null;
setInterval(function() {
var lowestVal = 999999999;
var lowestValGebot = 999999999;
var finalDiv = null;
var winner = null;
var winnerLI = null;
var winnerGebot = null;
var winnerGebotLI = null;
var aktuellesGebotDiv = null;
$( "li" ).each(function( index ) {
var liTemp = $(this);
liTemp.removeClass("selected");
liTemp.css({"background-color": "#fbfbfb"});
$(this).find('div').each(function(index) {
if($(this).attr("class") == "auctionValue"){
var actionDiv = $(this);
$(this).find('span').each(function(index) {
if($(this).attr("class") == "label"){
if($(this).text() == "Sofortk."){
finalDiv = actionDiv;
} else if ($(this).text() == "Gebot"){
aktuellesGebotDiv = actionDiv;
}
}
});
}
});
if(finalDiv != null){
finalDiv.find('span').each(function(index) {
if($(this).attr("class") == "coins value"){
var num = parseFloat($(this).text().replace(' ', '').replace('.', '').replace(',', '.'));
if(lowestVal > num){
lowestVal = num;
winner = finalDiv;
winnerLI = liTemp;
}
}
});
}
if(aktuellesGebotDiv != null){
aktuellesGebotDiv.find('span').each(function(index) {
if($(this).attr("class") == "coins value"){
var num = parseFloat($(this).text().replace(' ', '').replace('.', '').replace(',', '.'));
if(lowestValGebot > num){
lowestValGebot = num;
winnerGebot = aktuellesGebotDiv;
winnerGebotLI = liTemp;
}
}
});
}
});
winnerLI.addClass("listFUTItem has-auction-data selected");
winnerGebotLI.removeClass("selected");
winnerGebotLI.css({"background-color":"red"});
}, 100);
Alles anzeigen