Results 1 to 2 of 2
  1. #1
    citydrifter's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    653
    Reputation
    32
    Thanks
    2,436
    My Mood
    Yeehaw

    Post Realmeye Trade Reactivator

    Tired of going to RealmEye to constantly re-activate offers. You can use this script with Tampermonkey and leave the realmeye trade tab open so it automatically refreshes your offers every hour.

    Code:
    // ==UserScript==
    //  @Name         Realmeye Trade Reactivator
    //  @Namespace    https://tampermonkey.net/
    //  @Version      1
    //  @Description  try to take over the world!
    //  @Author       You
    //  @match        https://www.realmeye.com/edit-offers-by/*
    //  @Grant        none
    // ==/UserScript==
    
    
    const sleep = ms => new Promise(_ => setTimeout(_, ms));
    async function main() {
        $(".btn-success").click();
        while (true) {
            await sleep(1000);
            $(".trade-save").click();
            await sleep(10000);
        }
    }
    
    main().catch(console.error);
    
    setInterval(function() {
        location.reload();
    }, 600000);
    Last edited by citydrifter; 02-26-2020 at 09:55 PM.

  2. The Following User Says Thank You to citydrifter For This Useful Post:

    hntdfisher (03-20-2020)

  3. #2
    hntdfisher's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Location
    Hood 1016
    Posts
    17
    Reputation
    10
    Thanks
    1
    My Mood
    Innocent
    thats what i was looking for thanks

Similar Threads

  1. Trade
    By SadisticGrin in forum General Game Hacking
    Replies: 2
    Last Post: 03-17-2007, 02:22 AM
  2. Trading for a Starcraft account.
    By Mikoll in forum General
    Replies: 12
    Last Post: 02-23-2007, 01:12 AM
  3. Steam Account Trading
    By ~Viper~ in forum General
    Replies: 5
    Last Post: 01-15-2007, 08:43 PM
  4. trade with cheats
    By kobakoba in forum WarRock - International Hacks
    Replies: 2
    Last Post: 01-13-2007, 10:13 AM
  5. Trading for Warcraft 3 Serial
    By arunforce in forum General Gaming
    Replies: 6
    Last Post: 09-22-2006, 11:15 PM