NATION

PASSWORD

11

DispatchMetaGameplay

by The Republic of Trican Herald. . 174 reads.

Ultimate Guide to Card Farming by Bharat Desham


≣ Beginner's Guide | ≣ RMB Guidelines | ≣ Trica Roleplay | ≣ Project Continuum

Ultimate Guide to Card Farming
By Bharat Desham

This is the Guide for starting Card Farming using Scripts such as SCS, Compacterrand, Autoclose through TamperMonkey and Gotissues script through Hare.

Join our discord server to get first hand demonstration with our members!

Prerequisites


    Any browser where Tampermonkey is available
    Tampermonkey extension (Linkinstall) - firefox
    Tampermonkey (Linkinstall) - Chrome
    Create 10-15 nations on NationStates with the SAME PASSWORD
    Ask Confirmation before answering Issues must be disabled

Setting Up TaperMonkey in CHROME


    1 Install TamperMonkey on Chrome
    2 Click on the Three Dots on Top Right side of Chrome
    3 A list will open Navigate to Extensions and click on ‘Manage Extensions’
    4 From the list of Extensions , find TamperMonkey and click on ‘Details’
    5 Enable ‘Allow User Scripts’.

Downloading Scripts


    1 Click on - Linklink - to download Simple Card Switcher
    2 Click on Install.
    3 Similarly download these scripts as well after your have been redirected to the Install page:
      - Click on Linklink - to download NSCompacterRand.
      - Click on Linklink - to download NSDilemmaAutoClose
      - Click on Linklink - to download pack autocloser.

CONGRATS , you have installed the required Scripts.


Setting Up Hare


    1 This is the Website that has the complete complete repository of all Card farming Scripts - LinkHare
    2 To save all your puppets and the common password on Hare - go to Linkconfig
      - In User Nation - put the name of your Main Nation
      - In The General Puppets and Puppets Field - Put the name of all of your Puppets - Only 1 Puppet Name per line
      - In the Password Field , Put the Common Password of the Puppets
      - Now Scroll to the Bottom and Click on Submit.

Using GotIssues


    1 Go to GotIssues on Hare - Linklink
    2 Since you set up Hare and created the config file , all the fields in GotIssues script is filled so
    3 just verify that the information is correct and scroll to the bottom where you will first click on “Start”
    4 Wait a Few Mins, The Button Named “Open Available Link” will become highlighted and will Display the number of Available Issues , Click on this Button Once and It will redirect you to a new page , now you just start Spamming Enter until there is No more Issues left
    5 If this is your first time farming you will need to Set up SCS before you spam Enter.

Setting up SCS

    1 When you click on the link in GotIssues for the first time - this will open

    2 Click on “Edit SCS Credentials” - this will open
    3 Fill out the fields -
    4 Main nation in User Agent
    5 Puppet Password’s in Password Field
    6 And Puppet’s names in Puppet feild , One Puppet Name per line no commas
    7 Click on Save after filling all the Fields.

Congrats , You just now Press Enter continuously until no Links are available on GotIssues

Quality of Life Scripts


Nation Creator Script and Mass Puppet Founding:
    Download here - link (cant find the link , just copy the code to Tampermonkey directly)

    // ==UserScript==
    // @name         Nation Creator
    // @version      1.2
    // @description  Quickly Found Nations
    // @author       Kractero
    // @match        https://*.nationstates.net/*page=create_nation*
    // @grant        none
    // ==/UserScript==
    (function () {
        'use strict';
        if (document.querySelector('#content input[type="submit"]')) {
            const split = window.location.href.split('?')[0]
            const nation = decodeURIComponent(split.substring(split.lastIndexOf('=') + 1));
            localStorage.setItem('createNation', nation);
            document.querySelector('#content input[type="submit"]').focus()
            return
        }
        if (document.querySelector('#content button[type="submit"]')) {
            document.querySelector('input[name="name"]').value = localStorage.getItem('createNation')
    
    
            // Set motto
            document.querySelector('input[name="slogan"]').value = "card"
    
    
            // Set animal
            document.querySelector('input[name="animal"]').value = "card"
    
    
            // Set currency
            document.querySelector('input[name="currency"]').value = "card"
    
    
            // Set email
            document.querySelector('input[name="email"]').value = ""
    
    
            // Set password and confirmpassword
            document.querySelector('.settings input[name="password"]').value = ""
            document.querySelector('.settings input[name="confirm_password"]').value = ""
    
    
            // Set flag, must be valid flag with file type
            document.getElementById('flag').value = "Albania.svg";
    
    
            // Government type, between 100-138
            document.getElementById('type').value = 100;
    
    
            document.getElementById('legal').checked = true;
            document.querySelector('#content button[type="submit"]').focus()
        }
    })();
    

    On line 31 , put you NS email
    On line 34 and 35 put your Puppet’s password
    (Optional) On line 22 , 25 and 28 put your own motto , animal , currency if you want to instead of just cards
    Now the script is ready so go to Hare (God Bless Krac) , here exactly Linklink , add the names of all the new puppets you want to found (I recommend a numbered set for convenience and to not be a Recruitment Terrorist ) , One puppet name per line , no commas
    Click on start , download the sheet generated and open it in your browser
    Now just click on the first link and press enter continuosly and boom new puppets are being founded , you dont have to input anything manually now.
    You may hit the throttle after founding 20 or 30 nations , you just wait for some time and press enter again.


Moving Puppets to a Region Storage:
    I recommend creating a puppet storage where you store all your puppets , frontiers and feeders will appreciate you and you dont risk facing modly wrath
    Here’s the script - link (i cant find the link , just copy the code directly to Tampermonkey)

     // ==UserScript==
    // @name         Move Puppets
    // @version      1.0
    // @description  Quickly move regions, set flag for new puppets
    // @author       Kractero
    // @match        https://*.nationstates.net/*
    // @exclude      https://*.nationstates.net/*card=*
    // ==/UserScript==
    
    
    (function () {
      'use strict';
      document.addEventListener('keydown', (event) => {
        if (event.key === '1') {
          window.location.href = 'https://www.nationstates.net/region=';
        }
        if (event.key === '2' && window.location.href.includes('region')) {
          document.querySelector('.danger').click();
        }
      });
    })();
    

    Put the name of your region on line 14 after region= , replace spaces in your region name with underscore ‘ _ ‘ .
    After you are on your puppet page , press 1 to go to puppet storage region page and press 2 to make the puppet join the puppet storage region ,Make sure Puppet storage region must not have a Password when you are moving nations to the region.

Help

Be sure to ask for help if you have any questions about card farming.
Bharat Desham

RawReport