Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
mcpi /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
57
B
-rw-r--r--
block.py
8
KB
-rw-r--r--
connection.py
4.27
KB
-rw-r--r--
entity.py
1.44
KB
-rw-r--r--
event.py
1.18
KB
-rw-r--r--
minecraft.py
13.98
KB
-rw-r--r--
nbt.py
20.62
KB
-rw-r--r--
security.py
58
B
-rw-r--r--
settings.py
251
B
-rw-r--r--
util.py
620
B
-rw-r--r--
vec3.py
2.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : event.py
from .vec3 import Vec3 class BlockEvent: """An Event related to blocks (e.g. placed, removed, hit)""" HIT = 0 def __init__(self, type, x, y, z, face, entityId): self.type = type self.pos = Vec3(x, y, z) self.face = face self.entityId = entityId def __repr__(self): sType = { BlockEvent.HIT: "BlockEvent.HIT" }.get(self.type, "???") return "BlockEvent(%s, %d, %d, %d, %d, %d)"%( sType,self.pos.x,self.pos.y,self.pos.z,self.face,self.entityId); @staticmethod def Hit(x, y, z, face, entityId): return BlockEvent(BlockEvent.HIT, x, y, z, face, entityId) class ChatEvent: """An Event related to chat (e.g. posts)""" POST = 0 def __init__(self, type, entityId, message): self.type = type self.entityId = entityId self.message = message def __repr__(self): sType = { ChatEvent.POST: "ChatEvent.POST" }.get(self.type, "???") return "ChatEvent(%s, %d, %s)"%( sType,self.entityId,self.message); @staticmethod def Post(entityId, message): return ChatEvent(ChatEvent.POST, entityId, message)
Close