Recent content by belle_delphine.py

  1. 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...
  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

    Help Gambling script

    write a script based of one of this, depends what gambling game it is, i dont really know how they work on samp servers (if they really are random or nah) but as even real gambling slots algorithm were tricked by taking pics of every spin (as they are not really that random), i guess there...
  4. belle_delphine.py

    request to make chat scaner

    https://github.com/rmdlv/python-samp https://github.com/hoffstadt/DearPyGui import getpass, re, time, os import dearpygui.dearpygui as dpg from python_samp import SAMP, API from pathlib import Path from os.path import isfile samp = SAMP() api = API(samp) def getUserPath(): return...
  5. belle_delphine.py

    request to make chat scaner

    jsut press start is going scan every line and sent it automatically in the chat when it detects that thype of "code"
  6. 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...
  7. belle_delphine.py

    sent you the py samp api through dm

    sent you the py samp api through dm
  8. belle_delphine.py

    Python - CouldNotOpenProcess gta_sa.exe

    it was because of some settings of my environment, it had to do with that thanks for the help
  9. belle_delphine.py

    Python - CouldNotOpenProcess gta_sa.exe

    import pymem pm = pymem.Pymem("gta_sa.exe") # Do something with the process handle pm.close_process() still the same
  10. 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 =...
  11. belle_delphine.py

    Call opcode function in Python ( using PyMem )

    maybe it helps, it is very old and it is not even mine, though, rn just began to work on a better method for a personal project, until then maybe this helps click
  12. belle_delphine.py

    CLEO Help Help-me

    throw the router on the window uwu
  13. belle_delphine.py

    APP Release chatlog reader

    better way to read the last line from chatlog without truncating it ... import getpass, os, re from os.path import isfile from pathlib import Path def getUserPath(): return Path('C:\\Users\\'+ getUserNameD() + '\\Documents\\GTA San Andreas User Files\\SAMP\\chatlog.txt') def...
  14. belle_delphine.py

    CLEO Help compare strings

    parazitas helped you already you can use string compare 0C14: strcmp string1 0@ string2 1@ http://www.cplusplus.com/reference/cstring/strcmp/
Top