CLEO Help Convert samp patches

CLEO related
Status
Not open for further replies.

ramez

Active member
Joined
Jun 11, 2015
Messages
120
Reaction score
0
Location
GB
How i can convert samp patches to cleo files?Is this possible?
I need this,please help me and thanks.
 

rottentwinkie

Moderator
Moderator
Joined
Apr 4, 2014
Messages
608
Reaction score
1
I can't really explain it with words, so I'll give you this thing:

Code:
{$CLEO}

{
sampPatch[] = "Disable onfoot data"          &0 0 0x41E0 "" "C3"
}

0662: "DISABLE ONFOOT DATA"
0B2E: 3@ = read_samp_memory offset 0x41E0 size 2

:ON
wait 0
if
key_down 112
jf @ON
print "Onfoot data is now disabled" 2000
0B2D: write_samp_memory offset 0x41E0 value 0xC3 size 2

:OFF
wait 0
if
key_down 112
jf @OFF
print "Onfoot data is now enabled" 2000
0B2D: write_samp_memory offset 0x41E0 value 3@ size 2
goto @ON
 

ramez

Active member
Joined
Jun 11, 2015
Messages
120
Reaction score
0
Location
GB
Flamez link said:
I can't really explain it with words, so I'll give you this thing:

Code:
{$CLEO}

{
sampPatch[] = "Disable onfoot data"          &0 0 0x41E0 "" "C3"
}

0662: "DISABLE ONFOOT DATA"
0B2E: 3@ = read_samp_memory offset 0x41E0 size 2

:ON
wait 0
if
key_down 112
jf @ON
print "Onfoot data is now disabled" 2000
0B2D: write_samp_memory offset 0x41E0 value 0xC3 size 2

:OFF
wait 0
if
key_down 112
jf @OFF
print "Onfoot data is now enabled" 2000
0B2D: write_samp_memory offset 0x41E0 value 3@ size 2
goto @ON
thanks for your reply,but i need this on patch (47 Put Player In Vehicle) on samp 0.3.7 (r2) idk the address of this patch in (r2) i hope just one help again from you.
+this auto cleo or it's works by some key like (F1)?Thank you very much and I appreciate your help.
 

Joey_

Member
Joined
Apr 5, 2014
Messages
5
Reaction score
0
ramez link said:
thanks for your reply,but i need this on patch (47 Put Player In Vehicle) on samp 0.3.7 (r2) idk the address of this patch in (r2) i hope just one help again from you.
+this auto cleo or it's works by some key like (F1)?Thank you very much and I appreciate your help.

Press F2 to activate
Press F3 to deactivate


Code:
{$CLEO .cs}

0000: NOP
0662: "NOP PutPlayerInVehicle"

:ON
wait 0
if 
	key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x15C50 size 2
0B2D: write_samp_memory offset 0x15C50 value 0xC390 size 2

:OFF
wait 0
if 
	key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x15C50 value 0@ size 2
goto @ON
 

0x_

Wtf I'm not new....
Administrator
Joined
Feb 18, 2013
Messages
1,119
Reaction score
168
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP SetPlayerName (11)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x01A4F0 size 2
0B2D: write_samp_memory offset 0x01A4F0 value 0xC390 size 2


:OFF
wait 0
if
key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x01A4F0 value 0@ size 2
goto @ON
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP SetPlayerPos (12)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x015970 size 2
0B2D: write_samp_memory offset 0x015970 value 0xC390 size 2


:OFF
wait 0
if
key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x015970 value 0@ size 2
goto @ON
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP SetPlayerPosFindZ (13)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x015A90 size 2
0B2D: write_samp_memory offset 0x015A90 value 0xC390 size 2


:OFF
wait 0
if
key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x015A90 value 0@ size 2
goto @ON
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP SetPlayerHealth (14)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x015BA0 size 2
0B2D: write_samp_memory offset 0x015BA0 value 0xC390 size 2


:OFF
wait 0
if
key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x015BA0 value 0@ size 2
goto @ON
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP TogglePlayerControllable (15)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x0168E0 size 2
0B2D: write_samp_memory offset 0x0168E0 value 0xC390 size 2


:OFF
wait 0
if
key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x0168E0 value 0@ size 2
goto @ON
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP PlaySound (16)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x016980 size 2
0B2D: write_samp_memory offset 0x016980 value 0xC390 size 2


:OFF
wait 0
if
key_down 114 //F3
jf @OFF
0B2D: write_samp_memory offset 0x016980 value 0@ size 2
goto @ON
Code:
{$CLEO.cs}
0000: NOP
0662 : "NOP SetPlayerWorldBounds (17)"


:ON
wait 0
if
key_down 113 //F2
jf @ON
0B2E: 0@ = read_samp_memory offset 0x016A60 size 2
0B2D: write_samp_memory offset 0x016A60 value 0xC390 size 2


:OFF
wait
 

0x_

Wtf I'm not new....
Administrator
Joined
Feb 18, 2013
Messages
1,119
Reaction score
168
cuz sprgfld told me it's one of the worst kind of cleo nop patches here the raw addresses:

NOP SetPlayerName (11): offset: 0x01A4F0 patch: 0xC390
NOP SetPlayerPos (12): offset: 0x015970 patch: 0xC390
NOP SetPlayerPosFindZ (13): offset: 0x015A90 patch: 0xC390
NOP SetPlayerHealth (14): offset: 0x015BA0 patch: 0xC390
NOP TogglePlayerControllable (15): offset: 0x0168E0 patch: 0xC390
NOP PlaySound (16): offset: 0x016980 patch: 0xC390
NOP SetPlayerWorldBounds (17): offset: 0x016A60 patch: 0xC390
NOP GivePlayerMoney (18): offset: 0x016B50 patch: 0xC390
NOP SetPlayerFacingAngle (19): offset: 0x016BF0 patch: 0xC390
NOP ResetPlayerMoney (20): offset: 0x014780 patch: 0xC390
NOP ResetPlayerWeapons (21): offset: 0x014790 patch: 0xC390
NOP GivePlayerWeapon (22): offset: 0x016C90 patch: 0xC390
NOP SetVehicleParamsEx (24): offset: 0x00E370 patch: 0xC390
NOP EnterVehicle (26): offset: 0x00E650 patch: 0xC390
NOP EnterEditObject (27): offset: 0x00BA90 patch: 0xC390
NOP CancelEdit (28): offset: 0x00BB50 patch: 0xC390
NOP SetPlayerTime (29): offset: 0x00C4E0 patch: 0xC390
NOP ToggleClock (30): offset: 0x00C5C0 patch: 0xC390
NOP WorldPlayerAdd (32): offset: 0x00DBB0 patch: 0xC390
NOP SetPlayerShopName (33): offset: 0x014540 patch: 0xC390
NOP SetPlayerSkillLevel (34): offset: 0x00C6A0 patch: 0xC390
NOP SetPlayerDrunkLevel (35): offset: 0x015490 patch: 0xC390
NOP Create3DTextLabel (36): offset: 0x00C7D0 patch: 0xC390
NOP DisableCheckpoint (37): offset: 0x00B780 patch: 0xC390
NOP SetRaceCheckpoint (38): offset: 0x00D330 patch: 0xC390
NOP DisableRaceCheckpoint (39): offset: 0x00B790 patch: 0xC390
NOP GameModeRestart (40): offset: 0x00B830 patch: 0xC390
NOP PlayAudioStream (41): offset: 0x019990 patch: 0xC390
NOP StopAudioStream (42): offset: 0x0147E0 patch: 0xC390
NOP RemoveBuildingForPlayer (43): offset: 0x019B00 patch: 0xC390
NOP CreateObject (44): offset: 0x017980 patch: 0xC390
NOP SetObjectPos (45): offset: 0x018050 patch: 0xC390
NOP SetObjectRot (46): offset: 0x018160 patch: 0xC390
NOP DestroyObject (47): offset: 0x018260 patch: 0xC390
NOP DeathMessage (55): offset: 0x01A290 patch: 0xC390
NOP SetPlayerMapIcon (56): offset: 0x016DE0 patch: 0xC390
NOP RemoveVehicleComponent (57): offset: 0x018C00 patch: 0xC390
NOP Update3DTextLabel (58): offset: 0x00C980 patch: 0xC390
NOP ChatBubble (59): offset: 0x00CA40 patch: 0xC390
NOP UpdateSystemTime (60): offset: 0x00CFE0 patch: 0xC390
NOP ShowDialog (61): offset: 0x00CBB0 patch: 0xC390
NOP DestroyPickup (63): offset: 0x00C200 patch: 0xC390
NOP WeaponPickupDestroy (64): offset: 0x016D50 patch: 0xC390
NOP LinkVehicleToInterior (65): offset: 0x016580 patch: 0xC390
NOP SetPlayerArmour (66): offset: 0x0171A0 patch: 0xC390
NOP SetPlayerArmedWeapon (67): offset: 0x015530 patch: 0xC390
NOP SetSpawnInfo (68): offset: 0x014640 patch: 0xC390
NOP SetPlayerTeam (69): offset: 0x015D60 patch: 0xC390
NOP PutPlayerInVehicle (70): offset: 0x015C50 patch: 0xC390
NOP RemovePlayerFromVehicle (71): offset: 0x0146E0 patch: 0xC390
NOP SetPlayerColor (72): offset: 0x015E50 patch: 0xC390
NOP DisplayGameText (73): offset: 0x015F40 patch: 0xC390
NOP ForceClassSelection (74): offset: 0x0147C0 patch: 0xC390
NOP AttachObjectToPlayer (75): offset: 0x018CE0 patch: 0xC390
NOP InitMenu (76): offset: 0x018EA0 patch: 0xC390
NOP ShowMenu (77): offset: 0x019160 patch: 0xC390
NOP HideMenu (78): offset: 0x019210 patch: 0xC390
NOP CreateExplosion (79): offset: 0x018350 patch: 0xC390
NOP ShowPlayerNameTagForPlayer (80): offset: 0x018460 patch: 0xC390
NOP AttachCameraToObject (81): offset: 0x016640 patch: 0xC390
NOP InterpolateCamera (82): offset: 0x016740 patch: 0xC390
NOP ClickTextDraw (83): offset: 0x019C20 patch: 0xC390
NOP SetObjectMaterial (84): offset: 0x017CE0 patch: 0xC390
NOP GangZoneStopFlash (85): offset: 0x0198E0 patch: 0xC390
NOP ApplyAnimation (86): offset: 0x016FA0 patch: 0xC390
NOP ClearAnimations (87): offset: 0x014C70 patch: 0xC390
NOP SetPlayerSpecialAction (88): offset: 0x014D80 patch: 0xC390
NOP SetPlayerFightingStyle (89): offset: 0x014E30 patch: 0xC390
NOP SetPlayerVelocity (90): offset: 0x014F30 patch: 0xC390
NOP SetVehicleVelocity (91): offset: 0x015030 patch: 0xC390
NOP SetPlayerDrunkVisuals (92): offset: 0x015330 patch: 0xC390
NOP ClientMessage (93): offset: 0x00C050 patch: 0xC390
NOP SetWorldTime (94): offset: 0x00BFB0 patch: 0xC390
NOP CreatePickup (95): offset: 0x00C140 patch: 0xC390
NOP SCMEvent (96): offset: 0x00C340 patch: 0xC390
NOP SetVehicleTireStatus (98): offset: 0x015250 patch: 0xC390
NOP MoveObject (99): offset: 0x018540 patch: 0xC390
NOP Chat (101): offset: 0x00EEA0 patch: 0xC390
NOP SrvNetStats (102): offset: 0x00B7A0 patch: 0xC390
NOP ClientCheck (103): offset: 0x00EAF0 patch: 0xC390
NOP EnableStuntBonusForPlayer (104): offset: 0x014440 patch: 0xC390
NOP TextDrawSetString (105): offset: 0x019540 patch: 0xC390
NOP DamageVehicle (106): offset: 0x00E240 patch: 0xC390
NOP SetCheckpoint (107): offset: 0x00D220 patch: 0xC390
NOP GangZoneCreate (108): offset: 0x019650 patch: 0xC390
NOP UNKNOWN: offset: 0x0151A0 patch: 0xC390
NOP PlayCrimeReport (112): offset: 0x015720 patch: 0xC390
NOP SetPlayerAttachedObject (113): offset: 0x0155E0 patch: 0xC390
NOP EditAttachedObject (116): offset: 0x00E860 patch: 0xC390
NOP EditObject (117): offset: 0x00E920 patch: 0xC390
NOP GangZoneDestroy (120): offset: 0x019770 patch: 0xC390
NOP GangZoneFlash (121): offset: 0x019820 patch: 0xC390
NOP StopObject (122): offset: 0x0186F0 patch: 0xC390
NOP SetNumberPlate (123): offset: 0x018870 patch: 0xC390
NOP TogglePlayerSpectating (124): offset: 0x018990 patch: 0xC390
NOP UNKNOWN: offset: 0x0147B0 patch: 0xC390
NOP PlayerSpectatePlayer (126): offset: 0x018A40 patch: 0xC390
NOP PlayerSpectateVehicle (127): offset: 0x018B20 patch: 0xC390
NOP RequestClass (128): offset: 0x00D080 patch: 0xC390
NOP RequestSpawn (129): offset: 0x00D150 patch: 0xC390
NOP UNKNOWN: offset: 0x00D5F0 patch: 0xC390
NOP SetPlayerWantedLevel (133): offset: 0x0192C0 patch: 0xC390
NOP ShowTextDraw (134): offset: 0x019360 patch: 0xC390
NOP TextDrawHideForPlayer (135): offset: 0x019490 patch: 0xC390
NOP ServerJoin (137): offset: 0x00CDA0 patch: 0xC390
NOP ServerQuit (138): offset: 0x00CF20 patch: 0xC390
NOP InitGame (139): offset: 0x00D710 patch: 0xC390
NOP RemovePlayerMapIcon (144): offset: 0x016F00 patch: 0xC390
NOP SetPlayerAmmo (145): offset: 0x017250 patch: 0xC390
NOP SetPlayerGravity (146): offset: 0x017310 patch: 0xC390
NOP SetVehicleHealth (147): offset: 0x0173B0 patch: 0xC390
NOP AttachTrailerToVehicle (148): offset: 0x017490 patch: 0xC390
NOP DetachTrailerFromVehicle (149): offset: 0x0175D0 patch: 0xC390
NOP SetPlayerDrunkHandling (150): offset: 0x0153E0 patch: 0xC390
NOP DestroyPickups (151): offset: 0x00C2A0 patch: 0xC390
NOP SetWeather (152): offset: 0x00C430 patch: 0xC390
NOP SetPlayerSkin (153): offset: 0x015860 patch: 0xC390
NOP ExitVehicle (154): offset: 0x00E770 patch: 0xC390
NOP UpdateScoresPingsIPs (155): offset: 0x00D490 patch: 0xC390
NOP SetPlayerInterior (156): offset: 0x016050 patch: 0xC390
NOP SetPlayerCameraPos (157): offset: 0x0160F0 patch: 0xC390
NOP SetPlayerCameraLookAt (158): offset: 0x0161C0 patch: 0xC390
NOP SetVehiclePos (159): offset: 0x0162C0 patch: 0xC390
NOP SetVehicleZAngle (160): offset: 0x0163D0 patch: 0xC390
NOP SetVehicleParamsForPlayer (161): offset: 0x0164B0 patch: 0xC390
NOP SetCameraBehindPlayer (162): offset: 0x014770 patch: 0xC390
NOP WorldPlayerRemove (163): offset: 0x00DEA0 patch: 0xC390
NOP WorldVehicleAdd (164): offset: 0x00B850 patch: 0xC390
NOP WorldVehicleRemove (165): offset: 0x00DF70 patch: 0xC390
NOP WorldPlayerDeath (166): offset: 0x00DDE0 patch: 0xC390
NOP UNKNOWN: offset: 0x0144D0 patch: 0xC390
NOP UNKNOWN: offset: 0x0187B0 patch: 0xC390
NOP UNKNOWN: offset: 0x00BC00 patch: 0xC390
NOP UNKNOWN: offset: 0x00BC90 patch: 0xC390
NOP UNKNOWN: offset: 0x00EDF0 patch: 0xC390
NOP UNKNOWN: offset: 0x019D20 patch: 0xC390
NOP UNKNOWN: offset: 0x019F00 patch: 0xC390
NOP UNKNOWN: offset: 0x019FC0 patch: 0xC390
NOP UNKNOWN: offset: 0x01A0A0 patch: 0xC390
NOP UNKNOWN: offset: 0x01A1B0 patch: 0xC390

#shamelessdoublepost
 

rottentwinkie

Moderator
Moderator
Joined
Apr 4, 2014
Messages
608
Reaction score
1
ramez link said:
Unknown opcode 0B2E.(0B2E: 0@ = read_samp_memory offset 0x15C50 size 2)

If you've downloaded SAMPFUNCS;
- open folder "SB data" in the package
- drag all of them to C:\Program Files\Sanny Builder 3\data\sa (replaces the old file)
 

ramez

Active member
Joined
Jun 11, 2015
Messages
120
Reaction score
0
Location
GB
0x688 link said:
cuz sprgfld told me it's one of the worst kind of cleo nop patches here the raw addresses:

NOP SetPlayerName (11): offset: 0x01A4F0 patch: 0xC390
NOP SetPlayerPos (12): offset: 0x015970 patch: 0xC390
NOP SetPlayerPosFindZ (13): offset: 0x015A90 patch: 0xC390
NOP SetPlayerHealth (14): offset: 0x015BA0 patch: 0xC390
NOP TogglePlayerControllable (15): offset: 0x0168E0 patch: 0xC390
NOP PlaySound (16): offset: 0x016980 patch: 0xC390
NOP SetPlayerWorldBounds (17): offset: 0x016A60 patch: 0xC390
NOP GivePlayerMoney (18): offset: 0x016B50 patch: 0xC390
NOP SetPlayerFacingAngle (19): offset: 0x016BF0 patch: 0xC390
NOP ResetPlayerMoney (20): offset: 0x014780 patch: 0xC390
NOP ResetPlayerWeapons (21): offset: 0x014790 patch: 0xC390
NOP GivePlayerWeapon (22): offset: 0x016C90 patch: 0xC390
NOP SetVehicleParamsEx (24): offset: 0x00E370 patch: 0xC390
NOP EnterVehicle (26): offset: 0x00E650 patch: 0xC390
NOP EnterEditObject (27): offset: 0x00BA90 patch: 0xC390
NOP CancelEdit (28): offset: 0x00BB50 patch: 0xC390
NOP SetPlayerTime (29): offset: 0x00C4E0 patch: 0xC390
NOP ToggleClock (30): offset: 0x00C5C0 patch: 0xC390
NOP WorldPlayerAdd (32): offset: 0x00DBB0 patch: 0xC390
NOP SetPlayerShopName (33): offset: 0x014540 patch: 0xC390
NOP SetPlayerSkillLevel (34): offset: 0x00C6A0 patch: 0xC390
NOP SetPlayerDrunkLevel (35): offset: 0x015490 patch: 0xC390
NOP Create3DTextLabel (36): offset: 0x00C7D0 patch: 0xC390
NOP DisableCheckpoint (37): offset: 0x00B780 patch: 0xC390
NOP SetRaceCheckpoint (38): offset: 0x00D330 patch: 0xC390
NOP DisableRaceCheckpoint (39): offset: 0x00B790 patch: 0xC390
NOP GameModeRestart (40): offset: 0x00B830 patch: 0xC390
NOP PlayAudioStream (41): offset: 0x019990 patch: 0xC390
NOP StopAudioStream (42): offset: 0x0147E0 patch: 0xC390
NOP RemoveBuildingForPlayer (43): offset: 0x019B00 patch: 0xC390
NOP CreateObject (44): offset: 0x017980 patch: 0xC390
NOP SetObjectPos (45): offset: 0x018050 patch: 0xC390
NOP SetObjectRot (46): offset: 0x018160 patch: 0xC390
NOP DestroyObject (47): offset: 0x018260 patch: 0xC390
NOP DeathMessage (55): offset: 0x01A290 patch: 0xC390
NOP SetPlayerMapIcon (56): offset: 0x016DE0 patch: 0xC390
NOP RemoveVehicleComponent (57): offset: 0x018C00 patch: 0xC390
NOP Update3DTextLabel (58): offset: 0x00C980 patch: 0xC390
NOP ChatBubble (59): offset: 0x00CA40 patch: 0xC390
NOP UpdateSystemTime (60): offset: 0x00CFE0 patch: 0xC390
NOP ShowDialog (61): offset: 0x00CBB0 patch: 0xC390
NOP DestroyPickup (63): offset: 0x00C200 patch: 0xC390
NOP WeaponPickupDestroy (64): offset: 0x016D50 patch: 0xC390
NOP LinkVehicleToInterior (65): offset: 0x016580 patch: 0xC390
NOP SetPlayerArmour (66): offset: 0x0171A0 patch: 0xC390
NOP SetPlayerArmedWeapon (67): offset: 0x015530 patch: 0xC390
NOP SetSpawnInfo (68): offset: 0x014640 patch: 0xC390
NOP SetPlayerTeam (69): offset: 0x015D60 patch: 0xC390
NOP PutPlayerInVehicle (70): offset: 0x015C50 patch: 0xC390
NOP RemovePlayerFromVehicle (71): offset: 0x0146E0 patch: 0xC390
NOP SetPlayerColor (72): offset: 0x015E50 patch: 0xC390
NOP DisplayGameText (73): offset: 0x015F40 patch: 0xC390
NOP ForceClassSelection (74): offset: 0x0147C0 patch: 0xC390
NOP AttachObjectToPlayer (75): offset: 0x018CE0 patch: 0xC390
NOP InitMenu (76): offset: 0x018EA0 patch: 0xC390
NOP ShowMenu (77): offset: 0x019160 patch: 0xC390
NOP HideMenu (78): offset: 0x019210 patch: 0xC390
NOP CreateExplosion (79): offset: 0x018350 patch: 0xC390
NOP ShowPlayerNameTagForPlayer (80): offset: 0x018460 patch: 0xC390
NOP AttachCameraToObject (81): offset: 0x016640 patch: 0xC390
NOP InterpolateCamera (82): offset: 0x016740 patch: 0xC390
NOP ClickTextDraw (83): offset: 0x019C20 patch: 0xC390
NOP SetObjectMaterial (84): offset: 0x017CE0 patch: 0xC390
NOP GangZoneStopFlash (85): offset: 0x0198E0 patch: 0xC390
NOP ApplyAnimation (86): offset: 0x016FA0 patch: 0xC390
NOP ClearAnimations (87): offset: 0x014C70 patch: 0xC390
NOP SetPlayerSpecialAction (88): offset: 0x014D80 patch: 0xC390
NOP SetPlayerFightingStyle (89): offset: 0x014E30 patch: 0xC390
NOP SetPlayerVelocity (90): offset: 0x014F30 patch: 0xC390
NOP SetVehicleVelocity (91): offset: 0x015030 patch: 0xC390
NOP SetPlayerDrunkVisuals (92): offset: 0x015330 patch: 0xC390
NOP ClientMessage (93): offset: 0x00C050 patch: 0xC390
NOP SetWorldTime (94): offset: 0x00BFB0 patch: 0xC390
NOP CreatePickup (95): offset: 0x00C140 patch: 0xC390
NOP SCMEvent (96): offset: 0x00C340 patch: 0xC390
NOP SetVehicleTireStatus (98): offset: 0x015250 patch: 0xC390
NOP MoveObject (99): offset: 0x018540 patch: 0xC390
NOP Chat (101): offset: 0x00EEA0 patch: 0xC390
NOP SrvNetStats (102): offset: 0x00B7A0 patch: 0xC390
NOP ClientCheck (103): offset: 0x00EAF0 patch: 0xC390
NOP EnableStuntBonusForPlayer (104): offset: 0x014440 patch: 0xC390
NOP TextDrawSetString (105): offset: 0x019540 patch: 0xC390
NOP DamageVehicle (106): offset: 0x00E240 patch: 0xC390
NOP SetCheckpoint (107): offset: 0x00D220 patch: 0xC390
NOP GangZoneCreate (108): offset: 0x019650 patch: 0xC390
NOP UNKNOWN: offset: 0x0151A0 patch: 0xC390
NOP PlayCrimeReport (112): offset: 0x015720 patch: 0xC390
NOP SetPlayerAttachedObject (113): offset: 0x0155E0 patch: 0xC390
NOP EditAttachedObject (116): offset: 0x00E860 patch: 0xC390
NOP EditObject (117): offset: 0x00E920 patch: 0xC390
NOP GangZoneDestroy (120): offset: 0x019770 patch: 0xC390
NOP GangZoneFlash (121): offset: 0x019820 patch: 0xC390
NOP StopObject (122): offset: 0x0186F0 patch: 0xC390
NOP SetNumberPlate (123): offset: 0x018870 patch: 0xC390
NOP TogglePlayerSpectating (124): offset: 0x018990 patch: 0xC390
NOP UNKNOWN: offset: 0x0147B0 patch: 0xC390
NOP PlayerSpectatePlayer (126): offset: 0x018A40 patch: 0xC390
NOP PlayerSpectateVehicle (127): offset: 0x018B20 patch: 0xC390
NOP RequestClass (128): offset: 0x00D080 patch: 0xC390
NOP RequestSpawn (129): offset: 0x00D150 patch: 0xC390
NOP UNKNOWN: offset: 0x00D5F0 patch: 0xC390
NOP SetPlayerWantedLevel (133): offset: 0x0192C0 patch: 0xC390
NOP ShowTextDraw (134): offset: 0x019360 patch: 0xC390
NOP TextDrawHideForPlayer (135): offset: 0x019490 patch: 0xC390
NOP ServerJoin (137): offset: 0x00CDA0 patch: 0xC390
NOP ServerQuit (138): offset: 0x00CF20 patch: 0xC390
NOP InitGame (139): offset: 0x00D710 patch: 0xC390
NOP RemovePlayerMapIcon (144): offset: 0x016F00 patch: 0xC390
NOP SetPlayerAmmo (145): offset: 0x017250 patch: 0xC390
NOP SetPlayerGravity (146): offset: 0x017310 patch: 0xC390
NOP SetVehicleHealth (147): offset: 0x0173B0 patch: 0xC390
NOP AttachTrailerToVehicle (148): offset: 0x017490 patch: 0xC390
NOP DetachTrailerFromVehicle (149): offset: 0x0175D0 patch: 0xC390
NOP SetPlayerDrunkHandling (150): offset: 0x0153E0 patch: 0xC390
NOP DestroyPickups (151): offset: 0x00C2A0 patch: 0xC390
NOP SetWeather (152): offset: 0x00C430 patch: 0xC390
NOP SetPlayerSkin (153): offset: 0x015860 patch: 0xC390
NOP ExitVehicle (154): offset: 0x00E770 patch: 0xC390
NOP UpdateScoresPingsIPs (155): offset: 0x00D490 patch: 0xC390
NOP SetPlayerInterior (156): offset: 0x016050 patch: 0xC390
NOP SetPlayerCameraPos (157): offset: 0x0160F0 patch: 0xC390
NOP SetPlayerCameraLookAt (158): offset: 0x0161C0 patch: 0xC390
NOP SetVehiclePos (159): offset: 0x0162C0 patch: 0xC390
NOP SetVehicleZAngle (160): offset: 0x0163D0 patch: 0xC390
NOP SetVehicleParamsForPlayer (161): offset: 0x0164B0 patch: 0xC390
NOP SetCameraBehindPlayer (162): offset: 0x014770 patch: 0xC390
NOP WorldPlayerRemove (163): offset: 0x00DEA0 patch: 0xC390
NOP WorldVehicleAdd (164): offset: 0x00B850 patch: 0xC390
NOP WorldVehicleRemove (165): offset: 0x00DF70 patch: 0xC390
NOP WorldPlayerDeath (166): offset: 0x00DDE0 patch: 0xC390
NOP UNKNOWN: offset: 0x0144D0 patch: 0xC390
NOP UNKNOWN: offset: 0x0187B0 patch: 0xC390
NOP UNKNOWN: offset: 0x00BC00 patch: 0xC390
NOP UNKNOWN: offset: 0x00BC90 patch: 0xC390
NOP UNKNOWN: offset: 0x00EDF0 patch: 0xC390
NOP UNKNOWN: offset: 0x019D20 patch: 0xC390
NOP UNKNOWN: offset: 0x019F00 patch: 0xC390
NOP UNKNOWN: offset: 0x019FC0 patch: 0xC390
NOP UNKNOWN: offset: 0x01A0A0 patch: 0xC390
NOP UNKNOWN: offset: 0x01A1B0 patch: 0xC390

#shamelessdoublepost
TTThanks:)how did you know what i need?<3v
 

ramez

Active member
Joined
Jun 11, 2015
Messages
120
Reaction score
0
Location
GB
Special thanks for 0x688 and Flamez & springfield & Joey_ I will remember you all always thanks UG-BASE .thanks good guys for help
 
Status
Not open for further replies.
Top