[debug] AMX backtrace:
[debug] #0 000140b8 in DumpAMX_WriteEncoded (File:file=5134872, data[]=@014239c8 "", &offset=@014239c4 -127, compact=2, c=120, size=48) at C:CompilerincludeYSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:186
[debug] #1 00014a54 in bool:DumpAMX_WriteAMXCode (File:file=5134872, data[]=@014239c8 "", &offset=@014239c4 -127, size=48, compact=2) at C:CompilerincludeYSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:252
[debug] #2 00014d80 in bool:DumpAMX_Write (filename[]=@00008888 "YSI_CACHE.amx") at C:CompilerincludeYSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:282
[debug] #3 000012e4 in ScriptInit_CallOnCodeInit (bool:jit=false) at C:CompilerincludeYSI_Datay_foreach....YSI_Corey_corey_scriptinit_impl.inc:341
[debug] #4 00001ae0 in public YSIM_VERSION@a () <@a:> at C:CompilerincludeYSI_Datay_foreach....YSI_Corey_corey_scriptinit_impl.inc:575
@Y-Less this happend after you did y_commands fix I think
I’ve tried to reproduce this already and couldn’t. Do you have a MCVE? And what server version are you?
If you don’t care about caching you can compile with:
#define YSI_NO_MODE_CACHE
Copy link
Contributor
Author
YCMD:jp(playerid, params[], help)
{
SetPlayerSpecialAction(playerid, SPECIAL_ACTION_USEJETPACK);
return COMMAND_OK;
}
I removed this and error was gone, intersting.
EDIT: This is only YCMD I have atm
Copy link
Contributor
Author
Disabling caching removes the error!
Copy link
Contributor
Author
I tested on both Windows and Linux with:
//#define YSI_TESTS #define YSI_NO_HEAP_MALLOC #include <a_samp> #include <YSI_Playersy_groups> #include <YSI_Codingy_inline> #include <YSI_Visualy_commands> #include "random_module.pwn" main() {} YCMD:jp(playerid, params[], help) { SetPlayerSpecialAction(playerid, SPECIAL_ACTION_USEJETPACK); return COMMAND_OK; }
Nothing.
I’ve tried to reproduce this already and couldn’t. Do you have a MCVE? And what server version are you?
Even this sample gives the run time error 5:
#include <a_samp> #include <YSI_Playersy_groups> main() {}
Output:
Run time error 5: "Invalid memory access" AMX backtrace: #0 000141d0 in DumpAMX_WriteEncoded (File:file=5134872, data[]=@01796850 "", &offset=@0179684c -127, compact=2, c=120, size=48) at C:...pawnoincludeYSI_Playersy_groups....YSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:186 #1 00014b6c in bool:DumpAMX_WriteAMXCode (File:file=5134872, data[]=@01796850 "", &offset=@0179684c -127, size=48, compact=2) at C:...pawnoincludeYSI_Playersy_groups....YSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:252 #2 00014e98 in bool:DumpAMX_Write (filename[]=@00009664 "YSI_CACHE.amx") at C:...pawnoincludeYSI_Playersy_groups....YSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:282 #3 000011a4 in ScriptInit_CallOnCodeInit (bool:jit=false) at C:...pawnoincludeYSI_Playersy_groups....YSI_Corey_corey_scriptinit_impl.inc:341 #4 000019a0 in public YSI_gGroupData@Dist () <@7:> at C:...pawnoincludeYSI_Playersy_groups....YSI_Corey_corey_scriptinit_impl.inc:575
Only crashdetect (version 4.19.4) plugin was loaded.
Version of YSI is the latest commit of YSI 5.x
SA-MP server version is 0.3.7-R2
Using samp-stdlib and pawn-stdlib includes
Compiler version 3.10.10
Windows 7 Ultimate, SP1
Copy link
Contributor
Author
Oh boi, I noticed that this code won’t even compile at all using default compiler (it generated 6000kb amx file and using 100% cpu):
#include <a_samp>
#include <YSI_Visualy_commands>
main() {}
Also, errors are different If I include just y_va instead of y_commands for example:
[debug] Run time error 19: "File or function is not found"
[debug]
[debug] PA�
[debug] PA�
[debug] Run time error 19: "File or function is not found"
[debug]
[debug] PA�
[debug] PA�
Script[gamemodes/YSI_ERROR_DEBUG.amx]: Run time error 19: "File or function is not found"
Build system:
{
"selector": "source.pwn",
"file_regex": "(.*?)\(([0-9]*)[- 0-9]*\)",
"cmd": [
"pawncc.exe",
"$file",
"-o$file_path/$file_base_name",
"-;+",
"-(+",
"-d3"
],
"working_dir": "C:/Compiler"
}
EDIT: I even tested compiling with full default pawno.exe, same problem, won’t even compile..
https://imgur.com/a/ti5yicv
EDIT 2:
compiled it somehow, compiler output was same as above and file was 5kb large.
Some random ASCII symbols in error message again:
[debug] Run time error 19: «File or function is not found»
[debug]
[debug] <Yu��ñ
[debug] <Yu��ñ
[debug] Run time error 19: «File or function is not found»
[debug]
[debug] <Yu��ñ
[debug] <Yu��ñ
Script[gamemodes/YSI_ERROR_DEBUG.amx]: Run time error 19: «File or function is not found»
Number of vehicle models: 0
I’m not really bothered about the default compiler. I do TRY and keep compatible, but if it doesn’t work just don’t use it.
Copy link
Contributor
Author
I agree, had to test it anyway! 👍
EDIT: YSI related stuff in the first case (YCMD one):
// YSI
#define YSI_NO_HEAP_MALLOC (1)
#define YSI_NO_VERSION_CHECK (1)
#define YSI_NO_OPTIMISATION_MESSAGE (1)
#define YSI_NO_MODE_CACHE (1)
Copy link
Contributor
Author
I traced where the problem IS, I’ll edit this message once I confirm the EXACT location!
@Y-Less EDIT:
This might help:
y_dumpamx.inc line 186
while (index < ENC_MAX) {
data{offset++ ^ 0x03} = buffer{index++};
if (offset == size) {
// Write the whole cell.
fblockwrite(file, data, size >>> 2);
offset = 0;
}
}
This will be executed once (succesful iteration) but after it starts going through the while loop second time — It’ll fail on this line:
data{offset++ ^ 0x03} = buffer{index++};
I knew it was on that line from the first call stack, but I don’t know why:
[debug] #0 000140b8 in DumpAMX_WriteEncoded (File:file=5134872, data[]=@014239c8 "", &offset=@014239c4 -127, compact=2, c=120, size=48) at C:CompilerincludeYSI_Datay_foreach....YSI_Codingy_va....YSI_Corey_corey_dumpamx.inc:186
The problem is that I don’t get anything on that line, while you do.
However, I’ve just pushed some changes which MAY help. But who knows (since I still don’t know what the root cause is).
Copy link
Contributor
Author
That did not fix it, I’ll look into it (I’ll try my best XD)
Could you add this line please and tell me the output:
// straggling bytes offset = plain_amxhdr[AMX_HDR_OFFSET_COD / 4] - dat - start; printf("%d %d %d", plain_amxhdr[AMX_HDR_OFFSET_COD / 4], dat, start);
That’s the only place I can see it causing an issue.
Copy link
Contributor
Author
The run time error 5 is only given after pushing New crash detect compatibility.
: 5ac6030 and forward OnRuntimeError.
: 8fc852d commits. I did not receive it with previous commits.
After updating to latest commits, the output is:
and sample is still the one from before:
#include <a_samp> #include <YSI_Playersy_groups> main() {}
Copy link
Contributor
Author
This line, it won’t go further:
default: {
DumpAMX_WriteEncoded(file, data, offset, compact, _:opcode, size); // Run time error 5: "Invalid memory access"
new n = DisasmGetNumOperands(ctx);
for (new i = 0; i < n; i++) {
//data[i + 1] = DisasmGetOperandReloc(ctx, i);
print("7.1");
DumpAMX_WriteEncoded(file, data, offset, compact, DisasmGetOperandReloc(ctx, i), size);
print("7.2");
}
//fblockwrite(file, data, n + 1);
}
I KNOW WHY! I figured it out while waiting.
I updated amx_assembly, but didn’t push the changes! So I’ve been using a different version to everyone else!
Copy link
Contributor
Author
I fucking wanted to ask on the beginning for your amx version… -_-
Thank you!
(I even went 15 commits back in the amx xD)
Going backwards wouldn’t have helped, since I had a private version (but had you asked, I’d have probably realised instantly). The annoying thing is an earlier version of the code didn’t use the value from amx_assembly because I knew it was wrong, but clearly I lost that in the changes. This was the root issue:
Zeex/amx_assembly@5f1e235
That value was wrong, and I was using it in the code. But I’m now not using it directly so you don’t need to update both:
3e00013
Thank you so much both of you — @tr1xy and @George480 for helping me get to the bottom of this!
Plus, while trying to solve this issue I found another bug in the code, but it was far more subtle so wouldn’t have crashed anything.
AND found a bug in my new PR for crashdetect. So all in all, three bugs at once!
Fixes for runtime errors
Sections
- Runtime error 3: Stack/heap collision (insufficient stack size)
- Runtime error 4: Array index out of bounds
- Runtime error 5: Invalid memory access
- Runtime error 7: Stack underflow
- Runtime error 10: Native function failed
- Runtime error 11: Divide by zero
- Runtime error 12: (sleep mode)
- Runtime error 16: Out of memory
- Runtime error 17: Invalid/unsupported P-code file format
- Runtime error 19: File or function is not found
- Runtime error 20: Invalid index parameter (bad entry point)
- Runtime error 22: AMX not initialized (or doubly initialized)
Introduction
New scripters are always having issues with certain runtime problems, so this tutorial will help suppress of those errors to ensure a safe, stable mode.
Basically, runtime errors are errors that are generated at runtime and not by your compiler. I’ve listed all of the common ones below (there are either some missing, or so rare that nobody ever receives them) to the best of my knowledge, so read on if you’re interested.
Runtime error 3
Your script has apparently ran out of local memory. The stack is where any local variables are allocated and stored, in terms of memory. This means that the stack and the heap are colliding with each other, which could effectively corrupt data in the long run.
Solution: Try to use less cells for local declaration. For example, huge strings can be declared using «static» so it isn’t allocated every function call. Alternatively, there’s «#pragma dynamic x» but that’s only if you’re lazy.
Runtime error 4
Very simple, you’re trying to access out-of-bound data in an array, in other words, a cell inside of an array that doesn’t exist.
Solution: If you’re using the crashdetect plugin, it’ll tell you which callback the error is in. Simply debug your code until you find the culprit, then remove it.
Runtime error 5
You are either trying to incorrectly access memory, or the system was unable to read or write any memory because of an incorrectly used native.
Solution: Look in the callback and see if you can find the problem. These are really tricky to find, so you have to be careful and debug your code one-by-one.
Runtime error 7
This is caused by removing too much data from the stack. Eventually, the stack register becomes a negative number and corrupts all of your shit.
Solution: Debug the code and remove any code that uses #emit until the problem is found.
Runtime error 10
A native function has been used incorrectly, or one of the parameters are incorrectly used.
Solution: Remove the corresponding native from your code and look up a way to correctly use that function.
Runtime error 11
This is caused by dividing zero with another number.
Solution: Don’t divide by zero, idiot!
Runtime error 12
This is caused by using «sleep mode» in a function other than the entry point (main). This is a very rare issue, and it can sometimes be caused by external libraries.
Solution: Only use «sleep» in the main entry.
Runtime error 16
Your computer has ran out of memory, and there’s no way to store the data any further.
Solution: Get a new computer, or use less memory (pointing back to error 3).
Runtime error 17
Your .AMX file is corrupt and contains an invalid P-code format. This can be caused by trying to run the server while the script is compiling.
Solution: Shut the server off and compile the script again. If you’ve uploaded the .amx file, then upload it again.
Runtime error 19
One of the most common known problems in SA-MP. This simply means that the include and plugin versions might not match. One of them is either outdated, or newer than the other.
Solution: Update your plugins and includes. If you can, disable your plugins until the problem is found.
Runtime error 20
When running a gamemode, the «main» function indicates the entry point for that mode. Without it, your mode won’t function properly.
Solution: Add this snippet under your includes:
Runtime error 22
This is caused by the abstract machine not being initialized properly, or being initialized twice.
Solution: Find out where the problem is coming from. Disable any filterscripts or plugins, and debug your mode. This error also pops up frequently when using #emit incorrectly.
Notes
- I apologize for any incorrect information. It was late when I made this tutorial, you know.
- There are more runtime problems (I believe there’s around ~25) but I only listed the frequent ones.
- Whoever stole the pancake mix that was in my drawer, you better fucking give it back, NOW.
Conclusion
Okay, so you’ve managed to reach the end of this tutorial, good for you.
Alternatively, you can also solve these problems yourself by using common sense, debugging your code and running the usual tests.
stock JailPlayer(victim, playerid, jailtime, reason[]) // Сам stock
{
new string1[639], year, month, day, hour, minute, second;
getdate(year, month, day), gettime(hour, minute, second);
GetJail(victim, jJailer) = GetPlayer(playerid, pName);
GetJail(victim, jName) = GetPlayer(playerid, pName);
GetJail(victim, jReason) = reason[50];
GetJail(victim, jJailTime) = gettime() + (jailtime*60);
GetJail(victim, jJailMinutes) = jailtime;
GetJail(victim, jYear) = year;
GetJail(victim, jMonth) = month;
GetJail(victim, jDay) = day;
GetJail(victim, jHour) = hour;
GetJail(victim, jMinute) = minute;
GetJail(victim, jSecond) = second;
GetPlayer(victim, pInJail) = 1;
static const fmt_string1[] = "UPDATE `users` SET injail = '1' WHERE name = '%s' LIMIT 1";
new str1[sizeof(fmt_string1)+1+MAX_PLAYER_NAME];
mysql_format(dbHandle, str1, sizeof(str1), fmt_string1, GetPlayer(victim, pName));
mysql_tquery(dbHandle, str1);
static const fmt_string[] = "INSERT INTO `jaillist` (`jailer`, `name`, `reason`, `minutes`, `jailtime`, `timeleft`, `year`, `month`, `day`, `hour`, `minute`, `second`) VALUE ('%s', '%s', '%s', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d')";
new str[sizeof(fmt_string)+MAX_PLAYER_NAME+MAX_PLAYER_NAME+50+4+10+10+4+2+2+2+2+2];
mysql_format(dbHandle, str, sizeof(str), fmt_string, GetPlayer(playerid, pName), GetPlayer(victim, pName), reason[50], jailtime, GetJail(victim, jJailTime), GetJail(victim, jJailTime), year, month, day, hour, minute, second);
mysql_tquery(dbHandle, str);
GetPlayer(victim, JailTimer) = SetTimerEx("JailTimers", 1000, true, "i", victim);
SetPlayerPos(victim, 1160.7643, 4182.0981, 52.7781+2);
SetPlayerFacingAngle(victim, 68.0790);
SetCameraBehindPlayer(victim);
SetPlayerVirtualWorld(victim, JAIL_VIRT_WORLD);
SetPlayerInterior(victim, 0);
format(string1, sizeof(string1), ""WHITE_COLOR"Вы были посажены в "ADMIN_COLOR"тюрьму"WHITE_COLOR" за нарушение правил сервера.n");
format(string1, sizeof(string1), "%sСделайте скриншот данного окна "ADMIN_COLOR"(PrtSc)"WHITE_COLOR".nn", string1);
format(string1, sizeof(string1), "%sЕсли Вы не согласны с наказанием, то Вы можете подать апелляцию на форумn", string1);
format(string1, sizeof(string1), "%s"ADMIN_COLOR"(talk.revivalrp.com -> Жалобы -> Жалобы на команду проекта)."ADMIN_COLOR"nn", string1);
format(string1, sizeof(string1), "%sИнформация:"ADMIN_COLOR"n", string1);
format(string1, sizeof(string1), "%st* "WHITE_COLOR"Дата выдачи наказания:"ADMIN_COLOR" %d-%02d-%02d %02d:%02d:%02dn", string1, year, month, day, hour, minute, second);
format(string1, sizeof(string1), "%st* "WHITE_COLOR"Срок наказания:"ADMIN_COLOR" %d минутn", string1, jailtime);
format(string1, sizeof(string1), "%st* "WHITE_COLOR"Выдано наказание Администратором:"ADMIN_COLOR" %sn", string1, GetPlayer(playerid, pName));
format(string1, sizeof(string1), "%st* "WHITE_COLOR"Причина наказания:"ADMIN_COLOR" %s", string1, reason[50]);
ShowPlayerDialog(victim, D_NONE, DIALOG_STYLE_MSGBOX, ""ADMIN_COLOR"| "WHITE_COLOR"Информация о наказании(jail)", string1, "Закрыть", "");
}
Run time error 5: memory access
Модератор: Модераторы
- Список форумов ‹ Остальное ‹ Болтовня
Правила форума
1. Запрещено материться и оскорблять других участников форума.
2. Запрещен флуд, оффтоп, дабл постинг во всех разделах форума, кроме раздела «Болтовня».
3. Запрещено взламывать сайт/форум или наносить любой вред проекту.
4. Запрещено рекламировать другие ресурсы.
5. Запрещено создавать темы без информативного названия. Название темы должно отображать ее смысл.
- Ответить с цитатой
Run time error 5: memory access
Вобщим очень много Run time error 5: memory access которые иногда сопровождаются падением сервера с ошибкой в amxmodx_mm.dll .
Как это дело поправить ?
[pawn]
L 05/04/2010 — 11:43:17: Start of error session.
L 05/04/2010 — 11:43:17: Info (map «de_dust») (file «addons/amxmodx/logs/error_20100504.log»)
L 05/04/2010 — 11:43:17: [AMXX] Displaying debug trace (plugin «superban.amxx»)
L 05/04/2010 — 11:43:17: [AMXX] Run time error 5: memory access
L 05/04/2010 — 11:43:17: [AMXX] [0] superban.sma::StartCheck (line 286)
L 05/04/2010 — 11:44:15: [AMXX] Run time error 5 (plugin «afkkicker.amxx») — debug not enabled!
L 05/04/2010 — 11:44:15: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
L 05/04/2010 — 11:48:09: [AMXX] Displaying debug trace (plugin «csdm_main.amxx»)
L 05/04/2010 — 11:48:09: [AMXX] Run time error 5: memory access
L 05/04/2010 — 11:48:09: [AMXX] [0] csdm_main.sma::delay_find_weapon (line 290)
L 05/04/2010 — 11:52:23: [AMXX] Run time error 5 (plugin «afkkicker.amxx») — debug not enabled!
L 05/04/2010 — 11:52:23: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
L 05/04/2010 — 11:53:22: [AMXX] Displaying debug trace (plugin «superban.amxx»)
L 05/04/2010 — 11:53:22: [AMXX] Run time error 5: memory access
L 05/04/2010 — 11:53:22: [AMXX] [0] superban.sma::WriteConfig (line 272)
[/pawn]
Я знаю только то, что я ничего не знаю.
-
Skriptar
- Сообщения: 953
- Зарегистрирован: 20 окт 2009, 15:34
- Благодарил (а): 180 раз.
- Поблагодарили: 136 раз.
- Языки программирования: Counter-Strike 1.6
- Ответить с цитатой
Re: Run time error 5: memory access
Ser_UFL » 04 май 2010, 15:32
version
metamod_version
amxmodx_version
meta list
amxx modules
amxx plugins
Запомните, всегда по жизни вас будут красить вежливость и спокойствие, а не наезды и дешевые понты
-
Ser_UFL
- Сообщения: 975
- Зарегистрирован: 22 авг 2009, 19:30
- Откуда: Hell
- Благодарил (а): 276 раз.
- Поблагодарили: 380 раз.
- Языки программирования: Counter-Strike 1.6:
WebMod-scripts, little Pawn. -
- Сайт
- ICQ
- Ответить с цитатой
Re: Run time error 5: memory access
Skriptar » 04 май 2010, 19:22
[pawn]] amx_showrcon version
Protocol version 48
Exe version 1.1.2.6 (cstrike)
Exe build: 14:21:06 Mar 8 2010 (4554)
]
amx_showrcon metamod_version
«metamod_version» is «1.19»] amx_showrcon amxmodx_version
«amxmodx_version» is «1.8.1.3746
] amx_showrcon meta list
Currently loaded plugins:
description stat pend file vers src load unlod
[ 1] mmtimer RUN — mmtimer.dll v1.6 ini ANY Never
[ 2] AMX Mod X RUN — amxmodx_mm.dll v1.8.1.3 ini Start ANY
[ 3] dproto RUN — dproto.dll v0.4.8 ini Start Never
[ 4] POD-Bot mm RUN — podbot_mm.dll vV3B20o ini Chlvl ANY
[ 5] Fun RUN — fun_amxx.dll v1.8.1.3 pl2 ANY ANY
[ 6] CStrike RUN — cstrike_amxx.dll v1.8.1.3 pl2 ANY ANY
[ 7] CSX RUN — csx_amxx.dll v1.8.1.3 pl2 ANY ANY
[ 8] Orpheu RUN — orpheu_amxx.dll v2.3 pl2 ANY ANY
[ 9] MySQL RUN — mysql_amxx.dll v1.8.1.3 pl2 ANY ANY
[10] Engine RUN — engine_amxx.dll v1.8.1.3 pl2 ANY ANY
[11] FakeMeta RUN — fakemeta_amxx.dl v1.8.1.3 pl2 ANY ANY
[12] CSDM2 RUN — csdm_amxx.dll v2.1.2k pl2 ANY ANY
] amx_showrcon amxx modules
Currently loaded modules:
name version author status
[ 1] Fun 1.8.1.3746 AMX Mod X Dev Team running
[ 2] CStrike 1.8.1.3746 AMX Mod X Dev Team running
[ 3] CSX 1.8.1.3746 AMX Mod X Dev Team running
[ 4] Orpheu 2.3 joaquimandrade running
[ 5] MySQL 1.8.1.3746 AMX Mod X Dev Team running
[ 6] Engine 1.8.1.3746 AMX Mod X Dev Team running
[ 7] FakeMeta 1.8.1.3746 AMX Mod X Dev Team running
[ 8] CSDM2 2.1.2k CSDM Team running
] amx_showrcon amxx plugins
Currently loaded plugins:
name version author file status
[ 1] AMXBans Admin rc5.1 1.8.1.3746 AMXBans Dev Team admin_amxbans.a debug
[ 2] AMXBans 5.1rc YoMama/Lux & lan amxbans.amxx debug
[ 3] Admin Commands 1.8.1.3746 AMXX Dev Team admincmd.amxx running
[ 4] Admin Help 1.8.1.3746 AMXX Dev Team adminhelp.amxx running
[ 5] Multi-Lingual System 1.8.1.3746 AMXX Dev Team multilingual.am running
[ 6] Menus Front-End 1.8.1.3746 AMXX Dev Team menufront.amxx running
[ 7] Commands Menu 1.8.1.3746 AMXX Dev Team cmdmenu.amxx running
[ 8] Players Menu 1.8.1.3746 AMXX Dev Team plmenu.amxx running
[ 9] Maps Menu 1.8.1.3746 AMXX Dev Team mapsmenu.amxx running
[ 10] Plugin Menu 1.8.1.3746 AMXX Dev Team pluginmenu.amxx running
[ 11] Admin Chat 1.8.1.3746 AMXX Dev Team adminchat.amxx running
[ 12] Anti Flood 1.8.1.3746 AMXX Dev Team antiflood.amxx running
[ 13] Scrolling Message 1.8.1.3746 AMXX Dev Team scrollmsg.amxx running
[ 14] Info. Messages 1.8.1.3746 AMXX Dev Team imessage.amxx running
[ 15] Admin Votes 1.8.1.3746 AMXX Dev Team adminvote.amxx running
[ 16] NextMap 1.8.1.3746 AMXX Dev Team nextmap.amxx running
[ 17] UFPS Nextmap Chooser 1.8.1.3746 AMXX Dev Team mapchooser.amxx running
[ 18] TimeLeft 1.8.1.3746 AMXX Dev Team timeleft.amxx running
[ 19] Pause Plugins 1.8.1.3746 AMXX Dev Team pausecfg.amxx running
[ 20] Stats Configuration 1.8.1.3746 AMXX Dev Team statscfg.amxx running
[ 21] StatsX 1.8.1.3746 AMXX Dev Team statsx.amxx running
[ 22] CS Stats Logging 1.8.1.3746 AMXX Dev Team stats_logging.a running
[ 23] SuperBan 3.25 Lukmanov Ildar superban.amxx debug
[ 24] Auto Join on Connect 0.1 VEN auto_join_on_co running
[ 25] Simple Check Rate 1.0 Ser_UFL [not scr amx_fixclient.a running
[ 26] Kick Non-Steam Users 1.0 xPaw KickNonSteam.am running
[ 27] Chat Logger 2.1a Jim chat_logger.amx running
[ 28] AMX Client Exec 0.03 v3x amx_exec.amxx running
[ 29] PS3 — stats rank top15 1.0 GeroiN ps3stats.amxx running
[ 30] Amx Subnet Ban 2.0 sjgunner amx_subnetban2. running
[ 31] Advertising Filter 1.1 SniperBeamer advertising_fil running
[ 32] Infinite Round 1.0.0 Arkshine infinite_round. running
[ 33] High Ping Kicker 1.2.0 DynAstY hpk.amxx paused
[ 34] AFK Kicker 1.0b Cheesy Peteza afkkicker.amxx debug
[ 35] CSDM Main 2.1.2k CSDM Team csdm_main.amxx debug
[ 36] CSDM Equip 2.1.2k CSDM Team csdm_equip.amxx running
[ 37] CSDM Spawns 2.1.2k CSDM Team csdm_spawn_pres running
[ 38] CSDM Misc 2.1.2k CSDM Team csdm_misc.amxx running
[ 39] CSDM Stripper 2.1.2k KWo csdm_stripper.a running
[ 40] CSDM Protection 2.1.2k BAILOPAN csdm_protection running
40 plugins, 39 running
[/pawn]
Я знаю только то, что я ничего не знаю.
-
Skriptar
- Сообщения: 953
- Зарегистрирован: 20 окт 2009, 15:34
- Благодарил (а): 180 раз.
- Поблагодарили: 136 раз.
- Языки программирования: Counter-Strike 1.6
- Ответить с цитатой
Re: Run time error 5: memory access
Ser_UFL » 04 май 2010, 19:56
Хмм.. Так-то вроде всё нормально.
Разве что dproto пропиши первым в ..cstrikeaddonsmetamodplugins.ini (так в инструкции).
И поставь Вы должны зарегистрироваться, чтобы видеть ссылки.
Вспоминай, что ставил в последнее время, перед тем как появилась ошибка..
Запомните, всегда по жизни вас будут красить вежливость и спокойствие, а не наезды и дешевые понты
-
Ser_UFL
- Сообщения: 975
- Зарегистрирован: 22 авг 2009, 19:30
- Откуда: Hell
- Благодарил (а): 276 раз.
- Поблагодарили: 380 раз.
- Языки программирования: Counter-Strike 1.6:
WebMod-scripts, little Pawn. -
- Сайт
- ICQ
- Ответить с цитатой
Re: Run time error 5: memory access
Skriptar » 04 май 2010, 20:18
Хотел еще спросить какие байты надо пропатчить в двигле сервера контры для работы без memhack, orheu и т.д.
Есть подозрение на Орфей
сигнатуры здесь Вы должны зарегистрироваться, чтобы видеть ссылки.
Я знаю только то, что я ничего не знаю.
-
Skriptar
- Сообщения: 953
- Зарегистрирован: 20 окт 2009, 15:34
- Благодарил (а): 180 раз.
- Поблагодарили: 136 раз.
- Языки программирования: Counter-Strike 1.6
- Ответить с цитатой
Re: Run time error 5: memory access
Skriptar » 05 май 2010, 17:15
Вобщим я сейчас глянул, а stats.ini не сохраняется в логах
[pawn]
L 05/05/2010 — 03:35:15: Start of error session.
L 05/05/2010 — 03:35:15: Info (map «de_nuke») (file «addons/amxmodx/logs/error_20100505.log»)
L 05/05/2010 — 03:35:15: Couldnt write file «cstrikeaddonsamxmodxconfigsstats.ini»
L 05/05/2010 — 03:35:15: [AMXX] Run time error 10 (plugin «statscfg.amxx») (native «write_file») — debug not enabled!
L 05/05/2010 — 03:35:15: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
[/pawn]
Это уже связано я так понял с тем, что запуск идет из под Usera
Как настроить по нормальному права Usera для HLDS ?
Я знаю только то, что я ничего не знаю.
-
Skriptar
- Сообщения: 953
- Зарегистрирован: 20 окт 2009, 15:34
- Благодарил (а): 180 раз.
- Поблагодарили: 136 раз.
- Языки программирования: Counter-Strike 1.6
- Ответить с цитатой
Re: Run time error 5: memory access
DJ_WEST » 05 май 2010, 19:52
- Код: Выделить всё
L 05/04/2010 - 11:52:23: [AMXX] Run time error 5 (plugin "afkkicker.amxx") - debug not enabled!
А где debug для этого плагина?
Не пишите мне в ЛС: если вам нужна помощь на бесплатной основе. Любые вопросы на форум.
-
DJ_WEST
- Сообщения: 3641
- Зарегистрирован: 22 авг 2009, 00:38
- Благодарил (а): 48 раз.
- Поблагодарили: 2208 раз.
- Опыт программирования: Больше трех лет
- Языки программирования: Counter-Strike 1.6
Counter-Strike: Source
Left 4 Dead
Left 4 Dead 2
- Ответить с цитатой
Re: Run time error 5: memory access
Skriptar » 05 май 2010, 22:01
Да тут я так понял косяк в назначении прав дефалтовому Юзеру:
[pawn]
L 05/05/2010 — 02:49:16: Start of error session.
L 05/05/2010 — 02:49:16: Info (map «de_inferno») (file «addons/amxmodx/logs/error_20100505.log»)
L 05/05/2010 — 02:49:16: Couldn‘t write file «cstrikeaddonsamxmodxconfigsstats.ini»
L 05/05/2010 — 02:49:16: [AMXX] Run time error 10 (plugin «statscfg.amxx») (native «write_file») — debug not enabled!
L 05/05/2010 — 02:49:16: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
L 05/05/2010 — 02:58:14: Start of error session.
L 05/05/2010 — 02:58:14: Info (map «de_dust2») (file «addons/amxmodx/logs/error_20100505.log»)
L 05/05/2010 — 02:58:14: Couldn’t write file «cstrikeaddonsamxmodxconfigsstats.ini»
L 05/05/2010 — 02:58:14: [AMXX] Run time error 10 (plugin «statscfg.amxx») (native «write_file») — debug not enabled!
L 05/05/2010 — 02:58:14: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
L 05/05/2010 — 03:00:04: Couldn‘t write file «cstrikeaddonsamxmodxconfigsstats.ini»
L 05/05/2010 — 03:00:04: [AMXX] Run time error 10 (plugin «statscfg.amxx») (native «write_file») — debug not enabled!
L 05/05/2010 — 03:00:04: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
L 05/05/2010 — 03:35:15: Start of error session.
L 05/05/2010 — 03:35:15: Info (map «de_nuke») (file «addons/amxmodx/logs/error_20100505.log»)
L 05/05/2010 — 03:35:15: Couldn’t write file «cstrikeaddonsamxmodxconfigsstats.ini»
L 05/05/2010 — 03:35:15: [AMXX] Run time error 10 (plugin «statscfg.amxx») (native «write_file») — debug not enabled!
L 05/05/2010 — 03:35:15: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes).
L 05/05/2010 — 17:21:44: Start of error session.
L 05/05/2010 — 17:21:44: Info (map «de_aztec») (file «addons/amxmodx/logs/error_20100505.log»)
L 05/05/2010 — 17:21:44: Couldnt write file «cstrikeaddonsamxmodxconfigsstats.ini»
L 05/05/2010 — 17:21:44: [AMXX] Run time error 10 (plugin «statscfg.amxx») (native «write_file») — debug not enabled!
L 05/05/2010 — 17:21:44: [AMXX] To enable debug mode, add «debug» after the plugin name in plugins.ini (without quotes). [/pawn]
Полные права Юзеру нужно назначить на директории логов и конфигов AMXa
Я знаю только то, что я ничего не знаю.
-
Skriptar
- Сообщения: 953
- Зарегистрирован: 20 окт 2009, 15:34
- Благодарил (а): 180 раз.
- Поблагодарили: 136 раз.
- Языки программирования: Counter-Strike 1.6
- Ответить с цитатой
Re: Run time error 5: memory access
Skriptar » 09 май 2010, 20:34
Вобщим сейчас заметил, что на всех папках в компе атрибут только чтение, но это вроде не считается глюком и не снимается вобще никак, но сервер зависает иногда даже при запуске.
Т.е. дело в зависаниях при записи или создании файлов при чем даже с правами админа.
Что делать ? ставить Profesional или Nix ?
Кажеться нашел фикс Вы должны зарегистрироваться, чтобы видеть ссылки.
Я знаю только то, что я ничего не знаю.
-
Skriptar
- Сообщения: 953
- Зарегистрирован: 20 окт 2009, 15:34
- Благодарил (а): 180 раз.
- Поблагодарили: 136 раз.
- Языки программирования: Counter-Strike 1.6
Вернуться в Болтовня
Кто сейчас на конференции
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 1
SA-MP Dedicated Server
———————-
v0.3.7-R2, (C)2005-2015 SA-MP Team
[17:18:03]
[17:18:03] Server Plugins
[17:18:03] —————
[17:18:03] Loading plugin: crashdetect.so
[17:18:03] CrashDetect plugin 4.20
[17:18:03] Loaded.
[17:18:03] Loading plugin: fmt.so
[17:18:03] * fmt plugin loaded
[17:18:03] * v2.1 (c) vsergeenko
[17:18:03] Loaded.
[17:18:03] Loading plugin: md5.so
[17:18:03] MD5 v1.2 by BJIADOKC loaded
[17:18:03] Loaded.
[17:18:03] Loading plugin: pawncmd.so
[17:18:03] Pawn.CMD plugin v3.2.0 by urShadow has been loaded
[17:18:03] Loaded.
[17:18:03] Loading plugin: pawnraknet.so
[17:18:03] [Pawn.RakNet]
| Pawn.RakNet 1.4.1 | 2016 — 2020
|———————————
| Author and maintainer: urShadow
| Compiled: Jun 18 2020 at 11:28:17
|—————————————————————
| Forum thread: https://forum.sa-mp.com/showthread.php?t=640306
|—————————————————————
| Repository: https://github.com/urShadow/Pawn.RakNet
|—————————————————————
| Wiki: https://github.com/urShadow/Pawn.RakNet/wiki
[17:18:03] Loaded.
[17:18:03] Loading plugin: sscanf.so
[17:18:03]
[17:18:03] ===============================
[17:18:03] sscanf plugin loaded.
[17:18:03] Version: 2.8.3
[17:18:03] (c) 2018 Alex «Y_Less» Cole
[17:18:03] ===============================
[17:18:03] Loaded.
[17:18:03] Loading plugin: streamer.so
[17:18:03]
*** Streamer Plugin v2.9.4 by Incognito loaded ***
[17:18:03] Loaded.
[17:18:03] Loading plugin: CrackLauncherAddon.so
[17:18:03] Loaded.
[17:18:03] Loading plugin: LauncherAddon.so
[17:18:04]
[17:18:04] ========[ LauncherAddon 1.3 ]========
[17:18:04]
[17:18:04] Версия сервера: 0.3.7 R2
[17:18:04] Операционная система: Linux
[17:18:04]
[17:18:04] (c) — legendabrn —
[17:18:04] crack by vk.com/legendabrn
[17:18:04]
[17:18:04] Проверка активации…
[17:18:04] Проверка активации успешно пройдена
[17:18:04] ===============================
[17:18:04] Loaded.
[17:18:04] Loading plugin: TOTP.so
[17:18:04] TOTP plugin v1.0.1 by Games loaded.
[17:18:04] Loaded.
[17:18:04] Loading plugin: YSF_static.so
[17:18:04]
[17:18:04] ==============================================
[17:18:04] YSF 2.1 (compiled May 8 2021 08:38:37) loaded
[17:18:04] (c) 2008 Alex «Y_Less» Cole
[17:18:04] (c) 2010 — 2018 kurta999
[17:18:04] (c) 2018 — 2020 IllidanS4
[17:18:04] Server version: 0.3.7 R2-1 or R2-2, Linux
[17:18:04] ==============================================
[17:18:04]
[17:18:04] Loaded.
[17:18:04] Loading plugin: mysql.so
[17:18:04] >> plugin.mysql: R41-3 successfully loaded.
[17:18:04] Loaded.
[17:18:04] Loading plugin: pawnbots.so
[17:18:04] Failed (plugins/pawnbots.so: cannot open shared object file: No such file or directory)
[17:18:04] Loaded 12 plugins.
[17:18:04]
[17:18:04] Filterscripts
[17:18:04] —————
[17:18:04] Loading filterscript ‘map.amx’…
[17:18:05] [Launcher Addon]: Warning — В загружаемом AMX не подключен инклуд LauncherAddon.inc
[17:18:05] [debug] Long callback execution detected (hang or performance issue)
[17:18:05] [debug] AMX backtrace:
[17:18:05] [debug] #0 000001f4 in fo_CreateDynamicObject (modelid=2315, Float:x=1578.67395, Float:y=-650.39532, Float:z=97.38188, Float:rx=0.00000, Float:ry=0.00001, Float:rz=0.00000, worldid=-1, interiorid=-1, playerid=-1, … <4 more arguments>) at C:UsersЭлбекDesktopARIZONA ROLE PLAY PERFECTpawnoincludefixobject2.inc:14
[17:18:05] [debug] #1 0007efa8 in public fo_OnFilterScriptInit () at ..libraryMAPvip.inc:1215
[17:18:05] [debug] #2 00000560 in public OnFilterScriptInit () at C:UsersЭлбекDesktopARIZONA ROLE PLAY PERFECTpawnoincludefixobject2.inc:161
[17:18:05] [connection] 95.104.197.3:56443 requests connection cookie.
[17:18:05] LoadMap загрузился за 243 ms
[17:18:05] Loading filterscript ‘map_aleksandr.amx’…
[17:18:05] [Launcher Addon]: Warning — В загружаемом AMX не подключен инклуд LauncherAddon.inc
[17:18:05] [debug] Long callback execution detected (hang or performance issue)
[17:18:05] [debug] AMX backtrace:
[17:18:05] [debug] #0 000b096c in LoadMap_EliteHousesandTCP () at C:UsersЭлбекDesktopARIZONA ROLE PLAY PERFECTfilterscriptsmap_aleksandr.pwn:4884
[17:18:05] [debug] #1 000000b4 in public OnFilterScriptInit () at C:UsersЭлбекDesktopARIZONA ROLE PLAY PERFECTfilterscriptsmap_aleksandr.pwn:15
[17:18:05] LoadMap_Aleksandr загрузился за 8 ms
[17:18:05] Loading filterscript ‘piar.amx’…
[17:18:05] [Launcher Addon]: Warning — В загружаемом AMX не подключен инклуд LauncherAddon.inc
[17:18:05] Loading filterscript ‘hostname.amx’…
[17:18:05] [Launcher Addon]: Warning — В загружаемом AMX не подключен инклуд LauncherAddon.inc
[17:18:05] Loading filterscript ‘gmx.amx’…
[17:18:05] [Launcher Addon]: Warning — В загружаемом AMX не подключен инклуд LauncherAddon.inc
[17:18:05] Loaded 5 filterscripts.
[17:18:05]
[17:18:05] —————————————
[17:18:05] =B8G8B Nex-AC 703@C65=!
[17:18:05] 5@A8O 0=B8G8B0: 1.9.57
[17:18:05] 2B>@: Nexius
[17:18:05] —————————————
[17:18:05] [Server-log] Сработал рандом на люкс автомобиль #71
[17:18:05] [debug] Long callback execution detected (hang or performance issue)
[17:18:05] [debug] AMX backtrace:
[17:18:05] [debug] #0 00003254 in Iter_ClearInternal (&count=@01575624 0, array[]=@01575628 «———————————————————————————…», size=300) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludeforeach.inc:1718
[17:18:05] [debug] #1 004f2e4c in public PawnCmd_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:33365
[17:18:05] [debug] #2 0006879c in public ac_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.CMD.inc:125
[17:18:05] [debug] #3 00023b08 in public PawnRakNet_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:3468
[17:18:05] [debug] #4 00015f74 in public SSCANF_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.RakNet.inc:1029
[17:18:05] [debug] #5 0000afbc in public fo_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludesscanf2.inc:211
[17:18:05] [debug] #6 00003abc in public Iter_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludefixobject1.inc:271
[17:18:05] [debug] #7 00001f90 in public OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludeforeach.inc:660
[17:18:05] 12
[17:18:05] =======> mysql connect 1
[17:18:05] =======> mysql_logs connect 1
[17:18:05] MySQL подключился за 248 ms | ID подключения: 2
[17:18:05] file ‘config.ini’ not found
[17:18:06] LoadVehicles загрузился за 111 ms
[17:18:06] LoadOther загрузился за 9 ms
[17:18:06] LoadActors загрузился за 10 ms
[17:18:06] LoadGlobalTextDraws загрузился за 7 ms
[17:18:09] LoadOwnableCars загрузился за 3487 ms
[17:18:09] LoadCity загрузился за 174 ms
[17:18:09] LoadContainer загрузился за 0 ms
[17:18:09] LoadFullDostup(5) — loaded in 18 ms
[17:18:09] Подключение к базе данных удалось
[17:18:09] Создано транспорта: 1516
[17:18:09] Создано объектов: 56727
[17:18:09] Создано иконок: 180
[17:18:09] Создано 3D текстов: 2223
[17:18:09] OnGameModeInit загрузился за 4093 ms
[17:18:09] MAX_PLAYERS — 300
[17:18:09] [BITCOIN API] Обновление стоимости Bitcoin…
[17:18:09] [debug] Run time error 5: «Invalid memory access»
[17:18:09] [debug] AMX backtrace:
[17:18:09] [debug] #0 004f7460 in public PawnCmd_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:33443
[17:18:09] [debug] #1 0006879c in public ac_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.CMD.inc:125
[17:18:09] [debug] #2 00023b08 in public PawnRakNet_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:3468
[17:18:09] [debug] #3 00015f74 in public SSCANF_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.RakNet.inc:1029
[17:18:09] [debug] #4 0000afbc in public fo_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludesscanf2.inc:211
[17:18:09] [debug] #5 00003abc in public Iter_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludefixobject1.inc:271
[17:18:09] [debug] #6 00001f90 in public OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludeforeach.inc:660
[17:18:09] [Pawn.RakNet] Load: Warning! You probably forgot to define FILTERSCRIPT in one of your filterscripts
[17:18:09] ______________________________
[17:18:09] | Arizona PROJECT |
[17:18:09] | Copyright 2021 (c) |
[17:18:09] ______________________________
[17:18:09] Number of vehicle models: 100
[17:18:09] [connection] incoming connection: 95.104.197.3:56443 id: 0
[17:18:09] [join] Prizrak has joined the server (0:95.104.197.3)
[17:18:09] [debug] Long callback execution detected (hang or performance issue)
[17:18:09] [debug] AMX backtrace:
[17:18:09] [debug] #0 00169424 in LoadOwnableHouse (i=0, id=0) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:22156
[17:18:09] [debug] #1 00167840 in public LoadHouses () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:22097
[17:18:12] LoadHouses(1114) загрузился за 2229 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 0016b304 in public LoadGangZones () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:22310
[17:18:12] LoadGangZones(130) загрузился за 9 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00166080 in public LoadSletCar () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:22001
[17:18:12] [debug] Run time error 4: «Array index out of bounds»
[17:18:12] [debug] Attempted to read/write array element at index 100 in array of size 100
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00165ea0 in public LoadSletCar () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:21996
[17:18:12] LoadObjects(0) загрузился за 0 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00022d08 in acc_CreateDynamicPickup (modelid=1242, type=23, Float:x=-1507.62683, Float:y=2707.49707, Float:z=1500.98083, worldid=66, interiorid=1, playerid=-1, Float:streamdistance=200.00000, areaid=-1, … <1 more argument>) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:2242
[17:18:12] [debug] #1 00332094 in LoadOwnableFamilyHouse (i=15, id=15) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:25076
[17:18:12] [debug] #2 00330e78 in public LoadFamilyHouse () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:25030
[17:18:12] LoadFamilyHouse(38) загрузился за 17 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 009366d0 in FindFreeCMDID () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:84373
[17:18:12] [debug] #1 009363c4 in LoadCMD (cmd[]=@028775ec «orgmembers») at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:84356
[17:18:12] [debug] #2 00936070 in public LoadSetCMD () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:84336
[17:18:12] LoadSetCMD(75) загрузился за 283 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00017e34 in public ac_CreatePickup (pickupid=1588, modelid=19132, type=1, Float:ac_X=924.58508, Float:ac_Y=1677.92358, Float:ac_Z=1016.24847) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:1017
[17:18:12] [debug] #1 00022c80 in acc_CreatePickup (model=19132, type=1, Float:X=924.58508, Float:Y=1677.92358, Float:Z=1016.24847, virtualworld=101) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:2224
[17:18:12] [debug] #2 00103248 in UpdateBiz (bizid=1, save=0, set=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:16021
[17:18:12] [debug] #3 0015d108 in public LoadBiz () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:21562
[17:18:12] LoadBiz(226) загрузился за 515 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00158b58 in public LoadOrgs () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:21260
[17:18:12] LoadOrgs(27) загрузился за 11 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00402314 in public LoadAntiDM () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:27519
[17:18:12] LoadAntiDM(40) загрузился за 6 ms
[17:18:12] LoadAC(54) загрузился за 0 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00163f58 in LoadOwnableFamily (i=6, id=6) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:21885
[17:18:12] [debug] #1 00163318 in public LoadFamily () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:21858
[17:18:12] LoadFamily(27) загрузился за 24 ms
[17:18:12] [debug] Long callback execution detected (hang or performance issue)
[17:18:12] [debug] AMX backtrace:
[17:18:12] [debug] #0 00111444 in DestroyVehicleEx (carid=670) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:16781
[17:18:12] [debug] #1 008b22ec in SafeRemoveCar (number=19, &next=@02a6ad38 19) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:79875
[17:18:12] [debug] #2 0016426c in UnLoadOwnableCars (name[]=@01361420 «») at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:21894
[17:18:12] [debug] #3 005b51e4 in public ac_OnPlayerDisconnect (playerid=0, reason=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:38978
[17:18:12] [debug] #4 00026290 in public mob_OnPlayerDisconnect (playerid=0, reason=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:3742
[17:18:12] [debug] #5 000161f8 in public SSCANF_OnPlayerDisconnect (playerid=0, reason=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludemobile.inc:66
[17:18:12] [debug] #6 0000b0fc in public fr_OnPlayerDisconnect (playerid=0, reason=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludesscanf2.inc:266
[17:18:12] [debug] #7 0000469c in public Iter_OnPlayerDisconnect (playerid=0, reason=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludefrobj.inc:77
[17:18:12] [debug] #8 00002658 in public OnPlayerDisconnect (playerid=0, reason=1) at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludeforeach.inc:939
[17:18:13] SavePlayer сохранился за 0 ms
[17:18:13] SaveOwnableCar сохранился за 0 ms
[17:18:13] [debug] Long callback execution detected (hang or performance issue)
[17:18:13] [debug] AMX backtrace:
[17:18:13] [debug] #0 0016a63c in SaveHouse (houseid=30) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:22262
[17:18:13] [debug] #1 000bb15c in SaveServer () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:11787
[17:18:13] [debug] #2 0058f7f4 in public ac_OnGameModeExit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:38097
[17:18:13] [debug] #3 00023c80 in public OnGameModeExit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:3500
[17:18:13] SaveHouse сохранился за 237 ms
[17:18:13] SaveBiz сохранился за 60 ms
[17:18:13] SaveOrgs сохранился за 7 ms
[17:18:13] file ‘config.ini’ not found
[17:18:13] SaveInforamtion сохранился за 0 ms
[17:18:13]
[17:18:13] —————————————
[17:18:13] !B0B8AB8:0 0=B8G8B0 Nex-AC
[17:18:13] 1=0@C65=> 8 ?@54>B2@0I5=>:
[17:18:13] 0 ?>?KB>: G8B5@AB20
[17:18:13] 0 ?>?KB>: 27;><0
[17:18:13] 0 ?>?KB>: :@0H0
[17:18:13] 0 ?>?KB>: D;C40
[17:18:13] 0 0B0:
[17:18:13] A53> >1=0@C65=> 8 =0:070=> 0 G8B5@>2
[17:18:13] —————————————
[17:18:22] [Pawn.RakNet] Load: Warning! You probably forgot to define FILTERSCRIPT in one of your filterscripts
[17:18:22]
[17:18:22] —————————————
[17:18:22] =B8G8B Nex-AC 703@C65=!
[17:18:22] 5@A8O 0=B8G8B0: 1.9.57
[17:18:22] 2B>@: Nexius
[17:18:22] —————————————
[17:18:22] [Server-log] Сработал рандом на люкс автомобиль #82
[17:18:22] 12
[17:18:22] =======> mysql connect 1
[17:18:22] [debug] Long callback execution detected (hang or performance issue)
[17:18:22] [debug] AMX backtrace:
[17:18:22] [debug] #0 008b37a0 in aml (type=65535, playerid=65535, Name2[]=@0264b62c «», text[]=@0264b630 «», value=65535, value2=65535, value3=65535) at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:79952
[17:18:22] [debug] #1 000f6348 in ConnectMySQL () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:15339
[17:18:22] [debug] #2 004f2ed0 in public PawnCmd_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:33370
[17:18:22] [debug] #3 0006879c in public ac_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.CMD.inc:125
[17:18:22] [debug] #4 00023b08 in public PawnRakNet_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:3468
[17:18:22] [debug] #5 00015f74 in public SSCANF_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.RakNet.inc:1029
[17:18:22] [debug] #6 0000afbc in public fo_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludesscanf2.inc:211
[17:18:22] [debug] #7 00003abc in public Iter_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludefixobject1.inc:271
[17:18:22] [debug] #8 00001f90 in public OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludeforeach.inc:660
[17:18:22] =======> mysql_logs connect 1
[17:18:22] MySQL подключился за 24 ms | ID подключения: 2
[17:18:22] file ‘config.ini’ not found
[17:18:22] LoadVehicles загрузился за 93 ms
[17:18:22] LoadOther загрузился за 11 ms
[17:18:22] LoadActors загрузился за 12 ms
[17:18:22] LoadGlobalTextDraws загрузился за 16 ms
[17:18:25] LoadOwnableCars загрузился за 3522 ms
[17:18:25] LoadCity загрузился за 180 ms
[17:18:25] LoadContainer загрузился за 0 ms
[17:18:25] LoadFullDostup(5) — loaded in 30 ms
[17:18:25] Подключение к базе данных удалось
[17:18:25] Создано транспорта: 1516
[17:18:25] Создано объектов: 56727
[17:18:25] Создано иконок: 180
[17:18:25] Создано 3D текстов: 2223
[17:18:25] OnGameModeInit загрузился за 3891 ms
[17:18:25] MAX_PLAYERS — 300
[17:18:25] [BITCOIN API] Обновление стоимости Bitcoin…
[17:18:25] [debug] Run time error 5: «Invalid memory access»
[17:18:25] [debug] AMX backtrace:
[17:18:25] [debug] #0 004f7460 in public PawnCmd_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12gamemodesarizonarp.pwn:33443
[17:18:25] [debug] #1 0006879c in public ac_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.CMD.inc:125
[17:18:25] [debug] #2 00023b08 in public PawnRakNet_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludenex-ac.inc:3468
[17:18:25] [debug] #3 00015f74 in public SSCANF_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludePawn.RakNet.inc:1029
[17:18:25] [debug] #4 0000afbc in public fo_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludesscanf2.inc:211
[17:18:25] [debug] #5 00003abc in public Iter_OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludefixobject1.inc:271
[17:18:25] [debug] #6 00001f90 in public OnGameModeInit () at C:UsersАндрейDesktopARIZONA RP PERFECT v12pawnoincludeforeach.inc:660
[17:18:25] [Pawn.RakNet] Load: Warning! You probably forgot to define FILTERSCRIPT in one of your filterscripts
[17:18:25] ______________________________
[17:18:25] | Arizona PROJECT |
[17:18:25] | Copyright 2021 (c) |
[17:18:25] ______________________________
[17:18:25] Number of vehicle models: 100
[17:18:25] [debug] Server crashed due to an unknown error
[17:18:25] [debug] Native backtrace:
[17:18:25] [debug] #0 f7c72f7f in _Z13GetStackTraceRSt6vectorI10StackFrameSaIS0_EEPv () in plugins/crashdetect.so
[17:18:25] [debug] #1 f7c6b81d in _ZN11CrashDetect20PrintNativeBacktraceERSoRKN2os7ContextE () in plugins/crashdetect.so
[17:18:25] [debug] #2 f7c6be48 in _ZN11CrashDetect20PrintNativeBacktraceERKN2os7ContextE () in plugins/crashdetect.so
[17:18:25] [debug] #3 f7c6d5dc in _ZN11CrashDetect7OnCrashERKN2os7ContextE () in plugins/crashdetect.so
[17:18:25] [debug] #4 f7c7279f in ?? () in plugins/crashdetect.so
[17:18:25] [debug] #5 f7fcfbf0 in __kernel_rt_sigreturn () in linux-gate.so.1
[17:18:25] [debug] #6 f7a6fcb1 in _ZN7Scripts7OnEventIL12PR_EventType3EEEbiiPN6RakNet9BitStreamE () in plugins/pawnraknet.so
[17:18:25] [debug] #7 f7a6fe5e in _ZN5Hooks13InternalHooks14RakServer__RPCEPvPhPN6RakNet9BitStreamEiic8PlayerIDbb () in plugins/pawnraknet.so
[17:18:25] [debug] #8 f7410263 in ?? () in plugins/LauncherAddon.so
[17:18:25] [debug] #9 f74113b0 in ?? () in plugins/LauncherAddon.so
[17:18:25] [debug] #10 f72021d5 in _ZN14CSAMPFunctions3RPCEPhPN6RakNet9BitStreamE14PacketPriority17PacketReliabilityj8PlayerIDbb () in plugins/YSF_static.so
[17:18:25] [debug] #11 f7210adf in _ZN14CHookRakServer5RPC_2EPvPhPN6RakNet9BitStreamE14PacketPriority17PacketReliabilityj8PlayerIDbb () in plugins/YSF_static.so
[17:18:25] [debug] #12 080ac299 in ?? () in ./samp03svr
[17:18:25] [debug] #13 080ae2fb in ?? () in ./samp03svr
[17:18:25] [debug] #14 080ae58d in ?? () in ./samp03svr
[17:18:25] [debug] #15 080aeff3 in ?? () in ./samp03svr
[17:18:25] [debug] #16 080aa13a in ?? () in ./samp03svr
[17:18:25] [debug] #17 f7cb7a63 in __libc_start_main () in /lib32/libc.so.6
[17:18:25] [debug] #18 0804b4e1 in ?? () in ./samp03svr
[17:18:25] [debug] Registers:
[17:18:25] [debug] EAX: 00000000 EBX: 0ac7ac2c ECX: ff992384 EDX: 00000458
[17:18:25] [debug] ESI: ff992820 EDI: 03c5685f EBP: ff9924f8 ESP: ff992360
[17:18:25] [debug] EIP: f7a6fcb1 EFLAGS: 00010203
[17:18:25] [debug] Stack:
[17:18:25] [debug] ESP+00000000: 081cd848 0ac7ac2c 0a976938 00000458
[17:18:25] [debug] ESP+00000020: 081f3774 03c5685f f7f9dc7b 00000000
[17:18:25] [debug] ESP+00000040: ffffffff 0000008b ff992820 0809fbc4
[17:18:25] [debug] ESP+00000060: 02882968 02882964 02882960 00000000
[17:18:25] [debug] ESP+00000080: ff992430 0a6e1e6a 00000001 00000000
[17:18:25] [debug] ESP+000000a0: 74736f68 656d616e 00000000 00000000
[17:18:25] [debug] ESP+000000c0: 00000000 00000000 00000000 00000000
[17:18:25] [debug] ESP+000000e0: 00000000 00000000 00000000 00000000
[17:18:25] [debug] ESP+00000100: 00000000 00000000 00000000 00000000
[17:18:25] [debug] ESP+00000120: 00000000 00000000 00000000 00000000
[17:18:25] [debug] ESP+00000140: 00000000 00000000 00000000 00000000
[17:18:25] [debug] ESP+00000160: 00000000 00000000 00000000 00000000
[17:18:25] [debug] ESP+00000180: 000006a0 00000000 ff992518 f752a000
[17:18:25] [debug] ESP+000001a0: 081f3770 08159f61 ff992820 00000001
[17:18:25] [debug] ESP+000001c0: 00000000 00000000 f71fdc7b 00000000
[17:18:25] [debug] ESP+000001e0: 08159f61 ff992820 00000001 00000009
[17:18:25] [debug] ESP+00000200: 00000000 ff992820 ff9925e8 f72080b6
[17:18:25] [debug] ESP+00000220: 00000000 00000000 ff992648 f72021d5
[17:18:25] [debug] ESP+00000240: 00000009 00000002 03c5685f 0000dc7b
[17:18:25] [debug] ESP+00000260: 00000000 00000048 f7202189 f7210adf
[17:18:25] [debug] ESP+00000280: 00000002 03c5685f ff99dc7b 00000000
[17:18:25] [debug] ESP+000002a0: f7e47420 ff992800 00000000 081da5d8
[17:18:25] [debug] ESP+000002c0: 0aa5aa78 ff992690 ff992648 0807c713
[17:18:25] [debug] ESP+000002e0: 00000009 081efd88 ff9926b8 080ac299
[17:18:25] [debug] ESP+00000300: 00000009 00000002 03c5685f 0000dc7b
[17:18:25] [debug] ESP+00000320: 00000020 ff992820 ff9926b8 0204d27a
[17:18:25] [debug] ESP+00000340: 00000003 00000004 019926b8 081efd88
[17:18:25] [debug] ESP+00000360: 081efd88 08159f61 ff992820 00000000
[17:18:25] [debug] ESP+00000380: 0a6d7e80 00000002 ff9928f8 00000014
[17:18:25] [debug] ESP+000003a0: 00000001 00000002 00000028 00000028
[17:18:25] [debug] ESP+000003c0: 00000002 00000000 41f00000 461c4000
[17:18:25] [debug] ESP+000003e0: 0200000f 0006052c 02140000 0508010f
[17:18:25] [debug] Loaded modules:
[17:18:25] [debug] 00000000 — 00187d1f samp03svr
[17:18:25] [debug] f7fcf000 — f7fcfd82 linux-gate.so.1
[17:18:25] [debug] f7fbd000 — f7fbf81b /lib32/libdl.so.2
[17:18:25] [debug] f7fa1000 — f7fbbd2b /lib32/libpthread.so.0
[17:18:25] [debug] f7eaf000 — f7fa8d1a /usr/lib32/libstdc++.so.6
[17:18:25] [debug] f7e69000 — f7eadb97 /lib32/libm.so.6
[17:18:25] [debug] f7e4c000 — f7e683c4 /usr/lib32/libgcc_s.so.1
[17:18:25] [debug] f7c9e000 — f7e53237 /lib32/libc.so.6
[17:18:25] [debug] f7fd0000 — f7ff14a0 /lib/ld-linux.so.2
[17:18:25] [debug] f7c53000 — f7c9b3d4 plugins/crashdetect.so
[17:18:25] [debug] f7c17000 — f7c539c4 plugins/fmt.so
[17:18:25] [debug] f7fc4000 — f7fc91c0 plugins/md5.so
[17:18:25] [debug] f7b32000 — f7c19b50 plugins/pawncmd.so
[17:18:25] [debug] f79fd000 — f7b367d8 plugins/pawnraknet.so
[17:18:25] [debug] f79ec000 — f79fb9b4 plugins/sscanf.so
[17:18:25] [debug] f7926000 — f79eb740 plugins/streamer.so
[17:18:25] [debug] f7915000 — f791c09f /lib32/librt.so.1
[17:18:25] [debug] f78fb000 — f7913634 plugins/CrackLauncherAddon.so
[17:18:25] [debug] f73a8000 — f78fd5d0 plugins/LauncherAddon.so
[17:18:25] [debug] f7920000 — f79237a0 plugins/TOTP.so
[17:18:25] [debug] f7164000 — f73b1d91 plugins/YSF_static.so
[17:18:25] [debug] f6dd4000 — f71693de plugins/mysql.so
[17:18:25] [debug] f6db0000 — f6dd3d32 /home/gs69804/plugins/../log-core.so
[17:18:25] [debug] f5d99000 — f5da43ef /lib32/libnss_files.so.2
[17:18:25] [debug] f5d61000 — f5d6597b /lib32/libnss_dns.so.2
[17:18:25] [debug] f5d49000 — f5d612fb /lib32/libresolv.so.2