[Plugin] YSF - kurta999's version

Quote:
Originally Posted by iFarbod
View Post
I Know it, when a player spectated by admins :

If player change his interior, Spectator must change it to. so if more than one admin spectate a player, another admins will not affected will the player change his vehicle, interior, virtual world
To be honest its your script fault as Konstantinos said, you can easily fix the interior / vehicle bug when spectating by updating it when player changes interior or enters a vehicle.

Here's a code I've done like 5 minutes ago, I might be missing something since I did not try to compile it.

https://gist.github.com/pds2k12/4d53c08b447d44e47d95
Reply

When I compile / include <YSF> I get all these errors:

I never have them if I don't include YSF.

C:\Users\Kyle\Desktop\Scripting - 0.3x\pawno\include\YSF.inc(357) : warning 201: redefinition of constant/macro (symbol "AddStaticVehicle")
C:\Users\Kyle\Desktop\Scripting - 0.3x\pawno\include\YSF.inc(363) : warning 201: redefinition of constant/macro (symbol "AddStaticVehicleEx")
C:\Users\Kyle\Desktop\Scripting - 0.3x\pawno\include\YSF.inc(369) : warning 201: redefinition of constant/macro (symbol "CreateVehicle")

Can you make it so it doesn't give debug messages when you hide the HUD:

SendRPC(playerid, 111, BS_UNSIGNEDCHAR, strval(params));
Reply

Quote:
Originally Posted by KyleSmith
View Post
When I compile / include <YSF> I get all these errors:

I never have them if I don't include YSF.

C:\Users\Kyle\Desktop\Scripting - 0.3x\pawno\include\YSF.inc(357) : warning 201: redefinition of constant/macro (symbol "AddStaticVehicle")
C:\Users\Kyle\Desktop\Scripting - 0.3x\pawno\include\YSF.inc(363) : warning 201: redefinition of constant/macro (symbol "AddStaticVehicleEx")
C:\Users\Kyle\Desktop\Scripting - 0.3x\pawno\include\YSF.inc(369) : warning 201: redefinition of constant/macro (symbol "CreateVehicle")

Can you make it so it doesn't give debug messages when you hide the HUD:

SendRPC(playerid, 111, BS_UNSIGNEDCHAR, strval(params));
Try this: http://pastebin.com/3XqM3qJ5

Original include doesn't hook correctly those functions ( it doesn't check if they were already hooked previously )
Reply

Thanks for this fix.
Reply

Quote:
Originally Posted by RaZVaN ^ xD
View Post
Try this: http://pastebin.com/3XqM3qJ5

Original include doesn't hook correctly those functions ( it doesn't check if they were already hooked previously )
Thanks

Quote:
Originally Posted by kurta999
View Post
Thanks for this fix, I NEVER used any hooks in pawn before
Can you remove the debug msg on hiding the HUD.

Also can you tell us how to find the numbers and what they do?

Example, this is the HUD one but what do others do and their IDs: SendRPC(playerid, 111, BS_UNSIGNEDCHAR, strval(params));
Reply

Debugging messages can't be removed. Because they are client side. and they are not shown be the plugin
Reply

Quote:
Originally Posted by KyleSmith
View Post
Thanks



Can you remove the debug msg on hiding the HUD.

Also can you tell us how to find the numbers and what they do?

Example, this is the HUD one but what do others do and their IDs: SendRPC(playerid, 111, BS_UNSIGNEDCHAR, strval(params));
I found this one time, it's not possible to remove the debug messages as they are included in the Client.
It also doesnt just hides the hud it toggles GTA:SA's Widescreen.
The Numbers doesnt matters everything above 0 will enable this function.
Reply

Excellent bro! Maybe will use these natives.
Reply

Great job, it's very very useful.
Reply

Can you add
pawn Code:
native SetVehicleSpawnPos(vehicleid, &Float:fX, &Float:fY, &Float:fZ);
? I find it useful.
Reply

Crashed on R5-3. While using Gang Zone functions.

But on R4 Not was crashed. I Use that functions for my gang zone wars.
Reply

Applying UsePlayerPedAnims() for a specific player, is that possible?
Reply

Impossible, sorry.

R6 released!

Changes:
- Added a lot of new/missing functions for classes, objects, vehicle, textdraws, etc..
- Added ability to send bullet data from pawn - I don't have documentation for parameters, so let's trying
- Some fixes for per-player gang zones.

You can get it from https://github.com/kurta999/YSF/releases/tag/R6

New functions:

pawn Code:
native GetAvailableClasses();
native GetPlayerClass(classid, &teamid, &modelid, &Float:spawn_x, &Float:spawn_y, &Float:spawn_z, &Float:z_angle, &weapon1, &weapon1_ammo, &weapon2, &weapon2_ammo,& weapon3, &weapon3_ammo);
native EditPlayerClass(classid, teamid, modelid, Float:spawn_x, Float:spawn_y, Float:spawn_z, Float:z_angle, weapon1, weapon1_ammo, weapon2, weapon2_ammo, weapon3, weapon3_ammo);
native GetActiveTimers();

native SendBulletData(sender, hitid, hittype, Float:fHitOriginX, Float:fHitOriginY, Float:fHitOriginZ, Float:fHitTargetX, Float:fHitTargetY, Float:fHitTargetZ, Float:fCenterOfHitX, Float:fCenterOfHitY, Float:fCenterOfHitZ);

native Float:SetObjectMoveSpeed(objectid, Float:fSpeed);
native Float:GetObjectMoveSpeed(objectid);
native GetObjectTarget(objectid, &Float:fX, &Float:fY, &Float:fZ);

native Float:SetPlayerObjectMoveSpeed(playerid, objectid, Float:fSpeed);
native Float:GetPlayerObjectMoveSpeed(playerid, objectid);
native Float:GetPlayerObjectTarget(playerid, objectid, &Float:fX, &Float:fY, &Float:fZ);

native SetVehicleOccupiedTick(vehicleid, ticks);

native IsGangZoneFlashingForPlayer(playerid, zoneid);
native IsPlayerGangZoneFlashing(playerid, zoneid);

native TextDrawIsSelectable(textdrawid);
native PlayerTextDrawIsSelectable(playerid, PlayerText:textdrawid);


native IsObjectMaterialSlotUsed(objectid, materialindex); // Return values: 1 = material, 2 = material text
native GetObjectMaterial(objectid, materialindex, &modelid, txdname[], txdnamelen = sizeof(txdname), texturename[], texturenamelen = sizeof(txdnamelen), &materialcoor);
native GetObjectMaterialText(objectid, materialindex, text[], textlen= sizeof(text), &materialsize, fontface[], fontfacelen = sizeof(fontface), &fontsize, &bold, &fontcolor, &backcolor, &textalignment);

native IsPlayerObjectMaterialSlotUsed(playerid, objectid, materialindex); // Return values: 1 = material, 2 = material text
native GetPlayerObjectMaterial(playerid, objectid, materialindex, &modelid, txdname[], txdnamelen = sizeof(txdname), texturename[], texturenamelen = sizeof(txdnamelen), &materialcolor);
native GetPlayerObjectMaterialText(playerid, objectid, materialindex, text[], textlen= sizeof(text), &materialsize, fontface[], fontfacelen = sizeof(fontface), &fontsize, &bold, &fontcolor, &backcolor, &textalignment);
Now, my future plan is document a lot of new natives which I added in YSF.
Reply

There is a typo 'GetAviableClasses'.

Will SendBulletData call OnPlayerTakeDamage?

Oh by the way, good job!
Reply

Honestly, I don't know. I tested it once on NPC, npc shot and I leaved it away.
Reply

Woha, SendBulletData is something awesome. Awesome job man.

native GetAviableClasses(); would be native GetAvailableClasses();
Reply

Quote:
Originally Posted by iZN
View Post
Woha, SendBulletData is something awesome. Awesome job man.

native GetAviableClasses(); would be native GetAvailableClasses();
Fixed, just re-download.
Reply

Good job! Impressive. I'll give it a try.
Reply

Does crashes with GMX and gang zone functions fixed?

I must use YSF for my gang wars, not this tutorial : https://sampforum.blast.hk/showthread.php?tid=276352

After a GMX , (/rcon gmx)

Code:
--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x00501E4A Module: (YSF.DLL)



Registers:

EAX: 0x00000000	EBX: 0x00000000	ECX: 0x00000001	EDX: 0x00000000

ESI: 0x00C8FF80	EDI: 0x00000039	EBP: 0x00000000	ESP: 0x0018F990

EFLAGS: 0x00010206



Stack:

+0000: 0xD9C0B912   0x02021838   0x03ADDA2C   0x03AD4A28

+0010: 0x00000039   0x007F0001   0xC2020100   0x00000010

+0020: 0x00000800   0x00000000   0x0018F9BD   0x25003901

+0030: 0xF644688E   0x0AC4FAD8   0xB8448627   0x00C4E186

+0040: 0x0080FFC8   0x00000000   0x00000000   0x00000000

+0050: 0x00000000   0x00000000   0x00000000   0x00000000

+0060: 0x00000000   0x00000000   0x00000000   0x00000000

+0070: 0x00000000   0x00000000   0x00000000   0x00000000

+0080: 0x00000000   0x00000000   0x00000000   0x00000000

+0090: 0x00000000   0x00000000   0x00000000   0x00000000

+00A0: 0x00000000   0x00000000   0x00000000   0x00000000

+00B0: 0x00000000   0x00000000   0x00000000   0x00000000

+00C0: 0x00000000   0x00000000   0x00000000   0x00000000

+00D0: 0x451B0101   0x0018FCB0   0x004A65BB   0xFFFFFFFF

+00E0: 0x0018FAC4   0x0018FAC4   0x00470865   0x00369780

+00F0: 0x00000000   0xFAF0CEFF   0x0018FA8C   0x20657355

+0100: 0x7865742F   0x6F742074   0x6F687320   0x68742077

+0110: 0x64452065   0x6F697469   0xD9C0B90A   0x0018FCB0

+0120: 0x0050C0BB   0x00000000   0x00508EBB   0x00000000

+0130: 0xD9C0B922   0x0018FCB0   0x0050C0BB   0x00000000



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x66020000 - 0x6605F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x719F0000 - 0x71A3D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x003B0000 - 0x003BC000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x73900000 - 0x7390E000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x00500000 - 0x005B2000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x627B0000 - 0x62835000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x621F0000 - 0x622C2000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x773EDFC4 Module: (ntdll.dll)



Registers:

EAX: 0x003DFFF8	EBX: 0x003E0000	ECX: 0x0018FBEC	EDX: 0x00000012

ESI: 0x00360000	EDI: 0x00000000	EBP: 0x0018EEA8	ESP: 0x0018EE98

EFLAGS: 0x00010246



Stack:

+0000: 0x003E0000   0x004B8778   0x0018FCB0   0x00000000

+0010: 0x0018EEBC   0x74E414DD   0x00360000   0x00000000

+0020: 0x003E0000   0x0018EEF8   0x00494311   0x00360000

+0030: 0x00000000   0x003E0000   0x004B8778   0xFFFFFFFF

+0040: 0x0018FCB0   0x5C32336D   0x0018EED0   0x0018E8F0

+0050: 0x0018EF50   0x00498708   0x004B2EA0   0xFFFFFFFF

+0060: 0x0018FCBC   0x0044E0D9   0x003E0000   0x0049EAF7

+0070: 0x004B8778   0xFFFFFFFF   0x0018EF20   0x004B8770

+0080: 0x0018FCB0   0x0018FCBC   0x0018EF60   0x0049E298

+0090: 0x004A59E0   0x0018FCB0   0x00000103   0x19930520

+00A0: 0x004B8778   0x00000000   0xFFFFFFFF   0x00000000

+00B0: 0x0018EF34   0x0018E8F0   0x0018EFD0   0x00498708

+00C0: 0x004B70B8   0x00000001   0x0018EF80   0x0049EA06

+00D0: 0x0018FCB0   0x0018F0C8   0x004B8778   0xFFFFFFFF

+00E0: 0x00000000   0x00000000   0x0018EFB8   0x0049605C

+00F0: 0x0018F028   0x0018FCB0   0x0018F0D4   0x0018F0C8

+0100: 0x004B8778   0x00000000   0x00000000   0x00000000

+0110: 0x00000000   0x00000000   0x00000000   0x004B8778

+0120: 0x0018EFDC   0x77406AB9   0x0018F028   0x0018FCB0

+0130: 0x0018F0D4   0x0018F0C8   0x0018FCB0   0x77406AF4



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x66020000 - 0x6605F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x719F0000 - 0x71A3D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x003B0000 - 0x003BC000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x73900000 - 0x7390E000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x00500000 - 0x005B2000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x627B0000 - 0x62835000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x621F0000 - 0x622C2000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x01EB1E4A Module: (YSF.DLL)



Registers:

EAX: 0x00000000	EBX: 0x00000000	ECX: 0x00000001	EDX: 0x00000000

ESI: 0x00C8FF80	EDI: 0x00000039	EBP: 0x00000000	ESP: 0x0018F990

EFLAGS: 0x00010206



Stack:

+0000: 0xA041C3B3   0x023E1838   0x03B5D7D4   0x03B549B0

+0010: 0x00000039   0x007F0001   0xE2CB0100   0x00000010

+0020: 0x00000800   0x00000000   0x0018F9BD   0x25003901

+0030: 0xF644688E   0x0AC4FAD8   0xB8448627   0x00C4E186

+0040: 0x0080FFC8   0x00000000   0x00000000   0x00000000

+0050: 0x00000000   0x00000000   0x00000000   0x00000000

+0060: 0x00000000   0x00000000   0x00000000   0x00000000

+0070: 0x00000000   0x00000000   0x00000000   0x00000000

+0080: 0x00000000   0x00000000   0x00000000   0x00000000

+0090: 0x00000000   0x00000000   0x00000000   0x00000000

+00A0: 0x00000000   0x00000000   0x00000000   0x00000000

+00B0: 0x00000000   0x00000000   0x00000000   0x00000000

+00C0: 0x00000000   0x00000000   0x00000000   0x00000000

+00D0: 0x451B0101   0x0018FCB0   0x004A65BB   0xFFFFFFFF

+00E0: 0x0018FAC4   0x0018FAC4   0x00470865   0x01FA9780

+00F0: 0x00000000   0xFAF0CEFF   0x0018FA8C   0x20657355

+0100: 0x7865742F   0x6F742074   0x6F687320   0x68742077

+0110: 0x64452065   0x6F697469   0xA041C3AB   0x0018FCB0

+0120: 0x01EBC0BB   0x00000000   0x01EB8EBB   0x00000000

+0130: 0xA041C383   0x0018FCB0   0x01EBC0BB   0x00000000



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x629D0000 - 0x62A1D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x00320000 - 0x0032C000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x01EB0000 - 0x01F62000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x621F0000 - 0x622C2000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x773EDFC4 Module: (ntdll.dll)



Registers:

EAX: 0x01F7FFF8	EBX: 0x01F80000	ECX: 0x0018FBEC	EDX: 0x00000012

ESI: 0x01FA0000	EDI: 0x00000000	EBP: 0x0018EEA8	ESP: 0x0018EE98

EFLAGS: 0x00010246



Stack:

+0000: 0x01F80000   0x004B8778   0x0018FCB0   0x00000000

+0010: 0x0018EEBC   0x74E414DD   0x01FA0000   0x00000000

+0020: 0x01F80000   0x0018EEF8   0x00494311   0x01FA0000

+0030: 0x00000000   0x01F80000   0x004B8778   0xFFFFFFFF

+0040: 0x0018FCB0   0x5C32336D   0x0018EED0   0x0018E8F0

+0050: 0x0018EF50   0x00498708   0x004B2EA0   0xFFFFFFFF

+0060: 0x0018FCBC   0x0044E0D9   0x01F80000   0x0049EAF7

+0070: 0x004B8778   0xFFFFFFFF   0x0018EF20   0x004B8770

+0080: 0x0018FCB0   0x0018FCBC   0x0018EF60   0x0049E298

+0090: 0x004A59E0   0x0018FCB0   0x00000103   0x19930520

+00A0: 0x004B8778   0x00000000   0xFFFFFFFF   0x00000000

+00B0: 0x0018EF34   0x0018E8F0   0x0018EFD0   0x00498708

+00C0: 0x004B70B8   0x00000001   0x0018EF80   0x0049EA06

+00D0: 0x0018FCB0   0x0018F0C8   0x004B8778   0xFFFFFFFF

+00E0: 0x00000000   0x00000000   0x0018EFB8   0x0049605C

+00F0: 0x0018F028   0x0018FCB0   0x0018F0D4   0x0018F0C8

+0100: 0x004B8778   0x00000000   0x00000000   0x00000000

+0110: 0x00000000   0x00000000   0x00000000   0x004B8778

+0120: 0x0018EFDC   0x77406AB9   0x0018F028   0x0018FCB0

+0130: 0x0018F0D4   0x0018F0C8   0x0018FCB0   0x77406AF4



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x629D0000 - 0x62A1D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x00320000 - 0x0032C000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x01EB0000 - 0x01F62000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x621F0000 - 0x622C2000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x02AE1E4A Module: (YSF.DLL)



Registers:

EAX: 0x00000000	EBX: 0x00000000	ECX: 0x00000001	EDX: 0x00000000

ESI: 0x00C8FF80	EDI: 0x00000039	EBP: 0x00000000	ESP: 0x0018F990

EFLAGS: 0x00010206



Stack:

+0000: 0x187C3C11   0x01F81838   0x03C3D7D4   0x03C349B0

+0010: 0x00000039   0x007F0001   0xED540100   0x00000010

+0020: 0x00000800   0x00000000   0x0018F9BD   0x25003901

+0030: 0xF644688E   0x0AC4FAD8   0xB8448627   0x00C4E186

+0040: 0x0080FFC8   0x00000000   0x00000000   0x00000000

+0050: 0x00000000   0x00000000   0x00000000   0x00000000

+0060: 0x00000000   0x00000000   0x00000000   0x00000000

+0070: 0x00000000   0x00000000   0x00000000   0x00000000

+0080: 0x00000000   0x00000000   0x00000000   0x00000000

+0090: 0x00000000   0x00000000   0x00000000   0x00000000

+00A0: 0x00000000   0x00000000   0x00000000   0x00000000

+00B0: 0x00000000   0x00000000   0x00000000   0x00000000

+00C0: 0x00000000   0x00000000   0x00000000   0x00000000

+00D0: 0x451B0101   0x0018FCB0   0x004A65BB   0xFFFFFFFF

+00E0: 0x0018FAC4   0x0018FAC4   0x00470865   0x02009780

+00F0: 0x00000000   0xFAF0CEFF   0x0018FA8C   0x20657355

+0100: 0x7865742F   0x6F742074   0x6F687320   0x68742077

+0110: 0x64452065   0x6F697469   0x187C3C09   0x0018FCB0

+0120: 0x02AEC0BB   0x00000000   0x02AE8EBB   0x00000000

+0130: 0x187C3C21   0x0018FCB0   0x02AEC0BB   0x00000000



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x629D0000 - 0x62A1D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x003F0000 - 0x003FC000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02AE0000 - 0x02B92000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x621F0000 - 0x622C2000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x773EDFC4 Module: (ntdll.dll)



Registers:

EAX: 0x028BFFF8	EBX: 0x028C0000	ECX: 0x0018FBEC	EDX: 0x00000012

ESI: 0x02000000	EDI: 0x00000000	EBP: 0x0018EEA8	ESP: 0x0018EE98

EFLAGS: 0x00010246



Stack:

+0000: 0x028C0000   0x004B8778   0x0018FCB0   0x00000000

+0010: 0x0018EEBC   0x74E414DD   0x02000000   0x00000000

+0020: 0x028C0000   0x0018EEF8   0x00494311   0x02000000

+0030: 0x00000000   0x028C0000   0x004B8778   0xFFFFFFFF

+0040: 0x0018FCB0   0x5C32336D   0x0018EED0   0x0018E8F0

+0050: 0x0018EF50   0x00498708   0x004B2EA0   0xFFFFFFFF

+0060: 0x0018FCBC   0x0044E0D9   0x028C0000   0x0049EAF7

+0070: 0x004B8778   0xFFFFFFFF   0x0018EF20   0x004B8770

+0080: 0x0018FCB0   0x0018FCBC   0x0018EF60   0x0049E298

+0090: 0x004A59E0   0x0018FCB0   0x00000103   0x19930520

+00A0: 0x004B8778   0x00000000   0xFFFFFFFF   0x00000000

+00B0: 0x0018EF34   0x0018E8F0   0x0018EFD0   0x00498708

+00C0: 0x004B70B8   0x00000001   0x0018EF80   0x0049EA06

+00D0: 0x0018FCB0   0x0018F0C8   0x004B8778   0xFFFFFFFF

+00E0: 0x00000000   0x00000000   0x0018EFB8   0x0049605C

+00F0: 0x0018F028   0x0018FCB0   0x0018F0D4   0x0018F0C8

+0100: 0x004B8778   0x00000000   0x00000000   0x00000000

+0110: 0x00000000   0x00000000   0x00000000   0x004B8778

+0120: 0x0018EFDC   0x77406AB9   0x0018F028   0x0018FCB0

+0130: 0x0018F0D4   0x0018F0C8   0x0018FCB0   0x77406AF4



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x629D0000 - 0x62A1D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x003F0000 - 0x003FC000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02AE0000 - 0x02B92000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x621F0000 - 0x622C2000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x02BA1E4A Module: (YSF.DLL)



Registers:

EAX: 0x00000000	EBX: 0x00000000	ECX: 0x00000001	EDX: 0x00000000

ESI: 0x00C8FF80	EDI: 0x00000039	EBP: 0x00000000	ESP: 0x0018F990

EFLAGS: 0x00010206



Stack:

+0000: 0xB54DDD6C   0x01F51838   0x03B2DA2C   0x03B24A28

+0010: 0x00000039   0x007F0001   0xD9540100   0x00000010

+0020: 0x00000800   0x00000000   0x0018F9BD   0x25003901

+0030: 0xF644688E   0x0AC4FAD8   0xB8448627   0x00C4E186

+0040: 0x0080FFC8   0x00000000   0x00000000   0x00000000

+0050: 0x00000000   0x00000000   0x00000000   0x00000000

+0060: 0x00000000   0x00000000   0x00000000   0x00000000

+0070: 0x00000000   0x00000000   0x00000000   0x00000000

+0080: 0x00000000   0x00000000   0x00000000   0x00000000

+0090: 0x00000000   0x00000000   0x00000000   0x00000000

+00A0: 0x00000000   0x00000000   0x00000000   0x00000000

+00B0: 0x00000000   0x00000000   0x00000000   0x00000000

+00C0: 0x00000000   0x00000000   0x00000000   0x00000000

+00D0: 0x451B0101   0x0018FCB0   0x004A65BB   0xFFFFFFFF

+00E0: 0x0018FAC4   0x0018FAC4   0x00470865   0x02009780

+00F0: 0x00000000   0xFAF0CEFF   0x0018FA8C   0x20657355

+0100: 0x7865742F   0x6F742074   0x6F687320   0x68742077

+0110: 0x64452065   0x6F697469   0xB54DDD74   0x0018FCB0

+0120: 0x02BAC0BB   0x00000000   0x02BA8EBB   0x00000000

+0130: 0xB54DDD5C   0x0018FCB0   0x02BAC0BB   0x00000000



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x66020000 - 0x6605F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x719F0000 - 0x71A3D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x003F0000 - 0x003FC000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x73900000 - 0x7390E000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02BA0000 - 0x02C52000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x627B0000 - 0x62835000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x62330000 - 0x62402000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x773EDFC4 Module: (ntdll.dll)



Registers:

EAX: 0x028DFFF8	EBX: 0x028E0000	ECX: 0x0018FBEC	EDX: 0x00000012

ESI: 0x02000000	EDI: 0x00000000	EBP: 0x0018EEA8	ESP: 0x0018EE98

EFLAGS: 0x00010246



Stack:

+0000: 0x028E0000   0x004B8778   0x0018FCB0   0x00000000

+0010: 0x0018EEBC   0x74E414DD   0x02000000   0x00000000

+0020: 0x028E0000   0x0018EEF8   0x00494311   0x02000000

+0030: 0x00000000   0x028E0000   0x004B8778   0xFFFFFFFF

+0040: 0x0018FCB0   0x5C32336D   0x0018EED0   0x0018E8F0

+0050: 0x0018EF50   0x00498708   0x004B2EA0   0xFFFFFFFF

+0060: 0x0018FCBC   0x0044E0D9   0x028E0000   0x0049EAF7

+0070: 0x004B8778   0xFFFFFFFF   0x0018EF20   0x004B8770

+0080: 0x0018FCB0   0x0018FCBC   0x0018EF60   0x0049E298

+0090: 0x004A59E0   0x0018FCB0   0x00000103   0x19930520

+00A0: 0x004B8778   0x00000000   0xFFFFFFFF   0x00000000

+00B0: 0x0018EF34   0x0018E8F0   0x0018EFD0   0x00498708

+00C0: 0x004B70B8   0x00000001   0x0018EF80   0x0049EA06

+00D0: 0x0018FCB0   0x0018F0C8   0x004B8778   0xFFFFFFFF

+00E0: 0x00000000   0x00000000   0x0018EFB8   0x0049605C

+00F0: 0x0018F028   0x0018FCB0   0x0018F0D4   0x0018F0C8

+0100: 0x004B8778   0x00000000   0x00000000   0x00000000

+0110: 0x00000000   0x00000000   0x00000000   0x004B8778

+0120: 0x0018EFDC   0x77406AB9   0x0018F028   0x0018FCB0

+0130: 0x0018F0D4   0x0018F0C8   0x0018FCB0   0x77406AF4



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x66020000 - 0x6605F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x719F0000 - 0x71A3D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x003F0000 - 0x003FC000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x73900000 - 0x7390E000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02BA0000 - 0x02C52000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x627B0000 - 0x62835000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x62330000 - 0x62402000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x02B61E4A Module: (YSF.DLL)



Registers:

EAX: 0x00000000	EBX: 0x00000000	ECX: 0x00000001	EDX: 0x00000000

ESI: 0x00C8FF80	EDI: 0x00000039	EBP: 0x00000000	ESP: 0x0018F990

EFLAGS: 0x00010206



Stack:

+0000: 0x9D99C2DD   0x021F1838   0x03BDDA2C   0x03BD4A28

+0010: 0x00000039   0x007F0001   0xC0BE0100   0x00000010

+0020: 0x00000800   0x00000000   0x0018F9BD   0x25003901

+0030: 0xF644688E   0x0AC4FAD8   0xB8448627   0x00C4E186

+0040: 0x0080FFC8   0x00000000   0x00000000   0x00000000

+0050: 0x00000000   0x00000000   0x00000000   0x00000000

+0060: 0x00000000   0x00000000   0x00000000   0x00000000

+0070: 0x00000000   0x00000000   0x00000000   0x00000000

+0080: 0x00000000   0x00000000   0x00000000   0x00000000

+0090: 0x00000000   0x00000000   0x00000000   0x00000000

+00A0: 0x00000000   0x00000000   0x00000000   0x00000000

+00B0: 0x00000000   0x00000000   0x00000000   0x00000000

+00C0: 0x00000000   0x00000000   0x00000000   0x00000000

+00D0: 0x451B0101   0x0018FCB0   0x004A65BB   0xFFFFFFFF

+00E0: 0x0018FAC4   0x0018FAC4   0x00470865   0x01E69780

+00F0: 0x00000000   0xFAF0CEFF   0x0018FA8C   0x20657355

+0100: 0x7865742F   0x6F742074   0x6F687320   0x68742077

+0110: 0x64452065   0x6F697469   0x9D99C2C5   0x0018FCB0

+0120: 0x02B6C0BB   0x00000000   0x02B68EBB   0x00000000

+0130: 0x9D99C2ED   0x0018FCB0   0x02B6C0BB   0x00000000



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x627F0000 - 0x6283D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x02690000 - 0x0269C000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02B60000 - 0x02C12000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x605C0000 - 0x60692000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x773EDFC4 Module: (ntdll.dll)



Registers:

EAX: 0x0272FFF8	EBX: 0x02730000	ECX: 0x0018FBEC	EDX: 0x00000012

ESI: 0x01E60000	EDI: 0x00000000	EBP: 0x0018EEA8	ESP: 0x0018EE98

EFLAGS: 0x00010246



Stack:

+0000: 0x02730000   0x004B8778   0x0018FCB0   0x00000000

+0010: 0x0018EEBC   0x74E414DD   0x01E60000   0x00000000

+0020: 0x02730000   0x0018EEF8   0x00494311   0x01E60000

+0030: 0x00000000   0x02730000   0x004B8778   0xFFFFFFFF

+0040: 0x0018FCB0   0x5C32336D   0x0018EED0   0x0018E8F0

+0050: 0x0018EF50   0x00498708   0x004B2EA0   0xFFFFFFFF

+0060: 0x0018FCBC   0x0044E0D9   0x02730000   0x0049EAF7

+0070: 0x004B8778   0xFFFFFFFF   0x0018EF20   0x004B8770

+0080: 0x0018FCB0   0x0018FCBC   0x0018EF60   0x0049E298

+0090: 0x004A59E0   0x0018FCB0   0x00000103   0x19930520

+00A0: 0x004B8778   0x00000000   0xFFFFFFFF   0x00000000

+00B0: 0x0018EF34   0x0018E8F0   0x0018EFD0   0x00498708

+00C0: 0x004B70B8   0x00000001   0x0018EF80   0x0049EA06

+00D0: 0x0018FCB0   0x0018F0C8   0x004B8778   0xFFFFFFFF

+00E0: 0x00000000   0x00000000   0x0018EFB8   0x0049605C

+00F0: 0x0018F028   0x0018FCB0   0x0018F0D4   0x0018F0C8

+0100: 0x004B8778   0x00000000   0x00000000   0x00000000

+0110: 0x00000000   0x00000000   0x00000000   0x004B8778

+0120: 0x0018EFDC   0x77406AB9   0x0018F028   0x0018FCB0

+0130: 0x0018F0D4   0x0018F0C8   0x0018FCB0   0x77406AF4



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x627F0000 - 0x6283D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x02690000 - 0x0269C000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02B60000 - 0x02C12000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x605C0000 - 0x60692000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x02C01E4A Module: (YSF.DLL)



Registers:

EAX: 0x00000000	EBX: 0x00000000	ECX: 0x00000001	EDX: 0x00000000

ESI: 0x00C8FF80	EDI: 0x00000039	EBP: 0x00000000	ESP: 0x0018F990

EFLAGS: 0x00010206



Stack:

+0000: 0x25DAFDC9   0x02041838   0x03B5DA2C   0x03B54A28

+0010: 0x00000039   0x007F0001   0xE8880100   0x00000010

+0020: 0x00000800   0x00000000   0x0018F9BD   0x25003901

+0030: 0xF644688E   0x0AC4FAD8   0xB8448627   0x00C4E186

+0040: 0x0080FFC8   0x00000000   0x00000000   0x00000000

+0050: 0x00000000   0x00000000   0x00000000   0x00000000

+0060: 0x00000000   0x00000000   0x00000000   0x00000000

+0070: 0x00000000   0x00000000   0x00000000   0x00000000

+0080: 0x00000000   0x00000000   0x00000000   0x00000000

+0090: 0x00000000   0x00000000   0x00000000   0x00000000

+00A0: 0x00000000   0x00000000   0x00000000   0x00000000

+00B0: 0x00000000   0x00000000   0x00000000   0x00000000

+00C0: 0x00000000   0x00000000   0x00000000   0x00000000

+00D0: 0x451B0101   0x0018FCB0   0x004A65BB   0xFFFFFFFF

+00E0: 0x0018FAC4   0x0018FAC4   0x00470865   0x02149780

+00F0: 0x00000000   0xFAF0CEFF   0x0018FA8C   0x20657355

+0100: 0x7865742F   0x6F742074   0x6F687320   0x68742077

+0110: 0x64452065   0x6F697469   0x25DAFDD1   0x0018FCB0

+0120: 0x02C0C0BB   0x00000000   0x02C08EBB   0x00000000

+0130: 0x25DAFDF9   0x0018FCB0   0x02C0C0BB   0x00000000



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x627F0000 - 0x6283D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x01E10000 - 0x01E1C000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02C00000 - 0x02CB2000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x605C0000 - 0x60692000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)



--------------------------

SA-MP Server: 0.3z-R2



Exception At Address: 0x773EDFC4 Module: (ntdll.dll)



Registers:

EAX: 0x029DFFF8	EBX: 0x029E0000	ECX: 0x0018FBEC	EDX: 0x00000012

ESI: 0x02140000	EDI: 0x00000000	EBP: 0x0018EEA8	ESP: 0x0018EE98

EFLAGS: 0x00010246



Stack:

+0000: 0x029E0000   0x004B8778   0x0018FCB0   0x00000000

+0010: 0x0018EEBC   0x74E414DD   0x02140000   0x00000000

+0020: 0x029E0000   0x0018EEF8   0x00494311   0x02140000

+0030: 0x00000000   0x029E0000   0x004B8778   0xFFFFFFFF

+0040: 0x0018FCB0   0x5C32336D   0x0018EED0   0x0018E8F0

+0050: 0x0018EF50   0x00498708   0x004B2EA0   0xFFFFFFFF

+0060: 0x0018FCBC   0x0044E0D9   0x029E0000   0x0049EAF7

+0070: 0x004B8778   0xFFFFFFFF   0x0018EF20   0x004B8770

+0080: 0x0018FCB0   0x0018FCBC   0x0018EF60   0x0049E298

+0090: 0x004A59E0   0x0018FCB0   0x00000103   0x19930520

+00A0: 0x004B8778   0x00000000   0xFFFFFFFF   0x00000000

+00B0: 0x0018EF34   0x0018E8F0   0x0018EFD0   0x00498708

+00C0: 0x004B70B8   0x00000001   0x0018EF80   0x0049EA06

+00D0: 0x0018FCB0   0x0018F0C8   0x004B8778   0xFFFFFFFF

+00E0: 0x00000000   0x00000000   0x0018EFB8   0x0049605C

+00F0: 0x0018F028   0x0018FCB0   0x0018F0D4   0x0018F0C8

+0100: 0x004B8778   0x00000000   0x00000000   0x00000000

+0110: 0x00000000   0x00000000   0x00000000   0x004B8778

+0120: 0x0018EFDC   0x77406AB9   0x0018F028   0x0018FCB0

+0130: 0x0018F0D4   0x0018F0C8   0x0018FCB0   0x77406AF4



--------------------------



Loaded Modules:

samp-server.exe	A: 0x00400000 - 0x004F5000	(C:\Users\i Farbod\Desktop\SAMP\samp-server.exe)

ntdll.dll	A: 0x773C0000 - 0x77540000	(C:\Windows\SysWOW64\ntdll.dll)

kernel32.dll	A: 0x74E30000 - 0x74F40000	(C:\Windows\syswow64\kernel32.dll)

KERNELBASE.dll	A: 0x754D0000 - 0x75517000	(C:\Windows\syswow64\KERNELBASE.dll)

SHELL32.dll	A: 0x75970000 - 0x765BA000	(C:\Windows\syswow64\SHELL32.dll)

msvcrt.dll	A: 0x74F40000 - 0x74FEC000	(C:\Windows\syswow64\msvcrt.dll)

SHLWAPI.dll	A: 0x75690000 - 0x756E7000	(C:\Windows\syswow64\SHLWAPI.dll)

GDI32.dll	A: 0x74D00000 - 0x74D90000	(C:\Windows\syswow64\GDI32.dll)

USER32.dll	A: 0x76670000 - 0x76770000	(C:\Windows\syswow64\USER32.dll)

ADVAPI32.dll	A: 0x75250000 - 0x752F0000	(C:\Windows\syswow64\ADVAPI32.dll)

sechost.dll	A: 0x752F0000 - 0x75309000	(C:\Windows\SysWOW64\sechost.dll)

RPCRT4.dll	A: 0x76800000 - 0x768F0000	(C:\Windows\syswow64\RPCRT4.dll)

SspiCli.dll	A: 0x74AA0000 - 0x74B00000	(C:\Windows\syswow64\SspiCli.dll)

CRYPTBASE.dll	A: 0x74A90000 - 0x74A9C000	(C:\Windows\syswow64\CRYPTBASE.dll)

LPK.dll	A: 0x74B60000 - 0x74B6A000	(C:\Windows\syswow64\LPK.dll)

USP10.dll	A: 0x755F0000 - 0x7568D000	(C:\Windows\syswow64\USP10.dll)

WSOCK32.dll	A: 0x73750000 - 0x73757000	(C:\Windows\system32\WSOCK32.dll)

WS2_32.dll	A: 0x75810000 - 0x75845000	(C:\Windows\syswow64\WS2_32.dll)

NSI.dll	A: 0x74B50000 - 0x74B56000	(C:\Windows\syswow64\NSI.dll)

WINMM.dll	A: 0x72E10000 - 0x72E42000	(C:\Windows\system32\WINMM.dll)

IMM32.DLL	A: 0x74DA0000 - 0x74E00000	(C:\Windows\system32\IMM32.DLL)

MSCTF.dll	A: 0x75520000 - 0x755EC000	(C:\Windows\syswow64\MSCTF.dll)

nvinit.dll	A: 0x748F0000 - 0x74928000	(C:\Windows\SysWOW64\nvinit.dll)

sscanf.DLL	A: 0x10000000 - 0x1000D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\sscanf.DLL)

MSVCR100.dll	A: 0x70D70000 - 0x70E2F000	(C:\Windows\system32\MSVCR100.dll)

streamer.dll	A: 0x71A00000 - 0x71A3F000	(C:\Users\i Farbod\Desktop\SAMP\plugins\streamer.dll)

MSVCP100.dll	A: 0x70E30000 - 0x70E99000	(C:\Windows\system32\MSVCP100.dll)

irc.dll	A: 0x627F0000 - 0x6283D000	(C:\Users\i Farbod\Desktop\SAMP\plugins\irc.dll)

Whirlpool.DLL	A: 0x01E10000 - 0x01E1C000	(C:\Users\i Farbod\Desktop\SAMP\plugins\Whirlpool.DLL)

MSVCR80.dll	A: 0x71810000 - 0x718AB000	(C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll)

*****.DLL	A: 0x738F0000 - 0x738FE000	(C:\Users\i Farbod\Desktop\SAMP\plugins\*****.DLL)

MSVCR90.dll	A: 0x737E0000 - 0x73883000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll)

MSVCP90.dll	A: 0x6A3C0000 - 0x6A44E000	(C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll)

YSF.DLL	A: 0x02C00000 - 0x02CB2000	(C:\Users\i Farbod\Desktop\SAMP\plugins\YSF.DLL)

MSVCP110.dll	A: 0x62380000 - 0x62405000	(C:\Windows\system32\MSVCP110.dll)

MSVCR110.dll	A: 0x605C0000 - 0x60692000	(C:\Windows\system32\MSVCR110.dll)

mswsock.dll	A: 0x71390000 - 0x713CC000	(C:\Windows\system32\mswsock.dll)

wshtcpip.dll	A: 0x732E0000 - 0x732E5000	(C:\Windows\System32\wshtcpip.dll)

NLAapi.dll	A: 0x72E70000 - 0x72E80000	(C:\Windows\system32\NLAapi.dll)

napinsp.dll	A: 0x72E60000 - 0x72E70000	(C:\Windows\system32\napinsp.dll)

pnrpnsp.dll	A: 0x72990000 - 0x729A2000	(C:\Windows\system32\pnrpnsp.dll)

DNSAPI.dll	A: 0x71330000 - 0x71374000	(C:\Windows\system32\DNSAPI.dll)

winrnr.dll	A: 0x72E50000 - 0x72E58000	(C:\Windows\System32\winrnr.dll)

wshbth.dll	A: 0x72D80000 - 0x72D8D000	(C:\Windows\system32\wshbth.dll)

IPHLPAPI.DLL	A: 0x732F0000 - 0x7330C000	(C:\Windows\system32\IPHLPAPI.DLL)

WINNSI.DLL	A: 0x73410000 - 0x73417000	(C:\Windows\system32\WINNSI.DLL)

rasadhlp.dll	A: 0x70D60000 - 0x70D66000	(C:\Windows\system32\rasadhlp.dll)
Reply

Quote:
Originally Posted by KyleSmith
View Post
There is a typo 'GetAviableClasses'.

Will SendBulletData call OnPlayerTakeDamage?

Oh by the way, good job!
Yes it will but it's not going to behave as you expect most of what you think you can do isn't going to work for instance spawning bullets anywhere it doesn't work that way. You need to specify a playerid to shoot from and a player to hit this is does automatically and will indeed call OnPlayerTakeDamage(). However when you spawn a bullet in this manner it will almost ALWAYS hit the player unless there is some sort of obstruction. Trying to use any other of the other possible ideas is simply going to yield poor / unwated results.

I was very disappointed with the limitations however it does make shooting NPCs 100 percent possible and functional to shoot other players with Lagcomp in fact this is the best way to do it. You can also put an NPC/player in the car and still use send bullet like a vehicle turret but it's really weird you will have to try it

@kurta999 - Just a question could you give a detailed explanation of how this plugin reacts to SAMP version changes?
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)