Osiris icon indicating copy to clipboard operation
Osiris copied to clipboard

My opinion should be added

Open noa1ms opened this issue 1 year ago • 3 comments

You need to add an assistant for throwing grenades and a radar hack

noa1ms avatar Jan 11 '24 15:01 noa1ms

the source code is open for a good reason, if you want it maybe you should try implementing it yourself and pushing a pull request?

arrayffs avatar Jan 14 '24 19:01 arrayffs

also should be noted that it has been suggested already, please read #4148

arrayffs avatar Jan 14 '24 19:01 arrayffs

for anyone attempting i recommend this python script made by imrazvan

    #sv_grenade_trajectory_prac_pipreview
    from pymem import Pymem, process
    from re import search
     
    patch = b'\x0f\x85'
    location = rb'\x0f\x84....\x8b\x05....\x48\x89\x74\x24.\xbe' 
    # 0f 84 ? ? ? ? 8b 05 ? ? ? ? 48 89 74 24 ? be
     
    pm = Pymem('cs2.exe')
     
    client = process.module_from_name(pm.process_handle, 'client.dll')
    clientBytes = pm.read_bytes(client.lpBaseOfDll, client.SizeOfImage) 
     
    address = client.lpBaseOfDll + search(location, clientBytes).start()
    pm.write_bytes(address, patch, len(patch))```

pawelk1337 avatar Feb 04 '24 14:02 pawelk1337