39 lines
601 B
Python
39 lines
601 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# -*- mode: Python -*-
|
||
|
|
||
|
"""
|
||
|
Jamidi states
|
||
|
v0.2.4b
|
||
|
|
||
|
|
||
|
LICENCE : CC
|
||
|
by Sam Neurohack
|
||
|
from /team/laser
|
||
|
|
||
|
|
||
|
"""
|
||
|
|
||
|
# reset = [64,64,0,32,96] # un truc comme ca pour les valeurs de reset ?
|
||
|
resetMMO3 = [0] * 32
|
||
|
resetOCS2 = [0] * 32
|
||
|
|
||
|
# record current values
|
||
|
crtvalueMMO3 = [0] * 32
|
||
|
crtvalueOCS2 = [0] * 32
|
||
|
|
||
|
# record number of loaded pages (aka client id or players)
|
||
|
Players=0
|
||
|
|
||
|
oscname = ""
|
||
|
Confs = []
|
||
|
|
||
|
debug = 0
|
||
|
|
||
|
BS="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||
|
def to_base(s, b):
|
||
|
res = ""
|
||
|
while s:
|
||
|
res+=BS[s%b]
|
||
|
s//= b
|
||
|
return res[::-1] or "0"
|