Skip to content

Mapsai/scripts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

E-sim python library

Flag Counter

You always wanted to use automated software, but did not have the necessary knowledge?

Here are few examples:

  • Auto-fight every restore.
  • Bid on all auctions with a single click
  • Dump all limits with a single click.
  • Complete all the missions with a single click.
  • Auto-hunt BH's (soon)
  • And much more!

(As far as we know, no one has ever been punished for using those scripts. However, the use is at your own risk of course.)

This project is open-source, so anyone can check any line and see if it's harmful. Everything written is pretty much plain English, so you can see that there aren't any traps, and what each code really does. If you still think there is a suspicious line, you can ask us about it, and warn other users as well

Usage:

  • Download and Install python 3.6+ (Android users click here).
  • Download the e-sim library as zip file (Code -> download ZIP) and extract it. (If you can't extract, download WinRAR)
  • At the first run, you will have to excute install_packets.py, or install requests and lxml manually (type pip install requests on your start menu, or py -m pip install requests on your CMD).
  • Double click (in your computer) on any script you want, or right click -> open with IDLE.
  • Alternative (advanced): import the function to another script. If you need help, execute print (function_name.__doc__)

Few notes:

  • You can edit the scripts by right click on it.
  • Everything written after the pound (#) in the same line, is a note that can help you understand the code, or for the developers.
  • Every line with input can be replaces (instead of typing the same choice every time you run the script). For example: server = input("Server: ") can be replaced into server = "alpha".

The uploaded scripts (Basic folder mainly) are mostly raw, and they can be used in many other ways. Beginner idea:

  • Add time.sleep(time_in_sconds) at the beginning of the script to do action with a delay (For example: Bid auctions just before it's end, propose a law while you are sleeping etc.)

Advanced idea:

  • Make a discord bot with your trusted group, and let everyone do specific actions in each other accounts (fight, vote laws etc.). Alternative, you can do that with multies and VPS ;) You can also delete every server parameter in all the function, and add line like server = ctx.channel.name (open channel for each server).

Advanced example:

MY_NICK = "Admin"
def fight(nick, *other_args):
  if nick == MY_NICK:
    #rest of the code

Errors:

  • First try to search for solution online.
  • For example: ImportError: No module named requests -> google search will tell you how to install packet (via pip). In that specific error you can also run install_packets.py
  • Sometimes all you need is to login via script again, because your cookies are too old.
  • If you believes that the error is made by us, you can describe it here and we will try to fix. This is also the place for suggestions and any contact.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%