[Include] weapon-config.inc - Damage system with many features

Quote:
Originally Posted by kukboy
View Post
SetWeaponDamage(weaponid, damage_type, Float:amount, Float:...);

Can i use this in the gamemode under OnPlayerDamage?
No, you can't use this function in OnPlayerDamage. You need to call it before OnPlayerDamage.

However we could look at OnPlayerDamage.
public OnPlayerDamage(&playerid, &Float:amount, &issuerid, &weapon, &bodypart)
You could change the damage in OnPlayerDamage, this has the float value of "amount".
Reply

Quote:
Originally Posted by Jeroen52
View Post
No, you can't use this function in OnPlayerDamage. You need to call it before OnPlayerDamage.

However we could look at OnPlayerDamage.
public OnPlayerDamage(&playerid, &Float:amount, &issuerid, &weapon, &bodypart)
You could change the damage in OnPlayerDamage, this has the float value of "amount".
Code:
	switch (weaponid) {
		// The spas shotguns shoot 8 bullets, each inflicting 4.95 damage
		case WEAPON_SHOTGSPA: {
			bullets = amount / 4.950000286102294921875;

			if (8.0 - bullets < -0.05) {
				return WC_INVALID_DAMAGE;
			}
		}
What if we change the amounts of bullets
Reply

Quote:
Originally Posted by kukboy
View Post
Code:
	switch (weaponid) {
		// The spas shotguns shoot 8 bullets, each inflicting 4.95 damage
		case WEAPON_SHOTGSPA: {
			bullets = amount / 4.950000286102294921875;

			if (8.0 - bullets < -0.05) {
				return WC_INVALID_DAMAGE;
			}
		}
What if we change the amounts of bullets
I wouldn't edit that value if I were you.

The only things you should edit in weapon-config.inc are the following lines at the top of the file:

PHP Code:
// Print debug messages in the chat and server log
#if !defined WC_DEBUG
    #define WC_DEBUG false
#endif
// Print debug messages to the console but not the chat
#if !defined WC_DEBUG_SILENT
    #define WC_DEBUG_SILENT false
#endif
// Max number of rejected hits (GetRejectedHit)
#if !defined WC_MAX_REJECTED_HITS
    #define WC_MAX_REJECTED_HITS 15
#endif
// Max ranges for DAMAGE_TYPE_RANGE(_MULTIPLIER)
#if !defined WC_MAX_DAMAGE_RANGES
    #define WC_MAX_DAMAGE_RANGES 5
#endif
// The world a player has after the death animation finished until he respawns or enters class selection
#if !defined WC_DEATH_WORLD
    #define WC_DEATH_WORLD 0x00DEAD00
#endif
// The max number of entries in the damage feeds
#if !defined WC_FEED_HEIGHT
    #define WC_FEED_HEIGHT 5
#endif
// Use Incognito's streamer for custom vending machines
#if !defined WC_USE_STREAMER
    #define WC_USE_STREAMER false
#endif
// For SetWeaponName
#if !defined WC_MAX_WEAPON_NAME
    #define WC_MAX_WEAPON_NAME 21
#endif
// For modes that always have negative cash
#if !defined WC_CUSTOM_VENDING_MACHINES
    #define WC_CUSTOM_VENDING_MACHINES true
#endif 
Please read my previous posts once more and the documentation at https://github.com/oscar-broman/samp-weapon-config

I recommend setting SetWeaponDamage(weaponid, damage_type, Float:amount, Float:...); in OnGamemodeInit or by manipulating the amount float in public OnPlayerDamage(&playerid, &Float:amount, &issuerid, &weapon, &bodypart);
.
Reply

Quote:
Originally Posted by Crayder
View Post
Is SKY compiled? Where are the binaries... I can't build right now...
Quote:
Originally Posted by Jeroen52
View Post
I wouldn't edit that value if I were you.

The only things you should edit in weapon-config.inc are the following lines at the top of the file:

PHP Code:
// Print debug messages in the chat and server log
#if !defined WC_DEBUG
    #define WC_DEBUG false
#endif
// Print debug messages to the console but not the chat
#if !defined WC_DEBUG_SILENT
    #define WC_DEBUG_SILENT false
#endif
// Max number of rejected hits (GetRejectedHit)
#if !defined WC_MAX_REJECTED_HITS
    #define WC_MAX_REJECTED_HITS 15
#endif
// Max ranges for DAMAGE_TYPE_RANGE(_MULTIPLIER)
#if !defined WC_MAX_DAMAGE_RANGES
    #define WC_MAX_DAMAGE_RANGES 5
#endif
// The world a player has after the death animation finished until he respawns or enters class selection
#if !defined WC_DEATH_WORLD
    #define WC_DEATH_WORLD 0x00DEAD00
#endif
// The max number of entries in the damage feeds
#if !defined WC_FEED_HEIGHT
    #define WC_FEED_HEIGHT 5
#endif
// Use Incognito's streamer for custom vending machines
#if !defined WC_USE_STREAMER
    #define WC_USE_STREAMER false
#endif
// For SetWeaponName
#if !defined WC_MAX_WEAPON_NAME
    #define WC_MAX_WEAPON_NAME 21
#endif
// For modes that always have negative cash
#if !defined WC_CUSTOM_VENDING_MACHINES
    #define WC_CUSTOM_VENDING_MACHINES true
#endif 
Please read my previous posts once more and the documentation at https://github.com/oscar-broman/samp-weapon-config

I recommend setting SetWeaponDamage(weaponid, damage_type, Float:amount, Float:...); in OnGamemodeInit or by manipulating the amount float in public OnPlayerDamage(&playerid, &Float:amount, &issuerid, &weapon, &bodypart);
.
Thanks, mate I like the idea +Reps
Reply

Quote:
Originally Posted by kukboy
View Post
Thanks, mate I like the idea +Reps
Which SKY binaries do you need?
I could compile it for you.
Reply

When play fall from high his not die.
How to remove it?
Reply

Quote:
Originally Posted by israelStaff
View Post
When play fall from high his not die.
How to remove it?
Did you change the custom fall damage?
Reply

Quote:
Originally Posted by Jeroen52
View Post
Did you change the custom fall damage?
Not.
Reply

Quote:
Originally Posted by israelStaff
View Post
Not.
Can you show any relevant pieces of code or changes you've made?
Reply

It is bugging CreateVehicle function.
Reply

Quote:
Originally Posted by Admireal
View Post
It is bugging CreateVehicle function.
Did you try using CreateDynamicVehicle?
Reply

Anyone have 0.3DL version of this include? Every time I damage a player, the server crashes. Happened after I updated the server to 0.3DL.

Quote:

[12:15:58] [debug] Server crashed while executing arp.amx
[12:15:58] [debug] AMX backtrace:
[12:15:58] [debug] #0 native SetPlayerHealth () in samp-server.exe
[12:15:58] [debug] #1 0002af9c in UpdateHealthBar (playerid=6, bool:force=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4029
[12:15:58] [debug] #2 00030b84 in InflictDamage (playerid=6, Float:amount=2.64000, issuerid=1, weaponid=48, bodypart=25, bool:ignore_armour=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4774
[12:15:58] [debug] #3 00024d58 in public OnPlayerGiveDamage (playerid=1, damagedid=6, Float:amount=2.64000, weaponid=48, bodypart=25) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:3222
[12:15:58] [debug] Native backtrace:
[12:15:58] [debug] #0 00493c57 in ?? () in samp-server.exe
[12:15:58] [debug] #1 6535dc92 in ?? () in plugins\crashdetect.DLL
[12:15:58] [debug] #2 65365318 in ?? () in plugins\crashdetect.DLL
[12:15:58] [debug] #3 653597cc in ?? () in plugins\crashdetect.DLL
[12:15:58] [debug] #4 6535dcf4 in ?? () in plugins\crashdetect.DLL
[12:15:58] [debug] #5 595f3484 in ?? () in plugins\streamer.DLL
[12:15:58] [debug] #6 0046f0bc in ?? () in samp-server.exe
[12:15:58] [debug] #7 0049a245 in ?? () in samp-server.exe
[12:15:58] [debug] #8 65345f61 in ?? () in plugins\crashdetect.DLL
[12:15:58] [debug] #9 65359805 in ?? () in plugins\crashdetect.DLL
[12:15:58] [debug] #10 59643610 in ?? () in plugins\streamer.DLL
[12:15:58] [debug] Registers:
[12:15:58] [debug] EAX: 0019f33a EBX: 00000003 ECX: 00add150 EDX: ffffffff
[12:15:58] [debug] ESI: 02d1fbc0 EDI: 00000094 EBP: 00000000 ESP: 0019f7e0
[12:15:58] [debug] EIP: 59643610 EFLAGS: 00010202
[12:15:58] [debug] Stack:
[12:15:58] [debug] ESP+00000000: 0019f7f0 0019f80c 595f3491 59643610
[12:15:58] [debug] ESP+00000020: 0070af40 007327e0 00000094 0019f858
[12:15:58] [debug] ESP+00000040: 02d1fbc0 00000001 02d1fbc0 00000073
[12:15:58] [debug] ESP+00000060: 00add101 ffffee25 00000001 00000001
[12:15:58] [debug] ESP+00000080: 0019fac0 00ade090 0019f990 00000071
[12:15:58] [debug] ESP+000000a0: 9c652219 5945bdf1 004be950 0019fa84
[12:15:58] [debug] ESP+000000c0: 02d1fbc0 00000070 00000800 595f3c2d
[12:15:58] [debug] ESP+000000e0: 0049f616 00ad0000 00000000 0049f61b
[12:15:58] [debug] ESP+00000100: 0019f8d0 59644c08 0019fb00 004a3af4
[12:15:58] [debug] ESP+00000120: 59644f74 59643a0c 00000029 00000001
[12:15:58] [debug] ESP+00000140: 595f3c2d 0019fd58 00453627 59644b40
[12:15:58] [debug] ESP+00000160: 9c652219 0000dd32 00000000 00000000
[12:15:58] [debug] ESP+00000180: 0019f9ac 0019fa7c 0019fac4 0019fac4
[12:15:58] [debug] ESP+000001a0: a31b1c99 0019fa7c 00452120 0019fac0
[12:15:58] [debug] ESP+000001c0: 0b206672 0b206670 00add158 00000090
[12:15:58] [debug] ESP+000001e0: 594a7b8b 00000000 0019fa84 02a7f494
[12:15:58] [debug] ESP+00000200: 00000002 9c652219 0000dd32 00000000
[12:15:58] [debug] ESP+00000220: 9c652219 0019fa74 00000000 02d1fbc0
[12:15:58] [debug] ESP+00000240: 00000009 00000002 9c652219 0049dd32
[12:15:58] [debug] ESP+00000260: 0019fcd8 029277e0 00000009 00000007
[12:15:58] [debug] ESP+00000280: 004be950 0019fa84 0000ffff 0047dbe6
[12:15:58] [debug] ESP+000002a0: 43d2fb29 00000070 00000800 00000000
[12:15:58] [debug] ESP+000002c0: 0043d2fb 00750050 006c0062 00630069
[12:15:58] [debug] ESP+000002e0: 0019f990 00000071 0100007f d158ee25
[12:15:58] [debug] ESP+00000300: 00000000 00add158 004583cc 0b206573
[12:15:58] [debug] ESP+00000320: 00add150 0019fd90 0045ab8a 00000000
[12:15:58] [debug] ESP+00000340: 0019fbb4 770ce0f7 00000018 006d0000
[12:15:58] [debug] ESP+00000360: 006e0168 006fedc1 00000020 000207d0
[12:15:58] [debug] ESP+00000380: 0000f74b 00020000 00701cf0 f7fff5ef
[12:15:58] [debug] ESP+000003a0: 00000020 006d0000 00020b04 00000000
[12:15:58] [debug] ESP+000003c0: 0b00d0f8 770937e3 0758c2c8 00000000
[12:15:58] [debug] ESP+000003e0: 07930440 00000064 0000003c 07808c80
[12:15:58] [debug] Loaded modules:
[12:15:58] [debug] 00400000 - 0051f000 samp-server.exe
[12:15:58] [debug] 77050000 - 771e0000 ntdll.dll
[12:15:58] [debug] 751f0000 - 752d0000 KERNEL32.DLL
[12:15:58] [debug] 74c20000 - 74e04000 KERNELBASE.dll
[12:15:58] [debug] 75a60000 - 76daa000 SHELL32.dll
[12:15:58] [debug] 74ae0000 - 74b9f000 msvcrt.dll
[12:15:58] [debug] 73990000 - 739c9000 cfgmgr32.dll
[12:15:58] [debug] 74240000 - 7435d000 ucrtbase.dll
[12:15:58] [debug] 74530000 - 745b8000 shcore.dll
[12:15:58] [debug] 76e00000 - 76ec0000 RPCRT4.dll
[12:15:58] [debug] 73910000 - 73930000 SspiCli.dll
[12:15:58] [debug] 73900000 - 7390a000 CRYPTBASE.dll
[12:15:58] [debug] 74e10000 - 74e67000 bcryptPrimitives.dll
[12:15:58] [debug] 74360000 - 743a4000 sechost.dll
[12:15:58] [debug] 74880000 - 74adc000 combase.dll
[12:15:58] [debug] 75440000 - 759fa000 windows.storage.dll
[12:15:58] [debug] 752d0000 - 75348000 advapi32.dll
[12:15:58] [debug] 74ba0000 - 74be5000 shlwapi.dll
[12:15:58] [debug] 745c0000 - 745e2000 GDI32.dll
[12:15:58] [debug] 743b0000 - 74514000 gdi32full.dll
[12:15:58] [debug] 73c40000 - 73cbd000 msvcp_win.dll
[12:15:58] [debug] 74620000 - 747ad000 USER32.dll
[12:15:58] [debug] 74c00000 - 74c17000 win32u.dll
[12:15:58] [debug] 76f40000 - 76f4f000 kernel.appcore.dll
[12:15:58] [debug] 76f20000 - 76f38000 profapi.dll
[12:15:58] [debug] 76db0000 - 76df5000 powrprof.dll
[12:15:58] [debug] 747b0000 - 747b8000 FLTLIB.DLL
[12:15:58] [debug] 6b980000 - 6b988000 WSOCK32.dll
[12:15:58] [debug] 72d90000 - 72db4000 WINMM.dll
[12:15:58] [debug] 739d0000 - 73a37000 WS2_32.dll
[12:15:58] [debug] 72890000 - 728b3000 winmmbase.dll
[12:15:58] [debug] 745f0000 - 74616000 IMM32.DLL
[12:15:58] [debug] 65340000 - 65391000 crashdetect.DLL
[12:15:58] [debug] 59780000 - 5983f000 MSVCR100.dll
[12:15:58] [debug] 648c0000 - 64929000 MSVCP100.dll
[12:15:58] [debug] 59730000 - 5977e000 mysql.DLL
[12:15:58] [debug] 65320000 - 6533a000 log-core.dll
[12:15:58] [debug] 59660000 - 5972d000 libmariadb.dll
[12:15:58] [debug] 6e500000 - 6e56e000 MSVCP140.dll
[12:15:58] [debug] 70430000 - 70443000 VCRUNTIME140.dll
[12:15:58] [debug] 74e70000 - 75006000 CRYPT32.dll
[12:15:58] [debug] 75430000 - 7543e000 MSASN1.dll
[12:15:58] [debug] 70c60000 - 70c6a000 Secur32.dll
[12:15:58] [debug] 70af0000 - 70b01000 napinsp.dll
[12:15:58] [debug] 70ad0000 - 70ae6000 pnrpnsp.dll
[12:15:58] [debug] 70ab0000 - 70ac3000 NLAapi.dll
[12:15:58] [debug] 6e4a0000 - 6e4f6000 mswsock.dll
[12:15:58] [debug] 70b60000 - 70bee000 DNSAPI.dll
[12:15:58] [debug] 74bf0000 - 74bf7000 NSI.dll
[12:15:58] [debug] 732f0000 - 73320000 IPHLPAPI.DLL
[12:15:58] [debug] 70aa0000 - 70aac000 winrnr.dll
[12:15:58] [debug] 70a80000 - 70a91000 wshbth.dll
[12:15:58] [debug] 6e300000 - 6e308000 rasadhlp.dll
[12:15:58] [debug] 65310000 - 6531d000 Whirlpool.DLL
[12:15:58] [debug] 10000000 - 1000e000 sscanf.DLL
[12:15:58] [debug] 595f0000 - 59657000 streamer.DLL
[12:15:58] [debug] 595b0000 - 595e9000 pawncmd.DLL
[12:15:58] [debug] 59450000 - 594c9000 pawnraknet.DLL
[12:15:58] [debug] 02a70000 - 02b15000 YSF_DL.DLL
[12:15:58] [debug] 74140000 - 7423c000 ole32.dll
[12:15:58] [debug] 747e0000 - 74876000 OLEAUT32.dll
[12:15:58] [debug] 02b30000 - 02c81000 SKY.DLL
[12:15:58] [debug] 74520000 - 74526000 PSAPI.DLL
[12:15:58] [debug] 6f140000 - 6f18f000 fwpuclnt.dll
[12:15:58] [debug] 72860000 - 72879000 bcrypt.dll
[12:15:58] [debug] 72dc0000 - 72e3c000 uxtheme.dll
[12:15:58] [debug] 70e80000 - 71000000 PROPSYS.dll
[12:15:58] [debug] 75160000 - 751e3000 clbcatq.dll
[12:15:58] [debug] 623f0000 - 62718000 OneCoreUAPCommonProxyStub.dll
[12:15:58] [debug] 6f5c0000 - 6f5fd000 edputil.dll
[12:15:58] [debug] 6bcd0000 - 6bd5b000 Windows.StateRepositoryPS.dll
[12:15:58] [debug] 6b330000 - 6b4cd000 urlmon.dll
[12:15:58] [debug] 70480000 - 706a9000 iertutil.dll
[12:15:58] [debug] 6f1a0000 - 6f1ba000 CLDAPI.dll
[12:15:58] [debug] 6e350000 - 6e426000 WinTypes.dll
[12:15:58] [debug] 6f110000 - 6f11d000 wbemprox.dll
[12:15:58] [debug] 6f300000 - 6f36b000 wbemcomn.dll
[12:15:58] [debug] 6f100000 - 6f110000 wbemsvc.dll
[12:15:58] [debug] 6f030000 - 6f0f3000 fastprox.dll

Reply

Quote:
Originally Posted by Uberanwar
View Post
Anyone have 0.3DL version of this include? Every time I damage a player, the server crashes. Happened after I updated the server to 0.3DL.
It should work on 0.3DL.

Did you try the following?

1. Update all plugins (including SKY) to the 0.3DL version or the newest versin.
2. Update all includes to the newest version.
3. Re-compile the gamemode.

If so and it doesn't fix the issue, can you compile crashdetect with debug info? https://github.com/Zeex/samp-plugin-...ith-debug-info
Reply

Quote:
Originally Posted by Jeroen52
View Post
It should work on 0.3DL.

Did you try the following?

1. Update all plugins (including SKY) to the 0.3DL version or the newest versin.
2. Update all includes to the newest version.
3. Re-compile the gamemode.

If so and it doesn't fix the issue, can you compile crashdetect with debug info? https://github.com/Zeex/samp-plugin-...ith-debug-info
Yes, I did. Here's the error output now.

HTML Code:
[13:07:10] [debug] Server crashed while executing arp.amx
[13:07:10] [debug] AMX backtrace:
[13:07:10] [debug] #0 native SetPlayerArmour () in samp-server.exe
[13:07:10] [debug] #1 000230d0 in UpdateHealthBar (playerid=1, bool:force=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4063
[13:07:10] [debug] #2 0002837c in InflictDamage (playerid=1, Float:amount=1.32000, issuerid=6, weaponid=0, bodypart=3, bool:ignore_armour=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4768
[13:07:10] [debug] #3 0001c5cc in public OnPlayerGiveDamage (playerid=6, damagedid=1, Float:amount=1.32000, weaponid=0, bodypart=3) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:3221
[13:07:10] [debug] Native backtrace:
[13:07:10] [debug] #0 00493c57 in ?? () in samp-server.exe
[13:07:10] [debug] #1 6535dc92 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #2 65365318 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #3 653597cc in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #4 6535dcf4 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #5 595f3484 in ?? () in plugins\streamer.DLL
[13:07:10] [debug] #6 0046f0bc in ?? () in samp-server.exe
[13:07:10] [debug] #7 0049a245 in ?? () in samp-server.exe
[13:07:10] [debug] #8 65345f61 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #9 65359805 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #10 59643610 in ?? () in plugins\streamer.DLL
[13:07:10] [debug] Registers:
[13:07:10] [debug] EAX: 0019f33a EBX: 00000003 ECX: 0255d150 EDX: ffffffff
[13:07:10] [debug] ESI: 02e1fbc0 EDI: 00000094 EBP: 00000000 ESP: 0019f7e0
[13:07:10] [debug] EIP: 59643610 EFLAGS: 00010202
[13:07:10] [debug] Stack:
[13:07:10] [debug] ESP+00000000: 0019f7f0 0019f80c 595f3491 59643610
[13:07:10] [debug] ESP+00000020: 0079a060 00760b00 00000094 0019f858
[13:07:10] [debug] ESP+00000040: 02e1fbc0 00000006 02e1fbc0 00000073
[13:07:10] [debug] ESP+00000060: 0255d101 0000c4fb 00000006 00000001
[13:07:10] [debug] ESP+00000080: 0019fac0 0255e0a8 0019f990 00000071
[13:07:10] [debug] ESP+000000a0: 77092774 daf93245 c0000139 00000000
[13:07:10] [debug] ESP+000000c0: 0000000e 00000000 0000000e 770b4e2f
[13:07:10] [debug] ESP+000000e0: 59451462 0019f9ac 0019fe00 770c2bf0
[13:07:10] [debug] ESP+00000100: 0019f910 0019f8f8 00000003 00000000
[13:07:10] [debug] ESP+00000120: 0010000e 77055674 0019f97c 00000003
[13:07:10] [debug] ESP+00000140: 0019f910 0019f900 c0000139 006e004f
[13:07:10] [debug] ESP+00000160: 00610064 00650074 00000000 00000000
[13:07:10] [debug] ESP+00000180: 0019f9ac 0019fa7c 0019fac4 0019fac4
[13:07:10] [debug] ESP+000001a0: 1c8660b3 0019fa7c 00452120 0019fac0
[13:07:10] [debug] ESP+000001c0: 0b27ef7a 0b27ef78 0255d158 00000090
[13:07:10] [debug] ESP+000001e0: 595f0000 00780a38 770ce1c6 e691e8eb
[13:07:10] [debug] ESP+00000200: 00000000 71892aa9 00000000 443f70c3
[13:07:10] [debug] ESP+00000220: 0019fa2c 65345c7a ec14d7dc 00000000
[13:07:10] [debug] ESP+00000240: 65345f61 0019fa3c 00000001 00000000
[13:07:10] [debug] ESP+00000260: 00000000 00000001 0019fb64 653592ef
[13:07:10] [debug] ESP+00000280: 65359309 02e1fbc0 02e1fbc0 00000000
[13:07:10] [debug] ESP+000002a0: 595f8b1d 00000009 007881f0 00000000
[13:07:10] [debug] ESP+000002c0: 02e1fbc0 00000000 6538a78c 0019fac0
[13:07:10] [debug] ESP+000002e0: 0019f990 00000071 9c652219 d158c4fb
[13:07:10] [debug] ESP+00000300: 00000000 0255d158 004583cc 0b27ed73
[13:07:10] [debug] ESP+00000320: 0255d150 0019fd90 0045ab8a 00000000
[13:07:10] [debug] ESP+00000340: 02e1fbc0 00000000 6538a78c 0019fb40
[13:07:10] [debug] ESP+00000360: 00000000 00000010 0044df59 00000010
[13:07:10] [debug] ESP+00000380: 00000004 004845f8 02f6a008 0afc4ec8
[13:07:10] [debug] ESP+000003a0: 0afc4ec8 00000000 770e9d27 44436c71
[13:07:10] [debug] ESP+000003c0: 00000000 770ac946 0019fb00 00000000
[13:07:10] [debug] ESP+000003e0: 00000000 0000043c 00000000 7ffeb000
[13:07:10] [debug] Loaded modules:
[13:07:10] [debug] 00400000 - 0051f000 samp-server.exe
[13:07:10] [debug] 77050000 - 771e0000 ntdll.dll
[13:07:10] [debug] 751f0000 - 752d0000 KERNEL32.DLL
[13:07:10] [debug] 74c20000 - 74e04000 KERNELBASE.dll
[13:07:10] [debug] 75a60000 - 76daa000 SHELL32.dll
[13:07:10] [debug] 74ae0000 - 74b9f000 msvcrt.dll
[13:07:10] [debug] 73990000 - 739c9000 cfgmgr32.dll
[13:07:10] [debug] 74240000 - 7435d000 ucrtbase.dll
[13:07:10] [debug] 74530000 - 745b8000 shcore.dll
[13:07:10] [debug] 76e00000 - 76ec0000 RPCRT4.dll
[13:07:10] [debug] 73910000 - 73930000 SspiCli.dll
[13:07:10] [debug] 73900000 - 7390a000 CRYPTBASE.dll
[13:07:10] [debug] 74e10000 - 74e67000 bcryptPrimitives.dll
[13:07:10] [debug] 74360000 - 743a4000 sechost.dll
[13:07:10] [debug] 74880000 - 74adc000 combase.dll
[13:07:10] [debug] 75440000 - 759fa000 windows.storage.dll
[13:07:10] [debug] 752d0000 - 75348000 advapi32.dll
[13:07:10] [debug] 74ba0000 - 74be5000 shlwapi.dll
[13:07:10] [debug] 745c0000 - 745e2000 GDI32.dll
[13:07:10] [debug] 743b0000 - 74514000 gdi32full.dll
[13:07:10] [debug] 73c40000 - 73cbd000 msvcp_win.dll
[13:07:10] [debug] 74620000 - 747ad000 USER32.dll
[13:07:10] [debug] 74c00000 - 74c17000 win32u.dll
[13:07:10] [debug] 76f40000 - 76f4f000 kernel.appcore.dll
[13:07:10] [debug] 76f20000 - 76f38000 profapi.dll
[13:07:10] [debug] 76db0000 - 76df5000 powrprof.dll
[13:07:10] [debug] 747b0000 - 747b8000 FLTLIB.DLL
[13:07:10] [debug] 6b980000 - 6b988000 WSOCK32.dll
[13:07:10] [debug] 72d90000 - 72db4000 WINMM.dll
[13:07:10] [debug] 739d0000 - 73a37000 WS2_32.dll
[13:07:10] [debug] 72890000 - 728b3000 winmmbase.dll
[13:07:10] [debug] 745f0000 - 74616000 IMM32.DLL
[13:07:10] [debug] 65340000 - 65391000 crashdetect.DLL
[13:07:10] [debug] 59780000 - 5983f000 MSVCR100.dll
[13:07:10] [debug] 648c0000 - 64929000 MSVCP100.dll
[13:07:10] [debug] 59730000 - 5977e000 mysql.DLL
[13:07:10] [debug] 59660000 - 5972d000 libmariadb.dll
[13:07:10] [debug] 6e500000 - 6e56e000 MSVCP140.dll
[13:07:10] [debug] 65320000 - 6533a000 log-core.dll
[13:07:10] [debug] 70430000 - 70443000 VCRUNTIME140.dll
[13:07:10] [debug] 74e70000 - 75006000 CRYPT32.dll
[13:07:10] [debug] 75430000 - 7543e000 MSASN1.dll
[13:07:10] [debug] 70c60000 - 70c6a000 Secur32.dll
[13:07:10] [debug] 70af0000 - 70b01000 napinsp.dll
[13:07:10] [debug] 70ad0000 - 70ae6000 pnrpnsp.dll
[13:07:10] [debug] 70ab0000 - 70ac3000 NLAapi.dll
[13:07:10] [debug] 6e4a0000 - 6e4f6000 mswsock.dll
[13:07:10] [debug] 70b60000 - 70bee000 DNSAPI.dll
[13:07:10] [debug] 74bf0000 - 74bf7000 NSI.dll
[13:07:10] [debug] 732f0000 - 73320000 IPHLPAPI.DLL
[13:07:10] [debug] 70aa0000 - 70aac000 winrnr.dll
[13:07:10] [debug] 70a80000 - 70a91000 wshbth.dll
[13:07:10] [debug] 6e300000 - 6e308000 rasadhlp.dll
[13:07:10] [debug] 65310000 - 6531d000 Whirlpool.DLL
[13:07:10] [debug] 10000000 - 1000e000 sscanf.DLL
[13:07:10] [debug] 595f0000 - 59657000 streamer.DLL
[13:07:10] [debug] 595b0000 - 595e9000 pawncmd.DLL
[13:07:10] [debug] 59450000 - 594c9000 pawnraknet.DLL
[13:07:10] [debug] 02b70000 - 02c15000 YSF_DL.DLL
[13:07:10] [debug] 74140000 - 7423c000 ole32.dll
[13:07:10] [debug] 747e0000 - 74876000 OLEAUT32.dll
[13:07:10] [debug] 02c30000 - 02d81000 SKY.DLL
[13:07:10] [debug] 74520000 - 74526000 PSAPI.DLL
[13:07:10] [debug] 6f140000 - 6f18f000 fwpuclnt.dll
[13:07:10] [debug] 72860000 - 72879000 bcrypt.dll
[13:07:10] [debug] 72dc0000 - 72e3c000 uxtheme.dll
[13:07:10] [debug] 70e80000 - 71000000 PROPSYS.dll
[13:07:10] [debug] 75160000 - 751e3000 clbcatq.dll
[13:07:10] [debug] 623f0000 - 62718000 OneCoreUAPCommonProxyStub.dll
[13:07:10] [debug] 6f5c0000 - 6f5fd000 edputil.dll
[13:07:10] [debug] 6bcd0000 - 6bd5b000 Windows.StateRepositoryPS.dll
[13:07:10] [debug] 6b330000 - 6b4cd000 urlmon.dll
[13:07:10] [debug] 70480000 - 706a9000 iertutil.dll
[13:07:10] [debug] 6f1a0000 - 6f1ba000 CLDAPI.dll
[13:07:10] [debug] 6e350000 - 6e426000 WinTypes.dll
[13:07:10] [debug] 6f110000 - 6f11d000 wbemprox.dll
[13:07:10] [debug] 6f300000 - 6f36b000 wbemcomn.dll
[13:07:10] [debug] 6f100000 - 6f110000 wbemsvc.dll
[13:07:10] [debug] 6f030000 - 6f0f3000 fastprox.dll
Reply

Can you send some context lines as reported in the backtrace? Lines such as weapon_config.inc:4063, weapon_config.inc:4768, weapon_config.inc:3221

Of course with enough context.

Quote:
Originally Posted by Uberanwar
View Post
Yes, I did. Here's the error output now.

HTML Code:
[13:07:10] [debug] Server crashed while executing arp.amx
[13:07:10] [debug] AMX backtrace:
[13:07:10] [debug] #0 native SetPlayerArmour () in samp-server.exe
[13:07:10] [debug] #1 000230d0 in UpdateHealthBar (playerid=1, bool:force=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4063
[13:07:10] [debug] #2 0002837c in InflictDamage (playerid=1, Float:amount=1.32000, issuerid=6, weaponid=0, bodypart=3, bool:ignore_armour=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4768
[13:07:10] [debug] #3 0001c5cc in public OnPlayerGiveDamage (playerid=6, damagedid=1, Float:amount=1.32000, weaponid=0, bodypart=3) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:3221
[13:07:10] [debug] Native backtrace:
[13:07:10] [debug] #0 00493c57 in ?? () in samp-server.exe
[13:07:10] [debug] #1 6535dc92 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #2 65365318 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #3 653597cc in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #4 6535dcf4 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #5 595f3484 in ?? () in plugins\streamer.DLL
[13:07:10] [debug] #6 0046f0bc in ?? () in samp-server.exe
[13:07:10] [debug] #7 0049a245 in ?? () in samp-server.exe
[13:07:10] [debug] #8 65345f61 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #9 65359805 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #10 59643610 in ?? () in plugins\streamer.DLL
[13:07:10] [debug] Registers:
[13:07:10] [debug] EAX: 0019f33a EBX: 00000003 ECX: 0255d150 EDX: ffffffff
[13:07:10] [debug] ESI: 02e1fbc0 EDI: 00000094 EBP: 00000000 ESP: 0019f7e0
[13:07:10] [debug] EIP: 59643610 EFLAGS: 00010202
[13:07:10] [debug] Stack:
[13:07:10] [debug] ESP+00000000: 0019f7f0 0019f80c 595f3491 59643610
[13:07:10] [debug] ESP+00000020: 0079a060 00760b00 00000094 0019f858
[13:07:10] [debug] ESP+00000040: 02e1fbc0 00000006 02e1fbc0 00000073
[13:07:10] [debug] ESP+00000060: 0255d101 0000c4fb 00000006 00000001
[13:07:10] [debug] ESP+00000080: 0019fac0 0255e0a8 0019f990 00000071
[13:07:10] [debug] ESP+000000a0: 77092774 daf93245 c0000139 00000000
[13:07:10] [debug] ESP+000000c0: 0000000e 00000000 0000000e 770b4e2f
[13:07:10] [debug] ESP+000000e0: 59451462 0019f9ac 0019fe00 770c2bf0
[13:07:10] [debug] ESP+00000100: 0019f910 0019f8f8 00000003 00000000
[13:07:10] [debug] ESP+00000120: 0010000e 77055674 0019f97c 00000003
[13:07:10] [debug] ESP+00000140: 0019f910 0019f900 c0000139 006e004f
[13:07:10] [debug] ESP+00000160: 00610064 00650074 00000000 00000000
[13:07:10] [debug] ESP+00000180: 0019f9ac 0019fa7c 0019fac4 0019fac4
[13:07:10] [debug] ESP+000001a0: 1c8660b3 0019fa7c 00452120 0019fac0
[13:07:10] [debug] ESP+000001c0: 0b27ef7a 0b27ef78 0255d158 00000090
[13:07:10] [debug] ESP+000001e0: 595f0000 00780a38 770ce1c6 e691e8eb
[13:07:10] [debug] ESP+00000200: 00000000 71892aa9 00000000 443f70c3
[13:07:10] [debug] ESP+00000220: 0019fa2c 65345c7a ec14d7dc 00000000
[13:07:10] [debug] ESP+00000240: 65345f61 0019fa3c 00000001 00000000
[13:07:10] [debug] ESP+00000260: 00000000 00000001 0019fb64 653592ef
[13:07:10] [debug] ESP+00000280: 65359309 02e1fbc0 02e1fbc0 00000000
[13:07:10] [debug] ESP+000002a0: 595f8b1d 00000009 007881f0 00000000
[13:07:10] [debug] ESP+000002c0: 02e1fbc0 00000000 6538a78c 0019fac0
[13:07:10] [debug] ESP+000002e0: 0019f990 00000071 9c652219 d158c4fb
[13:07:10] [debug] ESP+00000300: 00000000 0255d158 004583cc 0b27ed73
[13:07:10] [debug] ESP+00000320: 0255d150 0019fd90 0045ab8a 00000000
[13:07:10] [debug] ESP+00000340: 02e1fbc0 00000000 6538a78c 0019fb40
[13:07:10] [debug] ESP+00000360: 00000000 00000010 0044df59 00000010
[13:07:10] [debug] ESP+00000380: 00000004 004845f8 02f6a008 0afc4ec8
[13:07:10] [debug] ESP+000003a0: 0afc4ec8 00000000 770e9d27 44436c71
[13:07:10] [debug] ESP+000003c0: 00000000 770ac946 0019fb00 00000000
[13:07:10] [debug] ESP+000003e0: 00000000 0000043c 00000000 7ffeb000
[13:07:10] [debug] Loaded modules:
[13:07:10] [debug] 00400000 - 0051f000 samp-server.exe
[13:07:10] [debug] 77050000 - 771e0000 ntdll.dll
[13:07:10] [debug] 751f0000 - 752d0000 KERNEL32.DLL
[13:07:10] [debug] 74c20000 - 74e04000 KERNELBASE.dll
[13:07:10] [debug] 75a60000 - 76daa000 SHELL32.dll
[13:07:10] [debug] 74ae0000 - 74b9f000 msvcrt.dll
[13:07:10] [debug] 73990000 - 739c9000 cfgmgr32.dll
[13:07:10] [debug] 74240000 - 7435d000 ucrtbase.dll
[13:07:10] [debug] 74530000 - 745b8000 shcore.dll
[13:07:10] [debug] 76e00000 - 76ec0000 RPCRT4.dll
[13:07:10] [debug] 73910000 - 73930000 SspiCli.dll
[13:07:10] [debug] 73900000 - 7390a000 CRYPTBASE.dll
[13:07:10] [debug] 74e10000 - 74e67000 bcryptPrimitives.dll
[13:07:10] [debug] 74360000 - 743a4000 sechost.dll
[13:07:10] [debug] 74880000 - 74adc000 combase.dll
[13:07:10] [debug] 75440000 - 759fa000 windows.storage.dll
[13:07:10] [debug] 752d0000 - 75348000 advapi32.dll
[13:07:10] [debug] 74ba0000 - 74be5000 shlwapi.dll
[13:07:10] [debug] 745c0000 - 745e2000 GDI32.dll
[13:07:10] [debug] 743b0000 - 74514000 gdi32full.dll
[13:07:10] [debug] 73c40000 - 73cbd000 msvcp_win.dll
[13:07:10] [debug] 74620000 - 747ad000 USER32.dll
[13:07:10] [debug] 74c00000 - 74c17000 win32u.dll
[13:07:10] [debug] 76f40000 - 76f4f000 kernel.appcore.dll
[13:07:10] [debug] 76f20000 - 76f38000 profapi.dll
[13:07:10] [debug] 76db0000 - 76df5000 powrprof.dll
[13:07:10] [debug] 747b0000 - 747b8000 FLTLIB.DLL
[13:07:10] [debug] 6b980000 - 6b988000 WSOCK32.dll
[13:07:10] [debug] 72d90000 - 72db4000 WINMM.dll
[13:07:10] [debug] 739d0000 - 73a37000 WS2_32.dll
[13:07:10] [debug] 72890000 - 728b3000 winmmbase.dll
[13:07:10] [debug] 745f0000 - 74616000 IMM32.DLL
[13:07:10] [debug] 65340000 - 65391000 crashdetect.DLL
[13:07:10] [debug] 59780000 - 5983f000 MSVCR100.dll
[13:07:10] [debug] 648c0000 - 64929000 MSVCP100.dll
[13:07:10] [debug] 59730000 - 5977e000 mysql.DLL
[13:07:10] [debug] 59660000 - 5972d000 libmariadb.dll
[13:07:10] [debug] 6e500000 - 6e56e000 MSVCP140.dll
[13:07:10] [debug] 65320000 - 6533a000 log-core.dll
[13:07:10] [debug] 70430000 - 70443000 VCRUNTIME140.dll
[13:07:10] [debug] 74e70000 - 75006000 CRYPT32.dll
[13:07:10] [debug] 75430000 - 7543e000 MSASN1.dll
[13:07:10] [debug] 70c60000 - 70c6a000 Secur32.dll
[13:07:10] [debug] 70af0000 - 70b01000 napinsp.dll
[13:07:10] [debug] 70ad0000 - 70ae6000 pnrpnsp.dll
[13:07:10] [debug] 70ab0000 - 70ac3000 NLAapi.dll
[13:07:10] [debug] 6e4a0000 - 6e4f6000 mswsock.dll
[13:07:10] [debug] 70b60000 - 70bee000 DNSAPI.dll
[13:07:10] [debug] 74bf0000 - 74bf7000 NSI.dll
[13:07:10] [debug] 732f0000 - 73320000 IPHLPAPI.DLL
[13:07:10] [debug] 70aa0000 - 70aac000 winrnr.dll
[13:07:10] [debug] 70a80000 - 70a91000 wshbth.dll
[13:07:10] [debug] 6e300000 - 6e308000 rasadhlp.dll
[13:07:10] [debug] 65310000 - 6531d000 Whirlpool.DLL
[13:07:10] [debug] 10000000 - 1000e000 sscanf.DLL
[13:07:10] [debug] 595f0000 - 59657000 streamer.DLL
[13:07:10] [debug] 595b0000 - 595e9000 pawncmd.DLL
[13:07:10] [debug] 59450000 - 594c9000 pawnraknet.DLL
[13:07:10] [debug] 02b70000 - 02c15000 YSF_DL.DLL
[13:07:10] [debug] 74140000 - 7423c000 ole32.dll
[13:07:10] [debug] 747e0000 - 74876000 OLEAUT32.dll
[13:07:10] [debug] 02c30000 - 02d81000 SKY.DLL
[13:07:10] [debug] 74520000 - 74526000 PSAPI.DLL
[13:07:10] [debug] 6f140000 - 6f18f000 fwpuclnt.dll
[13:07:10] [debug] 72860000 - 72879000 bcrypt.dll
[13:07:10] [debug] 72dc0000 - 72e3c000 uxtheme.dll
[13:07:10] [debug] 70e80000 - 71000000 PROPSYS.dll
[13:07:10] [debug] 75160000 - 751e3000 clbcatq.dll
[13:07:10] [debug] 623f0000 - 62718000 OneCoreUAPCommonProxyStub.dll
[13:07:10] [debug] 6f5c0000 - 6f5fd000 edputil.dll
[13:07:10] [debug] 6bcd0000 - 6bd5b000 Windows.StateRepositoryPS.dll
[13:07:10] [debug] 6b330000 - 6b4cd000 urlmon.dll
[13:07:10] [debug] 70480000 - 706a9000 iertutil.dll
[13:07:10] [debug] 6f1a0000 - 6f1ba000 CLDAPI.dll
[13:07:10] [debug] 6e350000 - 6e426000 WinTypes.dll
[13:07:10] [debug] 6f110000 - 6f11d000 wbemprox.dll
[13:07:10] [debug] 6f300000 - 6f36b000 wbemcomn.dll
[13:07:10] [debug] 6f100000 - 6f110000 wbemsvc.dll
[13:07:10] [debug] 6f030000 - 6f0f3000 fastprox.dll
Reply

Quote:
Originally Posted by Uberanwar
View Post
Yes, I did. Here's the error output now.

HTML Code:
[13:07:10] [debug] Server crashed while executing arp.amx
[13:07:10] [debug] AMX backtrace:
[13:07:10] [debug] #0 native SetPlayerArmour () in samp-server.exe
[13:07:10] [debug] #1 000230d0 in UpdateHealthBar (playerid=1, bool:force=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4063
[13:07:10] [debug] #2 0002837c in InflictDamage (playerid=1, Float:amount=1.32000, issuerid=6, weaponid=0, bodypart=3, bool:ignore_armour=false) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:4768
[13:07:10] [debug] #3 0001c5cc in public OnPlayerGiveDamage (playerid=6, damagedid=1, Float:amount=1.32000, weaponid=0, bodypart=3) at C:\Users\User\Desktop\SA-MP\pawno\include\weapon_config.inc:3221
[13:07:10] [debug] Native backtrace:
[13:07:10] [debug] #0 00493c57 in ?? () in samp-server.exe
[13:07:10] [debug] #1 6535dc92 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #2 65365318 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #3 653597cc in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #4 6535dcf4 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #5 595f3484 in ?? () in plugins\streamer.DLL
[13:07:10] [debug] #6 0046f0bc in ?? () in samp-server.exe
[13:07:10] [debug] #7 0049a245 in ?? () in samp-server.exe
[13:07:10] [debug] #8 65345f61 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #9 65359805 in ?? () in plugins\crashdetect.DLL
[13:07:10] [debug] #10 59643610 in ?? () in plugins\streamer.DLL
[13:07:10] [debug] Registers:
[13:07:10] [debug] EAX: 0019f33a EBX: 00000003 ECX: 0255d150 EDX: ffffffff
[13:07:10] [debug] ESI: 02e1fbc0 EDI: 00000094 EBP: 00000000 ESP: 0019f7e0
[13:07:10] [debug] EIP: 59643610 EFLAGS: 00010202
[13:07:10] [debug] Stack:
[13:07:10] [debug] ESP+00000000: 0019f7f0 0019f80c 595f3491 59643610
[13:07:10] [debug] ESP+00000020: 0079a060 00760b00 00000094 0019f858
[13:07:10] [debug] ESP+00000040: 02e1fbc0 00000006 02e1fbc0 00000073
[13:07:10] [debug] ESP+00000060: 0255d101 0000c4fb 00000006 00000001
[13:07:10] [debug] ESP+00000080: 0019fac0 0255e0a8 0019f990 00000071
[13:07:10] [debug] ESP+000000a0: 77092774 daf93245 c0000139 00000000
[13:07:10] [debug] ESP+000000c0: 0000000e 00000000 0000000e 770b4e2f
[13:07:10] [debug] ESP+000000e0: 59451462 0019f9ac 0019fe00 770c2bf0
[13:07:10] [debug] ESP+00000100: 0019f910 0019f8f8 00000003 00000000
[13:07:10] [debug] ESP+00000120: 0010000e 77055674 0019f97c 00000003
[13:07:10] [debug] ESP+00000140: 0019f910 0019f900 c0000139 006e004f
[13:07:10] [debug] ESP+00000160: 00610064 00650074 00000000 00000000
[13:07:10] [debug] ESP+00000180: 0019f9ac 0019fa7c 0019fac4 0019fac4
[13:07:10] [debug] ESP+000001a0: 1c8660b3 0019fa7c 00452120 0019fac0
[13:07:10] [debug] ESP+000001c0: 0b27ef7a 0b27ef78 0255d158 00000090
[13:07:10] [debug] ESP+000001e0: 595f0000 00780a38 770ce1c6 e691e8eb
[13:07:10] [debug] ESP+00000200: 00000000 71892aa9 00000000 443f70c3
[13:07:10] [debug] ESP+00000220: 0019fa2c 65345c7a ec14d7dc 00000000
[13:07:10] [debug] ESP+00000240: 65345f61 0019fa3c 00000001 00000000
[13:07:10] [debug] ESP+00000260: 00000000 00000001 0019fb64 653592ef
[13:07:10] [debug] ESP+00000280: 65359309 02e1fbc0 02e1fbc0 00000000
[13:07:10] [debug] ESP+000002a0: 595f8b1d 00000009 007881f0 00000000
[13:07:10] [debug] ESP+000002c0: 02e1fbc0 00000000 6538a78c 0019fac0
[13:07:10] [debug] ESP+000002e0: 0019f990 00000071 9c652219 d158c4fb
[13:07:10] [debug] ESP+00000300: 00000000 0255d158 004583cc 0b27ed73
[13:07:10] [debug] ESP+00000320: 0255d150 0019fd90 0045ab8a 00000000
[13:07:10] [debug] ESP+00000340: 02e1fbc0 00000000 6538a78c 0019fb40
[13:07:10] [debug] ESP+00000360: 00000000 00000010 0044df59 00000010
[13:07:10] [debug] ESP+00000380: 00000004 004845f8 02f6a008 0afc4ec8
[13:07:10] [debug] ESP+000003a0: 0afc4ec8 00000000 770e9d27 44436c71
[13:07:10] [debug] ESP+000003c0: 00000000 770ac946 0019fb00 00000000
[13:07:10] [debug] ESP+000003e0: 00000000 0000043c 00000000 7ffeb000
[13:07:10] [debug] Loaded modules:
[13:07:10] [debug] 00400000 - 0051f000 samp-server.exe
[13:07:10] [debug] 77050000 - 771e0000 ntdll.dll
[13:07:10] [debug] 751f0000 - 752d0000 KERNEL32.DLL
[13:07:10] [debug] 74c20000 - 74e04000 KERNELBASE.dll
[13:07:10] [debug] 75a60000 - 76daa000 SHELL32.dll
[13:07:10] [debug] 74ae0000 - 74b9f000 msvcrt.dll
[13:07:10] [debug] 73990000 - 739c9000 cfgmgr32.dll
[13:07:10] [debug] 74240000 - 7435d000 ucrtbase.dll
[13:07:10] [debug] 74530000 - 745b8000 shcore.dll
[13:07:10] [debug] 76e00000 - 76ec0000 RPCRT4.dll
[13:07:10] [debug] 73910000 - 73930000 SspiCli.dll
[13:07:10] [debug] 73900000 - 7390a000 CRYPTBASE.dll
[13:07:10] [debug] 74e10000 - 74e67000 bcryptPrimitives.dll
[13:07:10] [debug] 74360000 - 743a4000 sechost.dll
[13:07:10] [debug] 74880000 - 74adc000 combase.dll
[13:07:10] [debug] 75440000 - 759fa000 windows.storage.dll
[13:07:10] [debug] 752d0000 - 75348000 advapi32.dll
[13:07:10] [debug] 74ba0000 - 74be5000 shlwapi.dll
[13:07:10] [debug] 745c0000 - 745e2000 GDI32.dll
[13:07:10] [debug] 743b0000 - 74514000 gdi32full.dll
[13:07:10] [debug] 73c40000 - 73cbd000 msvcp_win.dll
[13:07:10] [debug] 74620000 - 747ad000 USER32.dll
[13:07:10] [debug] 74c00000 - 74c17000 win32u.dll
[13:07:10] [debug] 76f40000 - 76f4f000 kernel.appcore.dll
[13:07:10] [debug] 76f20000 - 76f38000 profapi.dll
[13:07:10] [debug] 76db0000 - 76df5000 powrprof.dll
[13:07:10] [debug] 747b0000 - 747b8000 FLTLIB.DLL
[13:07:10] [debug] 6b980000 - 6b988000 WSOCK32.dll
[13:07:10] [debug] 72d90000 - 72db4000 WINMM.dll
[13:07:10] [debug] 739d0000 - 73a37000 WS2_32.dll
[13:07:10] [debug] 72890000 - 728b3000 winmmbase.dll
[13:07:10] [debug] 745f0000 - 74616000 IMM32.DLL
[13:07:10] [debug] 65340000 - 65391000 crashdetect.DLL
[13:07:10] [debug] 59780000 - 5983f000 MSVCR100.dll
[13:07:10] [debug] 648c0000 - 64929000 MSVCP100.dll
[13:07:10] [debug] 59730000 - 5977e000 mysql.DLL
[13:07:10] [debug] 59660000 - 5972d000 libmariadb.dll
[13:07:10] [debug] 6e500000 - 6e56e000 MSVCP140.dll
[13:07:10] [debug] 65320000 - 6533a000 log-core.dll
[13:07:10] [debug] 70430000 - 70443000 VCRUNTIME140.dll
[13:07:10] [debug] 74e70000 - 75006000 CRYPT32.dll
[13:07:10] [debug] 75430000 - 7543e000 MSASN1.dll
[13:07:10] [debug] 70c60000 - 70c6a000 Secur32.dll
[13:07:10] [debug] 70af0000 - 70b01000 napinsp.dll
[13:07:10] [debug] 70ad0000 - 70ae6000 pnrpnsp.dll
[13:07:10] [debug] 70ab0000 - 70ac3000 NLAapi.dll
[13:07:10] [debug] 6e4a0000 - 6e4f6000 mswsock.dll
[13:07:10] [debug] 70b60000 - 70bee000 DNSAPI.dll
[13:07:10] [debug] 74bf0000 - 74bf7000 NSI.dll
[13:07:10] [debug] 732f0000 - 73320000 IPHLPAPI.DLL
[13:07:10] [debug] 70aa0000 - 70aac000 winrnr.dll
[13:07:10] [debug] 70a80000 - 70a91000 wshbth.dll
[13:07:10] [debug] 6e300000 - 6e308000 rasadhlp.dll
[13:07:10] [debug] 65310000 - 6531d000 Whirlpool.DLL
[13:07:10] [debug] 10000000 - 1000e000 sscanf.DLL
[13:07:10] [debug] 595f0000 - 59657000 streamer.DLL
[13:07:10] [debug] 595b0000 - 595e9000 pawncmd.DLL
[13:07:10] [debug] 59450000 - 594c9000 pawnraknet.DLL
[13:07:10] [debug] 02b70000 - 02c15000 YSF_DL.DLL
[13:07:10] [debug] 74140000 - 7423c000 ole32.dll
[13:07:10] [debug] 747e0000 - 74876000 OLEAUT32.dll
[13:07:10] [debug] 02c30000 - 02d81000 SKY.DLL
[13:07:10] [debug] 74520000 - 74526000 PSAPI.DLL
[13:07:10] [debug] 6f140000 - 6f18f000 fwpuclnt.dll
[13:07:10] [debug] 72860000 - 72879000 bcrypt.dll
[13:07:10] [debug] 72dc0000 - 72e3c000 uxtheme.dll
[13:07:10] [debug] 70e80000 - 71000000 PROPSYS.dll
[13:07:10] [debug] 75160000 - 751e3000 clbcatq.dll
[13:07:10] [debug] 623f0000 - 62718000 OneCoreUAPCommonProxyStub.dll
[13:07:10] [debug] 6f5c0000 - 6f5fd000 edputil.dll
[13:07:10] [debug] 6bcd0000 - 6bd5b000 Windows.StateRepositoryPS.dll
[13:07:10] [debug] 6b330000 - 6b4cd000 urlmon.dll
[13:07:10] [debug] 70480000 - 706a9000 iertutil.dll
[13:07:10] [debug] 6f1a0000 - 6f1ba000 CLDAPI.dll
[13:07:10] [debug] 6e350000 - 6e426000 WinTypes.dll
[13:07:10] [debug] 6f110000 - 6f11d000 wbemprox.dll
[13:07:10] [debug] 6f300000 - 6f36b000 wbemcomn.dll
[13:07:10] [debug] 6f100000 - 6f110000 wbemsvc.dll
[13:07:10] [debug] 6f030000 - 6f0f3000 fastprox.dll
I am the current maintainer of both the weapon-config and SKY repos, so if you have issues with either of them, could you make an issue on github.

I don't actually follow this forum anymore, so I can't help you with issues that are posted here.
https://github.com/oscar-broman/samp...-config/issues
https://github.com/oscar-broman/SKY/issues
Reply

Solved.
Reply

All errors have been solved.
But I still get warnings :
pawn Code:
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2217) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2420) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2492) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2681) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2710) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2741) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2836) : warning 234: function is deprecated (symbol "SendLastSyncData") Please use SendLastSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(2911) : warning 234: function is deprecated (symbol "SendLastSyncData") Please use SendLastSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(4039) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(4268) : warning 234: function is deprecated (symbol "SendLastSyncData") Please use SendLastSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(4391) : warning 234: function is deprecated (symbol "SendLastSyncData") Please use SendLastSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(4943) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\pawno\include\weapon-config.inc(5520) : warning 234: function is deprecated (symbol "FreezeSyncData") Please use FreezeSyncPacket instead
D:\Data\SERVER\SATDMv12 - Copy - Copy\gamemodes\SATDMv12.pwn(13422) : warning 209: function "WC_OnGameModeExit" should return a value
Pawn compiler 3.10.4            Copyright (c) 1997-2006, ITB CompuPhase


14 Warnings.
Reply

Quote:
Originally Posted by PurmeX
View Post
The player disappears in the interior in the world of ID 0 does not disappear what's going on bug weapon config after upgrade?

uzywam new sky.so https://github.com/oscar-broman/SKY/releases/tag/2.2.1

weapon-config

https://github.com/oscar-broman/samp-weapon-config


Just when the player shoots or he disappears from the radar or it depends
Update to 2.2.2 to fix that.

https://github.com/oscar-broman/SKY/releases/tag/2.2.2
https://github.com/oscar-broman/SKY/...73aa9e48852376
Reply

i got a problem:
https://streamable.com/wblc8

why the player doesn't stay still? if i disable weapon-config, it works fine. how can i solve it?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)