python

  1. V

    ViewMatrix Problem

    i tried this for debugging, but screen cords are always 0, 0... is ViewMatrix Problem or my w2s problem? import pymem import pymem.process import struct import win32gui import math import time # Offsets SAMP_INFO_OFFSET = 0x21A0F8 PPOOL_OFFSET = 0x3CD PLAYER_POOL_OFFSET = 0x18...
  2. belle_delphine.py

    python gta mini hack

    import ctypes, struct, time, wmi class Pyrate: def __init__(self): self.pHandle = None self.pid = None def Attach(self): c = wmi.WMI () for process in c.Win32_Process (): if process.Name == 'gta_sa.exe': prcID =...
  3. belle_delphine.py

    chatlog reader

    just a small script that reads the chatlog and when it detects a word that is in cuv_cap(type = Dictionary) it sets to clipboard the key/value..made in python 3..i was bored @monday helped me with sum things <3 import pyperclip, time, getpass from os.path import getsize from pathlib import Path...
  4. P

    Call opcode function in Python ( using PyMem )

    Hi everyone, Is it possible to call opcode function in Python ( using PyMem which is module to manipulate with memory ). I found memory addresses of some opcodes on this page https://gtamods.com/wiki/Memory_Addresses_(SA), but I have no idea how to call it. Can someone give me simple example for...
  5. belle_delphine.py

    APP Release python gta mini hack

    import ctypes, struct, time, wmi class Pyrate: def __init__(self): self.pHandle = None self.pid = None def Attach(self): c = wmi.WMI () for process in c.Win32_Process (): if process.Name == 'gta_sa.exe': prcID =...
  6. belle_delphine.py

    APP Release chatlog reader

    just a small script that reads the chatlog and when it detects a word that is in cuv_cap(type = Dictionary) it sets to clipboard the key/value..made in python 3..i was bored @monday helped me with sum things <3 import pyperclip, time, getpass from os.path import getsize from pathlib import Path...
Top