Page 2 of 2 FirstFirst
1
2
  1. #21
    The Lightbringer Huntaer's Avatar
    10+ Year Old Account
    Join Date
    Jul 2009
    Location
    Sanctuary
    Posts
    3,620
    Quote Originally Posted by chaud View Post
    Clear your cookies for the site.
    Little feedback, would be nice to be able to switch to green red or blue. The other thing is, can we keep this for at least BfA?
    ___________( •̪●) --(FOR THE ALLIANCE!)
    ░░░░░░███████ ]▄▄▄▄▄▄▄▄▃
    ▂▄▅█████████▅▄▃▂
    I███████████████████].
    ◥⊙▲⊙▲⊙▲⊙▲⊙▲⊙▲⊙◤...

  2. #22
    Quote Originally Posted by Huntaer View Post
    Little feedback, would be nice to be able to switch to green red or blue. The other thing is, can we keep this for at least BfA?
    This is currently just a temporary thing for a couple weeks. Maybe if lots of people want it I can look into making it permanent

  3. #23
    Quote Originally Posted by Recklezz View Post
    To manually (without deleting cookies) turn it off / switch goto. Inspect Element, under storage goto cookies, there should be tab called BFAFaction, changed the value to 0 to turn off, 1 for Alliance and 2 for Horde.

    Remember to refresh for the changed to take effect.

    Edit: Don't edit anything else, it might mess up your connection to the back-end. Have fun

    (This is only a walkthrough for firefox though.)
    You are my hero.

  4. #24
    Deleted
    It seems like many people liked that they could remove the stuff without clearing cookies.

    Heres is a little script to make it easier, should work for both firefox and chrome.

    -------------------------------------
    function changeFaction(faction) {
    var index = -1;
    switch (faction.toLowerCase()) {
    case "horde":
    index = 2;
    break;
    case "alliance":
    index = 1;
    break;
    default:
    index = 0;
    break;
    }
    document.cookie = `BFAFaction=${index}; domain=.mmo-champion.com; expires=Mon, 05 Nov 2018 23:00:00 GMT; path=/`;
    window.location.reload();
    }

    changeFaction("alliance");
    -- or --
    changeFaction("horde");
    -- or --
    changeFaction("");

    -------------------------------------

    some browser require you to type allow-pasting before inserting the code.

    Choose what you want in last part of the code. This can be pasted into the console in the browser tools. Have fun =D.

Posting Permissions

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