Fivem Güncel Offsets (istek)

acrombequit

Silver Üye
Katılım
6 Kas 2024
Mesajlar
72
Beğeniler
6
İletişim
3258 offseti olan varmı

bIsPlayerAiming
PlayerAimingAt
HandleBullet
BlipList

EntityType
Armor
BoneManager
PlayerInfo
PlayerNetID
WeaponManager
FragInsNmGTA
ConfigFlags
MaxHealth
LastVehicle
Driver
DoorLock
Stamina
VisibleFlag
 
Son düzenleme:
3258 version offset lazım aşşağıdakiler için

EntityType = 0x1098;
Armor = 0x150C;
BoneManager = 0x430;
PlayerInfo = 0x10A8;
PlayerNetID = 0xE8;
WeaponManager = 0x10B8;
FragInsNmGTA = 0x1430;
ConfigFlags = 0x1444;
MaxHealth = 0x284;
LastVehicle = 0xD10;
Driver = 0xC48;
DoorLock = 0x1370;
Stamina = 0xCF4;
VisibleFlag = 0x145C;

bunları buldum doğrumu bilmiyorum ama deniyeceğim üsttekilerin günceli lazım

World = ModuleBase + 0x25B14B0;
ReplayInterface = ModuleBase + 0x1FBD4F0;
ViewPort = ModuleBase + 0x201DBA0;
Camera = ModuleBase + 0x201E7D0;
bIsPlayerAiming = ModuleBase + 0x2D3839C;
PlayerAimingAt = ModuleBase + 0x200FA10;
HandleBullet = ModuleBase + 0x100F5A4;
BlipList = ModuleBase + 0x2002FA0;
48 8B 05 ? ? ? ? 45 ? ? ? ? 48 8B 48 08 48 85 C9 74 07
World = 0x247F840;

LocalPlayer = 0x8;
BlipPTR = 0x14206B4E0;

Health = 0x8 + 0x280
God = 0x8 + 0x189
Armor = 0x8 + 0x14B8
SprintSpeed = 0x8 + 0x10B8 + 0x14C
Ammo = 0x8 + 0x10C8 + 0x20 + 0x60 + 0x8 + 0x0 + 0x18
Damage = 0x8 + 0x10C8 + 0x20 + 0x60 + 0x8 + 0x0 + 0x98
VehicleGodmode = 0x08 + 0xD28 + 0x189
Blip = 0x8
BlipIcon = 0x40
BlipColor = 0x48 boyle bisey buldu mknk
 
48 8B 05 ? ? ? ? 45 ? ? ? ? 48 8B 48 08 48 85 C9 74 07
World = 0x247F840;

LocalPlayer = 0x8;
BlipPTR = 0x14206B4E0;

Health = 0x8 + 0x280
God = 0x8 + 0x189
Armor = 0x8 + 0x14B8
SprintSpeed = 0x8 + 0x10B8 + 0x14C
Ammo = 0x8 + 0x10C8 + 0x20 + 0x60 + 0x8 + 0x0 + 0x18
Damage = 0x8 + 0x10C8 + 0x20 + 0x60 + 0x8 + 0x0 + 0x98
VehicleGodmode = 0x08 + 0xD28 + 0x189
Blip = 0x8
BlipIcon = 0x40
BlipColor = 0x48 boyle bisey buldu mknk
teşekkürler deniyorum hepsini

48 8B 05 ? ? ? ? 45 ? ? ? ? 48 8B 48 08 48 85 C9 74 07
World = 0x247F840;

LocalPlayer = 0x8;
BlipPTR = 0x14206B4E0;

Health = 0x8 + 0x280
God = 0x8 + 0x189
Armor = 0x8 + 0x14B8
SprintSpeed = 0x8 + 0x10B8 + 0x14C
Ammo = 0x8 + 0x10C8 + 0x20 + 0x60 + 0x8 + 0x0 + 0x18
Damage = 0x8 + 0x10C8 + 0x20 + 0x60 + 0x8 + 0x0 + 0x98
VehicleGodmode = 0x08 + 0xD28 + 0x189
Blip = 0x8
BlipIcon = 0x40
BlipColor = 0x48 boyle bisey buldu mknk
çalışmadı birde tam olarak listedekiler lazım :/
 
import pymem
import pymem.process

def find_offsets(process_name, structures):
pm = pymem.Pymem(process_name)
module = pymem.process.module_from_name(pm.process_handle, process_name).lpBaseOfDll

offsets = {}
for struct in structures:
try:
# 31cek
address = pm.pattern_scan_module(module, struct.encode())
offsets[struct] = hex(address)
except Exception as e:
offsets[struct] = f"Bulunamadı: {e}"

return offsets

process_name = "FiveM.exe" # 31cek
structures = [
"bIsPlayerAiming",
"PlayerAimingAt",
"HandleBullet",
"BlipList",
"EntityType",
"Armor",
"BoneManager",
"PlayerInfo",
"PlayerNetID",
"WeaponManager",
"FragInsNmGTA",
"ConfigFlags",
"MaxHealth",
"LastVehicle",
"Driver",
"DoorLock",
"Stamina",
"VisibleFlag",
]

offsets = find_offsets(process_name, structures)
for key, value in offsets.items():
print(f"{key}: {value}")





yaptım bu sporu
 
import pymem
import pymem.process

def find_offsets(process_name, structures):
pm = pymem.Pymem(process_name)
module = pymem.process.module_from_name(pm.process_handle, process_name).lpBaseOfDll

offsets = {}
for struct in structures:
try:
# 31cek
address = pm.pattern_scan_module(module, struct.encode())
offsets[struct] = hex(address)
except Exception as e:
offsets[struct] = f"Bulunamadı: {e}"

return offsets

process_name = "FiveM.exe" # 31cek
structures = [
"bIsPlayerAiming",
"PlayerAimingAt",
"HandleBullet",
"BlipList",
"EntityType",
"Armor",
"BoneManager",
"PlayerInfo",
"PlayerNetID",
"WeaponManager",
"FragInsNmGTA",
"ConfigFlags",
"MaxHealth",
"LastVehicle",
"Driver",
"DoorLock",
"Stamina",
"VisibleFlag",
]

offsets = find_offsets(process_name, structures)
for key, value in offsets.items():
print(f"{key}: {value}")





yaptım bu sporu
direkt atmaya ne dersin ?
 

  Şuanda konuyu görüntüleyen kullanıcılar


Üst Alt