I think this may make abers harder to spot for TnT. Here is an example of how it works: Code (Text): The number 8202 has been rounded to 8222 which is 100% of the target. The number 4464 has been rounded to 4444 which is 100% of the target. The number 3923 has been rounded to 3922 which is 100% of the target. The number 3369 has been rounded to 3333 which is 99% of the target. The number 7567 has been rounded to 7555 which is 100% of the target. The number 10507 has been rounded to 11111 which is 106% of the target. The number 548 has been rounded to 555 which is 101% of the target. The number 3692 has been rounded to 3699 which is 100% of the target. The number 8939 has been rounded to 8888 which is 99% of the target. The number 8576 has been rounded to 8555 which is 100% of the target. And you can test it on your own numbers here: http://img413.imageshack.us/my.php?imag ... er28ew.swf The commented code is here: Code (Text): function roundNumber(nTemp:Number):Number { //The code is in function form sUnRounded = String(nTemp); //Convert the number to a string for (i=0; i<sUnRounded.length; i++) { //Run a for loop for the length of the number nPrimary = Number(sUnRounded.substr(i, 1)); nSecondary = Number(sUnRounded.substr(i+1, 1)); //Assign the first and second digit of the number (later digits are used as the for loop progresses) if ((Math.abs(nPrimary-nSecondary)<=i+1) || (i>sUnRounded.length-3)) { //If the first and second digits are similar or if it is the last digit sTemp = sUnRounded.substr(0, i+1); while (sTemp.length<sUnRounded.length) { sTemp = sTemp+nPrimary; } //Remove all following digits and replace them with the same number return sTemp; //End the loop } } }
It would have to be translated over, but with the comments it should be easy. I don't know how to create an Aber, I just think that any little ideas to make abing safer should be added.
Anything in the name of not getting caught! If I could program it, I would set it up to record which seconds the restocks happen then depending on their distribution, change the refresh rate from 5-15 seconds. As well as that, after a restock, take a random break from 1-3 minutes during which it checks the inventory and wizzards a random last bought item. After two hours, it automatically shuts down. Lets see them find that! _________ As a matter of fact, while I AB, I change the refresh rate from 5-7 every once in a while and stop it to check my inventory and wizzard a few prices every 20 minutes or so.
This is AWESOME! Thanks alot! Dont ask me why, but I was looking for something like this for a while now.
I started to do something like this yesterday, but got frustrated, and bored with it. I see where I was going wrong too. Thanks a lot! +REP