Skip to content

Instantly share code, notes, and snippets.

View EricsonWillians's full-sized avatar

Ericson Willians (m15k47on1c) EricsonWillians

View GitHub Profile
@EricsonWillians
EricsonWillians / insane_sorcerer.py
Last active March 15, 2016 06:58
Python script for sorcerers that use Tibia Auto.
"""
Insane Sorcerer Script for Tibia Auto (Tested with 8.6 client) and for http://tibiaauto.net/forum/,
By Ericson Willians (Rederick Deathwill): https://github.com/EricsonWillians
Instructions:
You just have to activate it and it will throw exori morts and frigos in all the visible targets,
The target on the battle may change, so don't be scared if the target changes suddenly,
Just be cautious and use it in relatively safe spawns (Since it can be too dangerous, due to the target change).
The script uses Utamo Vita and Utani Gran Hur constantly, so that you can forget about it.
@EricsonWillians
EricsonWillians / main.py
Last active November 6, 2015 18:30
Pyglet Game App Template
# main.py
#
# Copyright 2015 Ericson Willians (Rederick Deathwill) <EricsonWRP@ERICSONWRP-PC>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
@EricsonWillians
EricsonWillians / super_pylogin_3000.py
Created October 21, 2015 00:37
An example for someone in a facebook group.
# Super PyLogin 3000
import sys
USERS = {}
def create_account(username, password):
if not username in USERS:
USERS[username] = password
print("Account created")
@EricsonWillians
EricsonWillians / luciano_silva_simulator.py
Created October 18, 2015 17:03
A Luciano Silva Simulator implemented in Python 3.x.
# -*- coding: utf-8 -*-
#
# luciano_silva_simulator.py
#
# Copyright 2015 Ericson Willians (Rederick Deathwill) <EricsonWRP@ERICSONWRP-PC>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
@EricsonWillians
EricsonWillians / pylazy.py
Last active October 16, 2015 02:06
Pylazy is a script that changes in the PATH windows environment variable from python 2.x to python 3.x or vice-versa.
#
# pylazy.py
#
# Copyright 2015 Ericson Willians (Rederick Deathwill) <EricsonWRP@ERICSONWRP-PC>
#
# This script recursively searches for python.exe in the C partition of the system,
# And adds its path to the system's PATH environment variable to help new users.
# It also considers some basic common softwares that uses Python, such as GIMP, and ignores them.
#
# This program is free software; you can redistribute it and/or modify
@EricsonWillians
EricsonWillians / astrological_possibilities.py
Created September 21, 2015 22:10
Attempt to discover all the possible astrological configurations without considering angles and whatever for obvious reasons
# -*- coding: utf-8 -*-
#
# astrological_possibilities.py
#
# Copyright 2015 Ericson Willians (Rederick Deathwill) <EricsonWRP@ERICSONWRP-PC>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
@EricsonWillians
EricsonWillians / PyWinPath.py
Created August 27, 2015 15:53
This script recursively searches for python.exe in the C partition of the system and adds its path to the system's PATH environment variable to help new users.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# PyWinPath.py
#
# Copyright 2015 Ericson Willians (Rederick Deathwill) <EricsonWRP@ERICSONWRP-PC>
#
# This script recursively searches for python.exe in the C partition of the system,
# And adds its path to the system's PATH environment variable to help new users.
# It also considers some basic common softwares that uses Python, such as GIMP, and ignores them.
@EricsonWillians
EricsonWillians / win32_keylogger.pyw
Last active September 13, 2017 12:15
Win32 Keylogger
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# win32_keylogger.pyw
#
# Copyright 2015 Ericson Willians (Rederick Deathwill) <EricsonWRP@ERICSONWRP-PC>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@EricsonWillians
EricsonWillians / private_class.py
Last active August 29, 2015 14:23
Silly Private Class Attempt in Python
# Silly private class implementation attemp in Python, by Rederick Deathwill.
class PrivateClass():
def __init__(self, **kwargs):
self.vars = kwargs
def __getattr__(self, attr):
for key in self.vars["private"]:
if key == attr:
raise RuntimeError("You're not allowed to access a private variable ('{0:s}').".format(attr))
for key in self.vars["public"]:
@EricsonWillians
EricsonWillians / lika_pong1.1.c
Last active August 29, 2015 14:23
Lika Pong 1.1
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv)
{
char jogadores[8][30];
char duplas[4][2][30];
char vencedores[4][30];
char duplas_finalistas[2][2][30];
char vencedores_finalistas[2][30];