This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dune client | |
import select | |
import socket | |
import string | |
import sys | |
import termios | |
import threading | |
import tty | |
HOST = 'dune.servint.com' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cstdlib> | |
#include <ctime> | |
#include <string> | |
using namespace std; | |
class PlayerClass{ | |
private: | |
int str = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
BlueStacks App Auto Clicker. | |
This program will find the BlueStacks App Player and make it the foreground | |
window. It will then send a mouse click to the top left corner of the application. | |
Finally, it will restore the foreground application and mouse position to its | |
original position. | |
""" | |
import win32api |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# d2lounge.com Auto Bumper | |
# Bumps every 31 min. Uses chrome cookies. User must login through chrome first. | |
import base64 | |
import cookielib | |
import getpass | |
import gzip | |
import htmlentitydefs | |
import httplib |