Search results

  1. belle_delphine.py

    [Python] CopyChat

    Simple copychat with autoresponse Dictionary from which to find word elements = { "Calcium": "Ca", "Hydrogen": "H", "Helium": "He" } most credits to a russian guy, russian are always crazy import pymem, re, example from pymem import Pymem FUNC_SAMP_SENDSAY = 0x57F0...
  2. belle_delphine.py

    Python - CouldNotOpenProcess gta_sa.exe

    I tried running this code, to see if it could open the process so I can play with some memory addresses, but I don't understand why the exception from the title would occur. import pymem from pymem import Pymem class GT: def __init__(self) -> None: self.process =...
  3. belle_delphine.py

    CLEO Help Directory to .ini

    so i have this script > {$CLEO .cs} //-------------MAIN--------------- 0662: printstring "Shitty autocmdsender" thread 'AUTOCMDSENDER' :GETINFO wait 0 if 0AAB: file_exists "CLEO\autocmdsender.ini" else_jump @ERROR 0AF0: 0@ = get_int_from_ini_file "CLEO\autocmdsender.ini"...
  4. belle_delphine.py

    Girlfriend SNIPPET | Python

    Python: import girlfriend !still have sum problems with the code optimization, but it gets the job done Credits: @monday
  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