Перейти к содержанию

Поиск сообщества

Показаны результаты для тегов 'Warning'.

  • Поиск по тегам

    Введите теги через запятую.
  • Поиск по автору

Тип контента


Форумы

  • Информационный раздел
    • Новости портала
    • Техническая поддержка
    • Приватный форум
  • CRMP 0.3е
    • Помощь по Скриптингу
    • Ошибки
    • Готовые сервера
    • Дополнительные скрипты
    • Мануалы/Уроки
    • Модификации
    • Поиск
    • Архив Вопросов/Проблем/Ошибок
    • Файловый архив
    • Другое
  • SAMP/CRMP 0.3.7
    • Помощь по Скриптингу
    • Ошибки
    • Готовые сервера
    • Плагины
    • Поиск
    • Документация
  • Другое
    • Флейм

Поиск результатов в...

Поиск результатов, которые содержат...


Дата создания

  • Начало

    Конец


Дата обновления

  • Начало

    Конец


Фильтр по количеству...

Найдено: 104 результата

  1. Добрый день, нужна помощь. Добавил объекты на сервер, в Map Consructor всё нормально: объекты отображаются... А когда загружаю на сервер - самих объектов нет, кроме того крашит, ошибка Warning(s007): Exception 0xC00000005 at 0x59F8B4. Если-что, Map costructor и crmp находятся в разных папках. Кто знает в чём дело - помогите, пожалуйста. Заранее спасибо.
  2. Desmond_Campbell

    warning 202 не понимаю как решить...

    (18957) : warning 202: number of arguments does not match definition Вот сама строчка: GiveMoney(playerid, -100000); Вот сам код: case DIALOG_AREND_BALL: { if(response) { if(p_info[playerid][pCash] < 100000) return SendClientMessage(playerid, COLOR_RED, "У вас недостаточно денег"); GiveMoney(playerid, -100000); SendClientMessage(playerid, C_OSNOV, "Вы успешно оплатили полет на воздушном шаре."); SendClientMessage(playerid, C_OSNOV, "Через 20 секунд шар взлетит, залезьте в него"); g_arend_ball_status = true; SetTimer("StartBall", 20_000, false); //MoveDynamicObject(g_arend_ball_object, 488.3500, 1746.0500, 58.9357, 2.0); } } Это не весь, а отрывок типа. Помогите разобраться
  3. Thomas_Malibu

    warning 219

    Приветствую вас! У меня возник варнинг 219 помогите пожалуйста Заранее спасибо!
  4. Арсан

    ошибка при входе

    mysqli_real_connect (): Несоответствие версии заголовков и клиентской библиотеки. Заголовки: 50549 Библиотека: 50640 вот такая бурда выходит в БД в чем причина ? и при входе вот это выходит
  5. D.Frolovskiy

    Ошибка

    Ошибка: C:\Users\????? ??????\Desktop\GreenTech\gamemodes\NewGT.pwn(2520) : error 017: undefined symbol "gPlayerLogged" C:\Users\????? ??????\Desktop\GreenTech\gamemodes\NewGT.pwn(2520) : warning 215: expression has no effect C:\Users\????? ??????\Desktop\GreenTech\gamemodes\NewGT.pwn(2520) : error 001: expected token: ";", but found "]" C:\Users\????? ??????\Desktop\GreenTech\gamemodes\NewGT.pwn(2520) : error 029: invalid expression, assumed zero C:\Users\????? ??????\Desktop\GreenTech\gamemodes\NewGT.pwn(2520) : fatal error 107: too many error messages on one line Строки: 2520: if(gPlayerLogged[playerid] == 0) return true; // Проверка на авторизацию. (Может быть другая) Команда вся : { if(gPlayerLogged[playerid] == 0) return true; // Проверка на авторизацию. (Может быть другая) if(PlayerInfo[playerid][pLevel] < 3) return SendClientMessage(playerid, -1, "Выкладывать деньги можно с 3-ого уровня."); // Можете убрать проверку на то,с какого уровня выкидывать деньги. (PlayerInfo[playerid][pLeve] меняем под себя) if(GetPVarInt(playerid, "PlayerCase") == 0) return SendClientMessage(playerid, -1, "У Вас нет чемодана для денег!"); // Проверка на чемодан. (Сделайте покупку в магазине или уберите проверку). if(TOTALCASE >= MAX_CASE) return SendClientMessage(playerid, -1, "Превышен лимит выбрасываемых кейсов."); // Проверка на лимт кейсов. if(GetPVarInt(playerid,"AntiFlood") > gettime()) return SendClientMessage(playerid, -1, "Нельзя так часто выкидывать деньги!"); // Антифлуд if(IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, -1, "Взять деньги находясь в машине - нельзя."); // Проверка на нахождение игрока в машине if(sscanf(params, "d", params[0])) return SendClientMessage(playerid, -1, "Используйте: /putmoney [сумма]"); if(params[0] < 1 || params[0] > PlayerInfo[playerid][pMoney]) return SendClientMessage(playerid, -1,"У Вас недостаточно денег на руках."); // Проверка на деньги (PlayerInfo[playerid][pMoney] меняйте под себя). new i = TOTALCASE,string[128]; TOTALCASE++; GetPlayerPos(playerid, CaseInfo[i][csX], CaseInfo[i][csY], CaseInfo[i][csZ]); // УЗнаём позицию CaseInfo[i][csObject] = CreateDynamicObject(1210, CaseInfo[i][csX], CaseInfo[i][csY]+1.0, CaseInfo[i][csZ]-0.87, 0.0, 0.0, 0.0, -1, -1, -1, 300.0), RemovePlayerAttachedObject(playerid, 4); // Создаём кейс RemovePlayerAttachedObject(playerid, 5); // Удаляем кейс из рук PlayerInfo[playerid][pMoney] -= params[0], CaseInfo[i][csMoney] = params[0]; // Снимаем деньги (PlayerInfo[playerid][pMoney] меняйте под себя) if(CaseInfo[i][csMoney] >= 100000) format(string, sizeof(string), "[A] Игрок %s[%d] только что положил чемодан с %d$", Player[playerid][pName], playerid, CaseInfo[i][csMoney]), ABroadCast(0xAAAAAAFF, string, 1); // Если игрок выкинул чемодан с боле чем 100.000$ то оповещаем администрацию. (ABroadCast у вас может быть другой). SetPVarInt(playerid,"AntiFlood",gettime() + 30), DeletePVar(playerid, "PlayerCase"); // Создаём антифлуд + удаляем значение что у нас есть чемодан. format(string,sizeof(string),"Вы положили чемодан с %d$", params[0]),SendClientMessage(playerid, -1, string); return true; } CMD:pickmoney(playerid, params[]) { if(gPlayerLogged[playerid] == 0) return true; // Проверка на авторизацию. (Может быть другая) if(IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, -1, "Положить деньги находясь в машине - нельзя."); // Проверка на нахождение игрока в машине new cas,string[128]; // Создаём переменные for(new i = 0; i <= TOTALCASE; i++) // Создаём цикл { if(IsPlayerInRangeOfPoint(playerid, 3.0, CaseInfo[i][csX], CaseInfo[i][csY], CaseInfo[i][csZ])) // Создаём проверку на нахождение рядом с кейсом { // Если кейсов рядом,то продолжаем. cas++,TOTALCASE--,SetPlayerAttachedObject(playerid, 5, 1210, 5, 0.272000,0.073000,-0.045000, 0.000000,-83.099998,0.000000),SetPVarInt(playerid, "PlayerCase", 1), DestroyDynamicObject(CaseInfo[i][csObject]); // Функции) format(string,sizeof(string),"Вы подобрали чемодан с %d$", CaseInfo[i][csMoney]),SendClientMessage(playerid, -1, string); if(CaseInfo[i][csMoney] >= 100000) format(string, sizeof(string), "[A] Игрок %s[%d] только что подобрал чемодан с %d$", PlayerInfo[playerid][pName], playerid, CaseInfo[i][csMoney]), ABroadCast(0xAAAAAAFF, string, 1); // Если игрок поднял чемодан с более чем 100.000$ то оповещаем администрацию. (Вместо ABroadCast может быть SendAdminMessage и т.д),а также вместо PlayerInfo[playerid][pName] ставим своё. PlayerInfo[playerid][pMoney] += CaseInfo[i][csMoney]; // ПРибавляем кол-во денег с кейса. PlayerInfo[playerid][pMoney] меняем под себя. CaseInfo[i][csX] = 0.0, CaseInfo[i][csY] = 0.0, CaseInfo[i][csZ] = 0.0; // Убираем найденный кейс. break; } // Если кейса рядом нет,то ничего не делаем } if(cas == 0) SendClientMessage(playerid, -1, "Рядом с вами нет чемодана!"); return true; }
  6. Приветствую! Сегодня со мной произошла проблема . При заходе на сервер пишет "Вы забанены на этом сервере" с любых ников. У моего одного друга сначала появилась эта проблема , я думал дело у него с пк. ( В то время мы с ним играли по скайпу ) Потом перезапускаю я сервер , а вот и у меня приехала эта проблема. Что делать?
  7. Приветствую. Появилась проблема На одном из известных хостингов я купил Авто установку мода. Вообщем , установил. А тут бац , и проблема уже сразу! Вообщем к теме. При регистрации/авторизации нельзя сменить скин. Например ид скина 102 , а когда нажимаешь на стрелочку что бы поменялся на 103 на секунду 103 , потом мгновенно 102. Когда нажимаешь "Вход" ничего не происходит в прямом смысле слова. Не знаю что сюда скинуть.
  8. Разработчик

    Помогите решить такую проблему с модом

    ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:08:13] [14:08:13] Server Plugins [14:08:13] -------------- [14:08:13] Loading plugin: streamer.so ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:09:43] [14:09:43] Server Plugins [14:09:43] -------------- [14:09:43] Loading plugin: streamer.so ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:15:41] [14:15:41] Server Plugins [14:15:41] -------------- [14:15:41] Loading plugin: streamer.so ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:17:21] [14:17:21] Server Plugins [14:17:21] -------------- [14:17:21] Loading plugin: streamer.so [14:17:21] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:17:21] Loaded. [14:17:21] Loading plugin: sscanf.so [14:17:21] [14:17:21] =============================== [14:17:21] sscanf plugin loaded. [14:17:21] Version: 2.8.1 [14:17:21] © 2012 Alex "Y_Less" Cole [14:17:21] =============================== [14:17:21] Loaded. [14:17:21] Loading plugin: mysql.so [14:17:21] Failed (libmysqlclient.so.18: cannot open shared object file: No such file or directory) [14:17:21] Loading plugin: CRP.so [14:17:21] [14:17:21] ______________________________________ [14:17:21] Convert Rus To Pwn v0.1.1 loaded [14:17:21] ______________________________________ [14:17:21] By: Fro © Copyright <TBG> 2009-2011 [14:17:21] ______________________________________ [14:17:21] Loaded. [14:17:21] Loading plugin: gvar.so [14:17:21] *** GVar Plugin v1.3 by Incognito loaded *** [14:17:21] Loaded. [14:17:21] Loading plugin: nativechecker.so [14:17:21] Loaded. [14:17:21] Loading plugin: fixes2.so [14:17:21] [14:17:21] =============================== [14:17:21] fixes plugin loaded. [14:17:21] © 2012 Alex "Y_Less" Cole [14:17:21] =============================== [14:17:21] Loaded. [14:17:21] Loading plugin: dc_cmd.so [14:17:21] Daniel's CMD plugin v2.8 [14:17:21] © 2014 Daniel_Cortez [14:17:21] www.[ссылка стороннего ресурса].ru [14:17:21] Loaded. [14:17:21] Loading plugin: crashdetect.so [14:17:21] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:21:54] [14:21:54] Server Plugins [14:21:54] -------------- [14:21:54] Loading plugin: streamer.so [14:21:54] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:21:54] Loaded. [14:21:54] Loading plugin: sscanf.so [14:21:54] [14:21:54] =============================== [14:21:54] sscanf plugin loaded. [14:21:54] Version: 2.8.1 [14:21:54] © 2012 Alex "Y_Less" Cole [14:21:54] =============================== [14:21:54] Loaded. [14:21:54] Loading plugin: mysql.so [14:21:54] Failed (libmysqlclient.so.18: cannot open shared object file: No such file or directory) [14:21:54] Loading plugin: CRP.so [14:21:54] [14:21:54] ______________________________________ [14:21:54] Convert Rus To Pwn v0.1.1 loaded [14:21:54] ______________________________________ [14:21:54] By: Fro © Copyright <TBG> 2009-2011 [14:21:54] ______________________________________ [14:21:54] Loaded. [14:21:54] Loading plugin: gvar.so [14:21:54] *** GVar Plugin v1.3 by Incognito loaded *** [14:21:54] Loaded. [14:21:54] Loading plugin: nativechecker.so [14:21:54] Loaded. [14:21:54] Loading plugin: fixes2.so [14:21:54] [14:21:54] =============================== [14:21:54] fixes plugin loaded. [14:21:54] © 2012 Alex "Y_Less" Cole [14:21:54] =============================== [14:21:54] Loaded. [14:21:54] Loading plugin: dc_cmd.so [14:21:54] Daniel's CMD plugin v2.8 [14:21:54] © 2014 Daniel_Cortez [14:21:54] www.[ссылка стороннего ресурса].ru [14:21:54] Loaded. [14:21:54] Loading plugin: crashdetect.so [14:21:54] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:22:57] [14:22:57] Server Plugins [14:22:57] -------------- [14:22:57] Loading plugin: streamer.so [14:22:57] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:22:57] Loaded. [14:22:57] Loading plugin: sscanf.so [14:22:57] [14:22:57] =============================== [14:22:57] sscanf plugin loaded. [14:22:57] Version: 2.8.1 [14:22:57] © 2012 Alex "Y_Less" Cole [14:22:57] =============================== [14:22:57] Loaded. [14:22:57] Loading plugin: mysql.so [14:22:57] Failed (libmysqlclient.so.18: cannot open shared object file: No such file or directory) [14:22:57] Loading plugin: CRP.so [14:22:57] [14:22:57] ______________________________________ [14:22:57] Convert Rus To Pwn v0.1.1 loaded [14:22:57] ______________________________________ [14:22:57] By: Fro © Copyright <TBG> 2009-2011 [14:22:57] ______________________________________ [14:22:57] Loaded. [14:22:57] Loading plugin: gvar.so [14:22:57] *** GVar Plugin v1.3 by Incognito loaded *** [14:22:57] Loaded. [14:22:57] Loading plugin: nativechecker.so [14:22:57] Loaded. [14:22:57] Loading plugin: fixes2.so [14:22:57] [14:22:57] =============================== [14:22:57] fixes plugin loaded. [14:22:57] © 2012 Alex "Y_Less" Cole [14:22:57] =============================== [14:22:57] Loaded. [14:22:57] Loading plugin: dc_cmd.so [14:22:57] Daniel's CMD plugin v2.8 [14:22:57] © 2014 Daniel_Cortez [14:22:57] www.[ссылка стороннего ресурса].ru [14:22:57] Loaded. [14:22:57] Loading plugin: crashdetect.so [14:22:57] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:23:53] [14:23:53] Server Plugins [14:23:53] -------------- [14:23:53] Loading plugin: streamer.so [14:23:53] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:23:53] Loaded. [14:23:53] Loading plugin: sscanf.so [14:23:53] [14:23:53] =============================== [14:23:53] sscanf plugin loaded. [14:23:53] Version: 2.8.1 [14:23:53] © 2012 Alex "Y_Less" Cole [14:23:53] =============================== [14:23:53] Loaded. [14:23:53] Loading plugin: mysql.so [14:23:53] Failed (libmysqlclient.so.18: cannot open shared object file: No such file or directory) [14:23:53] Loading plugin: CRP.so [14:23:53] [14:23:53] ______________________________________ [14:23:53] Convert Rus To Pwn v0.1.1 loaded [14:23:53] ______________________________________ [14:23:53] By: Fro © Copyright <TBG> 2009-2011 [14:23:53] ______________________________________ [14:23:53] Loaded. [14:23:53] Loading plugin: gvar.so [14:23:53] *** GVar Plugin v1.3 by Incognito loaded *** [14:23:53] Loaded. [14:23:53] Loading plugin: nativechecker.so [14:23:53] Loaded. [14:23:53] Loading plugin: fixes2.so [14:23:53] [14:23:53] =============================== [14:23:53] fixes plugin loaded. [14:23:53] © 2012 Alex "Y_Less" Cole [14:23:53] =============================== [14:23:53] Loaded. [14:23:53] Loading plugin: dc_cmd.so [14:23:53] Daniel's CMD plugin v2.8 [14:23:53] © 2014 Daniel_Cortez [14:23:53] www.[ссылка стороннего ресурса].ru [14:23:53] Loaded. [14:23:53] Loading plugin: antiattack.so [14:23:53] Anti-Attack plugin by BJIADOKC loaded. [14:23:53] Loaded. [14:23:53] Loaded 8 plugins. [14:23:53] [14:23:53] Filterscripts [14:23:53] --------------- [14:23:53] Loading filterscript 'fsdebug.amx'... [14:23:53] Unable to load filterscript 'fsdebug.amx'. [14:23:53] Loading filterscript 'fly.amx'... [14:23:53] Unable to load filterscript 'fly.amx'. [14:23:53] Loaded 0 filterscripts. [14:23:53] Error: Function not registered: 'DC_CMD' [14:23:53] Error: Function not registered: 'DC_CMD_Init' [14:23:53] Error: Function not registered: 'mysql_tquery' [14:23:53] Error: Function not registered: 'mysql_format' [14:23:53] Error: Function not registered: 'cache_get_data' [14:23:53] Error: Function not registered: 'cache_get_row_int' [14:23:53] Error: Function not registered: 'cache_get_row' [14:23:53] Error: Function not registered: 'cache_get_row_float' [14:23:53] Error: Function not registered: 'mysql_query' [14:23:53] Error: Function not registered: 'cache_get_row_count' [14:23:53] Error: Function not registered: 'cache_delete' [14:23:53] Error: Function not registered: 'mysql_connect' [14:23:53] Error: Function not registered: 'mysql_log' [14:23:53] Error: Function not registered: 'mysql_set_charset' [14:23:53] Error: Function not registered: 'mysql_errno' [14:23:53] Error: Function not registered: 'mysql_close' [14:23:53] Error: Function not registered: 'mysql_escape_string' [14:23:53] Error: Function not registered: 'cache_get_field_content' [14:23:53] Script[gamemodes/crmprp.amx]: Run time error 19: "File or function is not found" [14:23:53] Number of vehicle models: 0 ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:26:12] [14:26:12] Server Plugins [14:26:12] -------------- [14:26:12] Loading plugin: streamer.so [14:26:12] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:26:12] Loaded. [14:26:12] Loading plugin: sscanf.so [14:26:12] [14:26:12] =============================== [14:26:12] sscanf plugin loaded. [14:26:12] Version: 2.8.1 [14:26:12] © 2012 Alex "Y_Less" Cole [14:26:12] =============================== [14:26:12] Loaded. [14:26:12] Loading plugin: mysql_static.so [14:26:12] >> plugin.mysql: R39-5 successfully loaded. [14:26:12] Loaded. [14:26:12] Loading plugin: CRP.so [14:26:12] [14:26:12] ______________________________________ [14:26:12] Convert Rus To Pwn v0.1.1 loaded [14:26:12] ______________________________________ [14:26:12] By: Fro © Copyright <TBG> 2009-2011 [14:26:12] ______________________________________ [14:26:12] Loaded. [14:26:12] Loading plugin: gvar.so [14:26:12] *** GVar Plugin v1.3 by Incognito loaded *** [14:26:12] Loaded. [14:26:12] Loading plugin: nativechecker.so [14:26:12] Loaded. [14:26:12] Loading plugin: fixes2.so [14:26:12] [14:26:12] =============================== [14:26:12] fixes plugin loaded. [14:26:12] © 2012 Alex "Y_Less" Cole [14:26:12] =============================== [14:26:12] Loaded. [14:26:12] Loading plugin: dc_cmd.so [14:26:12] Daniel's CMD plugin v2.8 [14:26:12] © 2014 Daniel_Cortez [14:26:12] www.[ссылка стороннего ресурса].ru [14:26:12] Loaded. [14:26:12] Loading plugin: antiattack.so [14:26:12] Anti-Attack plugin by BJIADOKC loaded. [14:26:12] Loaded. [14:26:12] Loaded 9 plugins. [14:26:12] [14:26:12] Filterscripts [14:26:12] --------------- [14:26:12] Loading filterscript 'fsdebug.amx'... [14:26:12] Unable to load filterscript 'fsdebug.amx'. [14:26:12] Loading filterscript 'fly.amx'... [14:26:12] Unable to load filterscript 'fly.amx'. [14:26:12] Loaded 0 filterscripts. [14:26:12] Error: Function not registered: 'DC_CMD' [14:26:12] Error: Function not registered: 'DC_CMD_Init' [14:26:12] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [14:26:12] Number of vehicle models: 43 [14:26:48] Incoming connection: 176.214.53.117:58928 [14:26:51] [join] Artem_Chislin has joined the server (0:176.214.53.117) [14:26:53] Incoming connection: 2.95.207.121:52269 [14:26:54] [join] Nikita_Kyzya has joined the server (1:2.95.207.121) ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:36:13] [14:36:13] Server Plugins [14:36:13] -------------- [14:36:13] Loading plugin: streamer.so [14:36:13] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:36:13] Loaded. [14:36:13] Loading plugin: sscanf.so [14:36:13] [14:36:13] =============================== [14:36:13] sscanf plugin loaded. [14:36:13] Version: 2.8.1 [14:36:13] © 2012 Alex "Y_Less" Cole [14:36:13] =============================== [14:36:13] Loaded. [14:36:13] Loading plugin: mysql_static.so [14:36:13] >> plugin.mysql: R39-5 successfully loaded. [14:36:13] Loaded. [14:36:13] Loading plugin: CRP.so [14:36:13] [14:36:13] ______________________________________ [14:36:13] Convert Rus To Pwn v0.1.1 loaded [14:36:13] ______________________________________ [14:36:13] By: Fro © Copyright <TBG> 2009-2011 [14:36:13] ______________________________________ [14:36:13] Loaded. [14:36:13] Loading plugin: gvar.so [14:36:13] *** GVar Plugin v1.3 by Incognito loaded *** [14:36:13] Loaded. [14:36:13] Loading plugin: fixes2.so [14:36:13] [14:36:13] =============================== [14:36:13] fixes plugin loaded. [14:36:13] © 2012 Alex "Y_Less" Cole [14:36:13] =============================== [14:36:13] Loaded. [14:36:13] Loading plugin: dc_cmd.so [14:36:13] Daniel's CMD plugin v2.8 [14:36:13] © 2014 Daniel_Cortez [14:36:13] www.[ссылка стороннего ресурса].ru [14:36:13] Loaded. [14:36:13] Loading plugin: antiattack.so [14:36:13] Anti-Attack plugin by BJIADOKC loaded. [14:36:13] Loaded. [14:36:13] Loaded 8 plugins. [14:36:13] [14:36:13] Filterscripts [14:36:13] --------------- [14:36:13] Loading filterscript 'fsdebug.amx'... [14:36:13] Unable to load filterscript 'fsdebug.amx'. [14:36:13] Loading filterscript 'fly.amx'... [14:36:13] Unable to load filterscript 'fly.amx'. [14:36:13] Loaded 0 filterscripts. [14:36:13] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [14:36:13] Number of vehicle models: 43 [14:36:39] Incoming connection: 176.214.53.117:59740 [14:36:40] [join] Artem_Chislin has joined the server (0:176.214.53.117) ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:39:55] [14:39:55] Server Plugins [14:39:55] -------------- [14:39:55] Loading plugin: streamer.so [14:39:55] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:39:55] Loaded. [14:39:55] Loading plugin: sscanf.so [14:39:55] [14:39:55] =============================== [14:39:55] sscanf plugin loaded. [14:39:55] Version: 2.8.1 [14:39:55] © 2012 Alex "Y_Less" Cole [14:39:55] =============================== [14:39:55] Loaded. [14:39:55] Loading plugin: mysql_static.so [14:39:55] >> plugin.mysql: R39-5 successfully loaded. [14:39:55] Loaded. [14:39:55] Loaded 3 plugins. [14:39:55] [14:39:55] Filterscripts [14:39:55] --------------- [14:39:55] Loading filterscript 'fsdebug.amx'... [14:39:55] Unable to load filterscript 'fsdebug.amx'. [14:39:55] Loading filterscript 'fly.amx'... [14:39:55] Unable to load filterscript 'fly.amx'. [14:39:55] Loaded 0 filterscripts. [14:39:55] Script[gamemodes/crmprp.amx]: Run time error 19: "File or function is not found" [14:39:55] Number of vehicle models: 0 ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:41:14] [14:41:14] Server Plugins [14:41:14] -------------- [14:41:14] Loading plugin: streamer.so [14:41:14] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:41:14] Loaded. [14:41:14] Loading plugin: sscanf.so [14:41:14] [14:41:14] =============================== [14:41:14] sscanf plugin loaded. [14:41:14] Version: 2.8.1 [14:41:14] © 2012 Alex "Y_Less" Cole [14:41:14] =============================== [14:41:14] Loaded. [14:41:14] Loading plugin: mysql_static.so [14:41:14] >> plugin.mysql: R39-5 successfully loaded. [14:41:14] Loaded. [14:41:14] Loading plugin: dc_cmd.so [14:41:14] Daniel's CMD plugin v2.8 [14:41:14] © 2014 Daniel_Cortez [14:41:14] www.[ссылка стороннего ресурса].ru [14:41:14] Loaded. [14:41:14] Loading plugin: antiattack.so [14:41:14] Anti-Attack plugin by BJIADOKC loaded. [14:41:14] Loaded. [14:41:14] Loading plugin: anti-freeze.so [14:41:14] * Anti-Freeze plugin by JoKeR_2020 loaded [14:41:14] Loaded. [14:41:14] Loading plugin: crashdetect.so [14:41:14] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:41:26] [14:41:26] Server Plugins [14:41:26] -------------- [14:41:26] Loading plugin: streamer.so [14:41:26] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:41:26] Loaded. [14:41:26] Loading plugin: sscanf.so [14:41:26] [14:41:26] =============================== [14:41:26] sscanf plugin loaded. [14:41:26] Version: 2.8.1 [14:41:26] © 2012 Alex "Y_Less" Cole [14:41:26] =============================== [14:41:26] Loaded. [14:41:26] Loading plugin: mysql_static.so [14:41:26] >> plugin.mysql: R39-5 successfully loaded. [14:41:26] Loaded. [14:41:26] Loading plugin: dc_cmd.so [14:41:26] Daniel's CMD plugin v2.8 [14:41:26] © 2014 Daniel_Cortez [14:41:26] www.[ссылка стороннего ресурса].ru [14:41:26] Loaded. [14:41:26] Loading plugin: antiattack.so [14:41:26] Anti-Attack plugin by BJIADOKC loaded. [14:41:26] Loaded. [14:41:26] Loading plugin: anti-freeze.so [14:41:26] * Anti-Freeze plugin by JoKeR_2020 loaded [14:41:26] Loaded. [14:41:26] Loading plugin: crashdetect.so [14:41:26] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:42:12] [14:42:12] Server Plugins [14:42:12] -------------- [14:42:12] Loading plugin: streamer.so [14:42:12] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:42:12] Loaded. [14:42:12] Loading plugin: sscanf.so [14:42:12] [14:42:12] =============================== [14:42:12] sscanf plugin loaded. [14:42:12] Version: 2.8.1 [14:42:12] © 2012 Alex "Y_Less" Cole [14:42:12] =============================== [14:42:12] Loaded. [14:42:12] Loading plugin: mysql_static.so [14:42:12] >> plugin.mysql: R39-5 successfully loaded. [14:42:12] Loaded. [14:42:12] Loading plugin: dc_cmd.so [14:42:12] Daniel's CMD plugin v2.8 [14:42:12] © 2014 Daniel_Cortez [14:42:12] www.[ссылка стороннего ресурса].ru [14:42:12] Loaded. [14:42:12] Loading plugin: antiattack.so [14:42:12] Anti-Attack plugin by BJIADOKC loaded. [14:42:12] Loaded. [14:42:12] Loading plugin: crashdetect.so [14:42:12] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:43:40] [14:43:40] Server Plugins [14:43:40] -------------- [14:43:40] Loading plugin: streamer.so [14:43:40] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:43:40] Loaded. [14:43:40] Loading plugin: sscanf.so [14:43:40] [14:43:40] =============================== [14:43:40] sscanf plugin loaded. [14:43:40] Version: 2.8.1 [14:43:40] © 2012 Alex "Y_Less" Cole [14:43:40] =============================== [14:43:40] Loaded. [14:43:40] Loading plugin: mysql_5.5.so [14:43:40] Failed (libmysqlclient.so.18: cannot open shared object file: No such file or directory) [14:43:40] Loading plugin: dc_cmd.so [14:43:40] Daniel's CMD plugin v2.8 [14:43:40] © 2014 Daniel_Cortez [14:43:40] www.[ссылка стороннего ресурса].ru [14:43:40] Loaded. [14:43:40] Loading plugin: regex.so [14:43:40] [14:43:40] ______________________________________ [14:43:40] Regular Expression Plugin v0.2.1 loaded [14:43:40] ______________________________________ [14:43:40] By: Fro © Copyright <TBG> 2009-2011 [14:43:40] ______________________________________ [14:43:40] Loaded. [14:43:40] Loading plugin: antiattack.so [14:43:40] Anti-Attack plugin by BJIADOKC loaded. [14:43:40] Loaded. [14:43:40] Loading plugin: crashdetect.so [14:43:40] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:44:08] plugins = "" (string) [14:44:08] [14:44:08] Server Plugins [14:44:08] -------------- [14:44:08] Loaded 0 plugins. [14:44:08] [14:44:08] Filterscripts [14:44:08] --------------- [14:44:08] Loading filterscript 'fsdebug.amx'... [14:44:08] Unable to load filterscript 'fsdebug.amx'. [14:44:08] Loading filterscript 'fly.amx'... [14:44:08] Unable to load filterscript 'fly.amx'. [14:44:08] Loaded 0 filterscripts. [14:44:08] Script[gamemodes/crmprp.amx]: Run time error 19: "File or function is not found" [14:44:08] Number of vehicle models: 0 ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:46:22] [14:46:22] Server Plugins [14:46:22] -------------- [14:46:22] Loading plugin: streamer.so [14:46:22] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:46:22] Loaded. [14:46:22] Loading plugin: sscanf.so [14:46:22] [14:46:22] =============================== [14:46:22] sscanf plugin loaded. [14:46:22] Version: 2.8.1 [14:46:22] © 2012 Alex "Y_Less" Cole [14:46:22] =============================== [14:46:22] Loaded. [14:46:22] Loading plugin: mysql_static.so [14:46:22] >> plugin.mysql: R39-5 successfully loaded. [14:46:22] Loaded. [14:46:22] Loading plugin: dc_cmd.so [14:46:22] Daniel's CMD plugin v2.8 [14:46:22] © 2014 Daniel_Cortez [14:46:22] www.[ссылка стороннего ресурса].ru [14:46:22] Loaded. [14:46:22] Loading plugin: CRP.so [14:46:22] [14:46:22] ______________________________________ [14:46:22] Convert Rus To Pwn v0.1.1 loaded [14:46:22] ______________________________________ [14:46:22] By: Fro © Copyright <TBG> 2009-2011 [14:46:22] ______________________________________ [14:46:22] Loaded. [14:46:22] Loading plugin: crashdetect.so [14:46:22] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:47:40] [14:47:40] Server Plugins [14:47:40] -------------- [14:47:40] Loading plugin: streamer.so [14:47:40] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:47:40] Loaded. [14:47:40] Loading plugin: sscanf.so [14:47:40] [14:47:40] =============================== [14:47:40] sscanf plugin loaded. [14:47:40] Version: 2.8.1 [14:47:40] © 2012 Alex "Y_Less" Cole [14:47:40] =============================== [14:47:40] Loaded. [14:47:40] Loading plugin: mysql_static.so [14:47:40] >> plugin.mysql: R39-5 successfully loaded. [14:47:40] Loaded. [14:47:40] Loading plugin: dc_cmd.so [14:47:40] Daniel's CMD plugin v2.8 [14:47:40] © 2014 Daniel_Cortez [14:47:40] www.[ссылка стороннего ресурса].ru [14:47:40] Loaded. [14:47:40] Loading plugin: CRP.so [14:47:40] [14:47:40] ______________________________________ [14:47:40] Convert Rus To Pwn v0.1.1 loaded [14:47:40] ______________________________________ [14:47:40] By: Fro © Copyright <TBG> 2009-2011 [14:47:40] ______________________________________ [14:47:40] Loaded. [14:47:40] Loading plugin: crashdetect.so [14:47:40] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:48:11] [14:48:11] Server Plugins [14:48:11] -------------- [14:48:11] Loading plugin: streamer.so [14:48:11] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:48:11] Loaded. [14:48:11] Loading plugin: sscanf.so [14:48:11] [14:48:11] =============================== [14:48:11] sscanf plugin loaded. [14:48:11] Version: 2.8.1 [14:48:11] © 2012 Alex "Y_Less" Cole [14:48:11] =============================== [14:48:11] Loaded. [14:48:11] Loading plugin: mysql_static.so [14:48:11] >> plugin.mysql: R39-5 successfully loaded. [14:48:11] Loaded. [14:48:11] Loading plugin: dc_cmd.so [14:48:11] Daniel's CMD plugin v2.8 [14:48:11] © 2014 Daniel_Cortez [14:48:11] www.[ссылка стороннего ресурса].ru [14:48:11] Loaded. [14:48:11] Loading plugin: CRP.so [14:48:11] [14:48:11] ______________________________________ [14:48:11] Convert Rus To Pwn v0.1.1 loaded [14:48:11] ______________________________________ [14:48:11] By: Fro © Copyright <TBG> 2009-2011 [14:48:11] ______________________________________ [14:48:11] Loaded. [14:48:11] Loading plugin: crashdetect.so [14:48:11] CrashDetect must be loaded before 'streamer.so' ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:50:16] [14:50:16] Server Plugins [14:50:16] -------------- [14:50:16] Loading plugin: crashdetect.so [14:50:16] CrashDetect v4.15.1 is OK. [14:50:16] Loaded. [14:50:16] Loading plugin: streamer.so [14:50:16] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:50:16] Loaded. [14:50:16] Loading plugin: sscanf.so [14:50:16] [14:50:16] =============================== [14:50:16] sscanf plugin loaded. [14:50:16] Version: 2.8.1 [14:50:16] © 2012 Alex "Y_Less" Cole [14:50:16] =============================== [14:50:16] Loaded. [14:50:16] Loading plugin: mysql_static.so [14:50:16] >> plugin.mysql: R39-5 successfully loaded. [14:50:16] Loaded. [14:50:16] Loading plugin: dc_cmd.so [14:50:16] Daniel's CMD plugin v2.8 [14:50:16] © 2014 Daniel_Cortez [14:50:16] www.[ссылка стороннего ресурса].ru [14:50:16] Loaded. [14:50:16] Loading plugin: CRP.so [14:50:16] [14:50:16] ______________________________________ [14:50:16] Convert Rus To Pwn v0.1.1 loaded [14:50:16] ______________________________________ [14:50:16] By: Fro © Copyright <TBG> 2009-2011 [14:50:16] ______________________________________ [14:50:16] Loaded. [14:50:16] Loading plugin: antiattack.so [14:50:16] Anti-Attack plugin by BJIADOKC loaded. [14:50:16] Loaded. [14:50:16] Loading plugin: fixes2.so [14:50:16] [14:50:16] =============================== [14:50:16] fixes plugin loaded. [14:50:16] © 2012 Alex "Y_Less" Cole [14:50:16] =============================== [14:50:16] Loaded. [14:50:16] Loading plugin: gvar.so [14:50:16] *** GVar Plugin v1.3 by Incognito loaded *** [14:50:16] Loaded. [14:50:16] Loading plugin: nativechecker.so [14:50:16] Loaded. [14:50:16] Loading plugin: regex.so [14:50:16] [14:50:16] ______________________________________ [14:50:16] Regular Expression Plugin v0.2.1 loaded [14:50:16] ______________________________________ [14:50:16] By: Fro © Copyright <TBG> 2009-2011 [14:50:16] ______________________________________ [14:50:16] Loaded. [14:50:16] Loading plugin: nativechecker.so [14:50:16] Loaded. [14:50:16] Loaded 12 plugins. [14:50:16] [14:50:16] Filterscripts [14:50:16] --------------- [14:50:16] Loading filterscript 'fsdebug.amx'... [14:50:16] Unable to load filterscript 'fsdebug.amx'. [14:50:16] Loading filterscript 'fly.amx'... [14:50:16] Unable to load filterscript 'fly.amx'. [14:50:16] Loaded 0 filterscripts. [14:50:16] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [14:50:16] Number of vehicle models: 43 [14:50:42] Incoming connection: 2.95.207.121:57752 [14:50:42] [join] Nikita_Kyzya has joined the server (0:2.95.207.121) [14:50:57] [debug] Server crashed while executing crmprp.amx [14:50:57] [debug] AMX backtrace: [14:50:57] [debug] #0 native KillTimer () from fixes2.so [14:50:57] [debug] #1 0037b79c in public Itter_OnPlayerDisconnect (0, 1) from crmprp.amx [14:50:57] [debug] #2 native CallLocalFunction () from samp03svr-cr [14:50:57] [debug] #3 0000a2e8 in public SSCANF_OnPlayerDisconnect (0, 1) from crmprp.amx [14:50:57] [debug] #4 00000794 in public OnPlayerDisconnect (0, 1) from crmprp.amx [14:50:57] [debug] Native backtrace: [14:50:57] [debug] #0 f732de8b in _ZN10StackTraceC1EPv () from plugins/crashdetect.so [14:50:57] [debug] #1 f7326bcf in _ZN11CrashDetect20PrintNativeBacktraceERSoPv () from plugins/crashdetect.so [14:50:57] [debug] #2 f7327dbc in _ZN11CrashDetect20PrintNativeBacktraceEPv () from plugins/crashdetect.so [14:50:57] [debug] #3 f7328226 in _ZN11CrashDetect11OnExceptionEPv () from plugins/crashdetect.so [14:50:57] [debug] #4 f732dadc in ?? () from plugins/crashdetect.so [14:50:57] [debug] #5 f7728b20 in __kernel_rt_sigreturn () from linux-gate.so.1 [14:50:57] [debug] #6 f648e5af in ?? () from plugins/fixes2.so [14:50:57] [debug] #7 080503e4 in ?? () from ./samp03svr-cr [14:50:57] [debug] #8 f732994b in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so [14:50:57] [debug] #9 f732c8f8 in ?? () from plugins/crashdetect.so [14:50:57] [debug] #10 f7330916 in amx_Exec () from plugins/crashdetect.so [14:50:57] [debug] #11 f7328be6 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so [14:50:57] [debug] #12 f732c659 in ?? () from plugins/crashdetect.so [14:50:57] [debug] #13 f729ad36 in ?? () from plugins/streamer.so [14:50:57] [debug] #14 080d3b12 in ?? () from ./samp03svr-cr [14:50:57] [debug] #15 080503e4 in ?? () from ./samp03svr-cr [14:50:57] [debug] #16 f732994b in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so [14:50:57] [debug] #17 f732c8f8 in ?? () from plugins/crashdetect.so [14:50:57] [debug] #18 f7330916 in amx_Exec () from plugins/crashdetect.so [14:50:57] [debug] #19 f7328be6 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so [14:50:57] [debug] #20 f732c659 in ?? () from plugins/crashdetect.so [14:50:57] [debug] #21 f729ad36 in ?? () from plugins/streamer.so [14:50:57] [debug] #22 0806f50a in ?? () from ./samp03svr-cr [14:50:57] [debug] #23 0809f871 in ?? () from ./samp03svr-cr [14:50:57] [debug] #24 0807c097 in ?? () from ./samp03svr-cr [14:50:57] [debug] #25 0807d91e in ?? () from ./samp03svr-cr [14:50:57] [debug] #26 0807d962 in ?? () from ./samp03svr-cr [14:50:57] [debug] #27 08077c23 in ?? () from ./samp03svr-cr [14:50:57] [debug] #28 f736b286 in __libc_start_main () from /lib/i386-linux-gnu/libc.so.6 ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:51:38] [14:51:38] Server Plugins [14:51:38] -------------- [14:51:38] Loading plugin: streamer.so [14:51:38] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:51:38] Loaded. [14:51:38] Loading plugin: sscanf.so [14:51:38] [14:51:38] =============================== [14:51:38] sscanf plugin loaded. [14:51:38] Version: 2.8.1 [14:51:38] © 2012 Alex "Y_Less" Cole [14:51:38] =============================== [14:51:38] Loaded. [14:51:38] Loading plugin: mysql_static.so [14:51:38] >> plugin.mysql: R39-5 successfully loaded. [14:51:38] Loaded. [14:51:38] Loading plugin: dc_cmd.so [14:51:38] Daniel's CMD plugin v2.8 [14:51:38] © 2014 Daniel_Cortez [14:51:38] www.[ссылка стороннего ресурса].ru [14:51:38] Loaded. [14:51:38] Loading plugin: CRP.so [14:51:38] [14:51:38] ______________________________________ [14:51:38] Convert Rus To Pwn v0.1.1 loaded [14:51:38] ______________________________________ [14:51:38] By: Fro © Copyright <TBG> 2009-2011 [14:51:38] ______________________________________ [14:51:38] Loaded. [14:51:38] Loading plugin: antiattack.so [14:51:38] Anti-Attack plugin by BJIADOKC loaded. [14:51:38] Loaded. [14:51:38] Loading plugin: fixes2.so [14:51:38] [14:51:38] =============================== [14:51:38] fixes plugin loaded. [14:51:38] © 2012 Alex "Y_Less" Cole [14:51:38] =============================== [14:51:38] Loaded. [14:51:38] Loading plugin: gvar.so [14:51:38] *** GVar Plugin v1.3 by Incognito loaded *** [14:51:38] Loaded. [14:51:38] Loading plugin: nativechecker.so [14:51:38] Loaded. [14:51:38] Loading plugin: regex.so [14:51:38] [14:51:38] ______________________________________ [14:51:38] Regular Expression Plugin v0.2.1 loaded [14:51:38] ______________________________________ [14:51:38] By: Fro © Copyright <TBG> 2009-2011 [14:51:38] ______________________________________ [14:51:38] Loaded. [14:51:38] Loading plugin: nativechecker.so [14:51:38] Loaded. [14:51:38] Loaded 11 plugins. [14:51:39] [14:51:39] Filterscripts [14:51:39] --------------- [14:51:39] Loading filterscript 'fsdebug.amx'... [14:51:39] Unable to load filterscript 'fsdebug.amx'. [14:51:39] Loading filterscript 'fly.amx'... [14:51:39] Unable to load filterscript 'fly.amx'. [14:51:39] Loaded 0 filterscripts. [14:51:39] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [14:51:39] Number of vehicle models: 43 [14:52:13] Incoming connection: 176.214.53.117:52225 [14:52:14] [join] Artem_Chislin has joined the server (0:176.214.53.117) ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [14:56:36] [14:56:36] Server Plugins [14:56:36] -------------- [14:56:36] Loading plugin: streamer.so [14:56:36] *** Streamer Plugin v2.8.2 by Incognito loaded *** [14:56:36] Loaded. [14:56:36] Loading plugin: sscanf.so [14:56:36] [14:56:36] =============================== [14:56:36] sscanf plugin loaded. [14:56:36] Version: 2.8.1 [14:56:36] © 2012 Alex "Y_Less" Cole [14:56:36] =============================== [14:56:36] Loaded. [14:56:36] Loading plugin: mysql_static.so [14:56:36] >> plugin.mysql: R39-5 successfully loaded. [14:56:36] Loaded. [14:56:36] Loading plugin: dc_cmd.so [14:56:36] Daniel's CMD plugin v2.8 [14:56:36] © 2014 Daniel_Cortez [14:56:36] www.[ссылка стороннего ресурса].ru [14:56:36] Loaded. [14:56:36] Loading plugin: CRP.so [14:56:36] [14:56:36] ______________________________________ [14:56:36] Convert Rus To Pwn v0.1.1 loaded [14:56:36] ______________________________________ [14:56:36] By: Fro © Copyright <TBG> 2009-2011 [14:56:36] ______________________________________ [14:56:36] Loaded. [14:56:36] Loading plugin: antiattack.so [14:56:36] Anti-Attack plugin by BJIADOKC loaded. [14:56:36] Loaded. [14:56:36] Loading plugin: fixes2.so [14:56:36] [14:56:36] =============================== [14:56:36] fixes plugin loaded. [14:56:36] © 2012 Alex "Y_Less" Cole [14:56:36] =============================== [14:56:36] Loaded. [14:56:36] Loading plugin: gvar.so [14:56:36] *** GVar Plugin v1.3 by Incognito loaded *** [14:56:36] Loaded. [14:56:36] Loading plugin: nativechecker.so [14:56:36] Loaded. [14:56:36] Loading plugin: regex.so [14:56:36] [14:56:36] ______________________________________ [14:56:36] Regular Expression Plugin v0.2.1 loaded [14:56:36] ______________________________________ [14:56:36] By: Fro © Copyright <TBG> 2009-2011 [14:56:36] ______________________________________ [14:56:36] Loaded. [14:56:36] Loading plugin: nativechecker.so [14:56:36] Loaded. [14:56:36] Loaded 11 plugins. [14:56:36] [14:56:36] Filterscripts [14:56:36] --------------- [14:56:36] Loading filterscript 'fsdebug.amx'... [14:56:36] Unable to load filterscript 'fsdebug.amx'. [14:56:36] Loading filterscript 'fly.amx'... [14:56:36] Unable to load filterscript 'fly.amx'. [14:56:36] Loaded 0 filterscripts. [14:56:36] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [14:56:36] Number of vehicle models: 43 [14:59:20] Incoming connection: 176.214.53.117:53402 [14:59:20] [join] Artem_Chislin has joined the server (0:176.214.53.117) ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [15:00:08] [15:00:08] Server Plugins [15:00:08] -------------- [15:00:08] Loading plugin: streamer.so [15:00:08] *** Streamer Plugin v2.8.2 by Incognito loaded *** [15:00:08] Loaded. [15:00:08] Loading plugin: sscanf.so [15:00:08] [15:00:08] =============================== [15:00:08] sscanf plugin loaded. [15:00:08] Version: 2.8.1 [15:00:08] © 2012 Alex "Y_Less" Cole [15:00:08] =============================== [15:00:08] Loaded. [15:00:08] Loading plugin: mysql_static.so [15:00:08] >> plugin.mysql: R39-5 successfully loaded. [15:00:08] Loaded. [15:00:08] Loading plugin: dc_cmd.so [15:00:08] Daniel's CMD plugin v2.8 [15:00:08] © 2014 Daniel_Cortez [15:00:08] www.[ссылка стороннего ресурса].ru [15:00:08] Loaded. [15:00:08] Loading plugin: CRP.so [15:00:08] [15:00:08] ______________________________________ [15:00:08] Convert Rus To Pwn v0.1.1 loaded [15:00:08] ______________________________________ [15:00:08] By: Fro © Copyright <TBG> 2009-2011 [15:00:08] ______________________________________ [15:00:08] Loaded. [15:00:08] Loading plugin: antiattack.so [15:00:08] Anti-Attack plugin by BJIADOKC loaded. [15:00:08] Loaded. [15:00:08] Loading plugin: fixes2.so [15:00:08] [15:00:08] =============================== [15:00:08] fixes plugin loaded. [15:00:08] © 2012 Alex "Y_Less" Cole [15:00:08] =============================== [15:00:08] Loaded. [15:00:08] Loading plugin: gvar.so [15:00:08] *** GVar Plugin v1.3 by Incognito loaded *** [15:00:08] Loaded. [15:00:08] Loading plugin: nativechecker.so [15:00:08] Loaded. [15:00:08] Loading plugin: regex.so [15:00:08] [15:00:08] ______________________________________ [15:00:08] Regular Expression Plugin v0.2.1 loaded [15:00:08] ______________________________________ [15:00:08] By: Fro © Copyright <TBG> 2009-2011 [15:00:08] ______________________________________ [15:00:08] Loaded. [15:00:08] Loading plugin: nativechecker.so [15:00:08] Loaded. [15:00:08] Loaded 11 plugins. [15:00:08] [15:00:08] Filterscripts [15:00:08] --------------- [15:00:08] Loading filterscript 'fsdebug.amx'... [15:00:08] Unable to load filterscript 'fsdebug.amx'. [15:00:08] Loading filterscript 'fly.amx'... [15:00:08] Unable to load filterscript 'fly.amx'. [15:00:08] Loaded 0 filterscripts. [15:00:08] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [15:00:08] Number of vehicle models: 43 ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, ©2005-2012 SA-MP Team [15:00:41] [15:00:41] Server Plugins [15:00:41] -------------- [15:00:41] Loading plugin: streamer.so [15:00:41] *** Streamer Plugin v2.8.2 by Incognito loaded *** [15:00:41] Loaded. [15:00:41] Loading plugin: sscanf.so [15:00:41] [15:00:41] =============================== [15:00:41] sscanf plugin loaded. [15:00:41] Version: 2.8.1 [15:00:41] © 2012 Alex "Y_Less" Cole [15:00:41] =============================== [15:00:41] Loaded. [15:00:41] Loading plugin: mysql_static.so [15:00:41] >> plugin.mysql: R39-5 successfully loaded. [15:00:41] Loaded. [15:00:41] Loading plugin: dc_cmd.so [15:00:41] Daniel's CMD plugin v2.8 [15:00:41] © 2014 Daniel_Cortez [15:00:41] www.[ссылка стороннего ресурса].ru [15:00:41] Loaded. [15:00:41] Loading plugin: CRP.so [15:00:41] [15:00:41] ______________________________________ [15:00:41] Convert Rus To Pwn v0.1.1 loaded [15:00:41] ______________________________________ [15:00:41] By: Fro © Copyright <TBG> 2009-2011 [15:00:41] ______________________________________ [15:00:41] Loaded. [15:00:41] Loading plugin: antiattack.so [15:00:41] Anti-Attack plugin by BJIADOKC loaded. [15:00:41] Loaded. [15:00:41] Loading plugin: fixes2.so [15:00:41] [15:00:41] =============================== [15:00:41] fixes plugin loaded. [15:00:41] © 2012 Alex "Y_Less" Cole [15:00:41] =============================== [15:00:41] Loaded. [15:00:41] Loading plugin: gvar.so [15:00:41] *** GVar Plugin v1.3 by Incognito loaded *** [15:00:41] Loaded. [15:00:41] Loading plugin: nativechecker.so [15:00:41] Loaded. [15:00:41] Loading plugin: regex.so [15:00:41] [15:00:41] ______________________________________ [15:00:41] Regular Expression Plugin v0.2.1 loaded [15:00:41] ______________________________________ [15:00:41] By: Fro © Copyright <TBG> 2009-2011 [15:00:41] ______________________________________ [15:00:41] Loaded. [15:00:41] Loading plugin: nativechecker.so [15:00:41] Loaded. [15:00:41] Loaded 11 plugins. [15:00:41] [15:00:41] Filterscripts [15:00:41] --------------- [15:00:41] Loading filterscript 'fsdebug.amx'... [15:00:41] Unable to load filterscript 'fsdebug.amx'. [15:00:41] Loading filterscript 'fly.amx'... [15:00:41] Unable to load filterscript 'fly.amx'. [15:00:41] Loaded 0 filterscripts. [15:00:41] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [15:00:41] Number of vehicle models: 43 Сервер лог, у меня нету окна регистрации На скрине вот что есть, больше нечиго не появляется
  9. C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43656) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43657) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43658) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43659) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43660) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43661) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43662) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43663) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43664) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43665) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43666) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43667) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43668) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43876) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43877) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43878) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43879) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43880) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43881) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43882) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43883) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43884) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43885) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43886) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43887) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43888) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43889) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition C:\Users\Home\Desktop\??????\???\gamemodes\CRMP.pwn(43890) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase Header size: 10388 bytes Code size: 4731140 bytes Data size: 166533660 bytes Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion Total requirements:171291572 bytes 133 Warnings.
  10. bukrenator

    Номера из мод-пака

    Как поменять надпись на номерах??? и сколько это будет стоить?
  11. alexman

    Прохожу сквозь объект

    Решил добавить объекты на сервер,начал с небоскрёба.Вроде как он появился,делал по видео! Но когда решил проверить коллизию то прошёл сквозь него. Хотя файл .cov есть и у всех работает. Помогите!!!!
  12. PawnerTopoviy

    Протупил, хелпа

    Привет, работал с т.д, ну и варнинг Вот код CMD:ruletka(playerid, type[]) { ShowRulet(playerid); return 1; } // команда stock ShowRulet(playerid, type)//????????? { for(new idx; idx < sizeof Ruletka; idx ++) TextDrawShowForPlayer(playerid, Ruletka[idx]); SetPlayerData(playerid, P_USE_SELECT_PANEL, type); return 1; } // сток Cам варнинг* C:\Users\dom\Desktop\mod\gamemodes\new.pwn(34280) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2016, ITB CompuPhase 1 Warning.
  13. Azixxx

    Мод unkown

    Поставил на хостинг мод и тут эта ошибка.Пытался обновлять или убирать плагины,но не помогло. Плагины которые у меня стоят: jit.so dc_cmd.so crashdetect.so mysql-centos7.so sscanf.so streamer.so timerfix.so Логи(с проблемой unkown): ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3e, (C)2005-2012 SA-MP Team [13:19:59] [13:19:59] Server Plugins [13:19:59] -------------- [13:19:59] Loading plugin: dc_cmd.so [13:19:59] Daniel's CMD plugin v2.8 [13:19:59] (c) 2014 Daniel_Cortez [13:19:59] www.[ссылка стороннего ресурса].ru [13:19:59] Loaded. [13:19:59] Loading plugin: crashdetect.so [13:19:59] CrashDetect v4.15.1 is OK. [13:19:59] Loaded. [13:19:59] Loading plugin: mysql-centos7.so [13:19:59] Failed (plugins/mysql-centos7.so: invalid ELF header) [13:19:59] Loading plugin: sscanf.so [13:19:59] [13:19:59] =============================== [13:19:59] sscanf plugin loaded. [13:19:59] Version: 2.8.1 [13:19:59] (c) 2012 Alex "Y_Less" Cole [13:19:59] =============================== [13:19:59] Loaded. [13:19:59] Loading plugin: streamer.so [13:19:59] *** Streamer Plugin v2.8.2 by Incognito loaded *** [13:19:59] Loaded. [13:19:59] Loading plugin: timerfix.so [13:19:59] >> TimerFix v1.5 successfully loaded. [13:19:59] Loaded. [13:19:59] Loaded 5 plugins. [13:19:59] [13:19:59] Ban list [13:19:59] -------- [13:19:59] Loaded: samp.ban [13:19:59] [13:19:59] [13:19:59] Filterscripts [13:19:59] --------------- [13:19:59] Loading filterscript 'antigoc.amx'... [13:19:59] [PAC GUARD] Античит v3.6 успешно загружен. [13:19:59] [PAC GUARD] Разработчик: Feliks Macalister [13:19:59] Loading filterscript 'fly.amx'... [13:19:59] Unable to load filterscript 'fly.amx'. [13:19:59] Loaded 1 filterscripts. [13:19:59] [debug] Run time error 19: "File or function is not found" [13:19:59] [debug] mysql_format [13:19:59] [debug] mysql_query [13:19:59] [debug] cache_get_row_count [13:19:59] [debug] cache_get_field_content_int [13:19:59] [debug] cache_get_field_content [13:19:59] [debug] cache_delete [13:19:59] [debug] mysql_log [13:19:59] [debug] mysql_connect [13:19:59] [debug] mysql_set_charset [13:19:59] [debug] mysql_errno [13:19:59] [debug] mysql_close [13:19:59] [debug] cache_get_row_int [13:19:59] [debug] cache_get_row [13:19:59] [debug] mysql_tquery [13:19:59] [debug] cache_get_row_float [13:19:59] [debug] cache_get_field_content_float [13:19:59] [debug] cache_insert_id [13:19:59] [debug] cache_is_valid [13:19:59] [debug] cache_set_active [13:19:59] [debug] Run time error 19: "File or function is not found" [13:19:59] [debug] mysql_format [13:19:59] [debug] mysql_query [13:19:59] [debug] cache_get_row_count [13:19:59] [debug] cache_get_field_content_int [13:19:59] [debug] cache_get_field_content [13:19:59] [debug] cache_delete [13:19:59] [debug] mysql_log [13:19:59] [debug] mysql_connect [13:19:59] [debug] mysql_set_charset [13:19:59] [debug] mysql_errno [13:19:59] [debug] mysql_close [13:19:59] [debug] cache_get_row_int [13:19:59] [debug] cache_get_row [13:19:59] [debug] mysql_tquery [13:19:59] [debug] cache_get_row_float [13:19:59] [debug] cache_get_field_content_float [13:19:59] [debug] cache_insert_id [13:19:59] [debug] cache_is_valid [13:19:59] [debug] cache_set_active [13:19:59] Script[gamemodes/new.amx]: Run time error 19: "File or function is not found" [13:19:59] Number of vehicle models: 0
  14. DonatovBoss

    Ищу GTA 5 HUD для CRMP.

    Уважаемые форумчане, нашел несколько скринов как люди играют с каким-то худом, графика каефная, карта каефная, мне понравилось.Хотел бы найти этот худ и если не тяжело. как его установить?Буду очень благодарен!
  15. Roman_Jarckov

    Что за варнинг? И как справить?

    Вот ошибка: C:\Users\-Ultra--USER-\Desktop\RRD\gamemodes\TESTING.pwn(297) : warning 213: tag mismatch C:\Users\-Ultra--USER-\Desktop\RRD\gamemodes\TESTING.pwn(298) : warning 213: tag mismatch Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 2 Warnings. Вот код: ini_getString(iniFile,"Pass",Player[playerid][pPass],64);// Пароль ini_getInteger(iniFile,"Admin",Player[playerid][pAdmin]);// Админка ini_getInteger(iniFile,"Vip",Player[playerid][pVip]); //Випка ini_getFloat(iniFile,"DScore",Player[playerid][pDScore]); //Тут ругается ini_getFloat(iniFile,"Money",Player[playerid][pMoney]);//И тут тоже
  16. v-gondurov

    ошибки при компилировании

    Вот ошибки C:\Users\dom\Desktop\Arizona rp\gamemodes\rrp.pwn(48997) : symbol is assigned a value that is never used: "minA" C:\Users\dom\Desktop\Arizona rp\gamemodes\rrp.pwn(48997) : symbol is never used: "minDist" C:\Users\dom\Desktop\Arizona rp\gamemodes\rrp.pwn(48996) : symbol is never used: "z" C:\Users\dom\Desktop\Arizona rp\gamemodes\rrp.pwn(48996) : symbol is never used: "y" C:\Users\dom\Desktop\Arizona rp\gamemodes\rrp.pwn(48996) : symbol is never used: "x" Вот сам код SendBotMessage(playerid,mesage[]) { new id; if(!IsPlayerLogged[playerid])return 0; if(!IsAtBankomat(playerid,2.0)) { new Float:x, Float:y, Float:z,Float:x1, Float:y1, Float:z1; new Float: minDist,minA=-1; GetPlayerPos(playerid, x1, y1, z1); } if(strfind(mesage, "\n")==-1) SendClientMessage(playerid,COLOR_GREY,mesage); return id; }
  17. Вообще суть проблемы. Перевел мод с SAMP 0.3.7 на CRMP 0.3е ( все функции убрал которые не работают на CRMP ) Но когда захожу на сервер, то игра просто зависает, и появляются стрелочки ( ну типа влево вправо и войти ) Подскажите в чем может быть проблема?
  18. StreetRP

    Удаление воды с сервера

    Появилась вода на дороге, раньше ее не было. Не подскажите как удалить?
  19. AngryKitten

    error 017: undefined symbol

    Добрый вечер!Застрял на 1 ошибке,не как решить не могу. [spoiler=Ошибки] error 017: undefined symbol "cache_get_value_index_int" error 017: undefined symbol "cache_get_value_index" error 017: undefined symbol "cache_get_value_index_float" error 017: undefined symbol "cache_get_value_index_float" error 017: undefined symbol "cache_get_value_index_float" error 017: undefined symbol "cache_get_value_index_int" error 017: undefined symbol "cache_get_value_index_int" error 017: undefined symbol "cache_get_value_index_int" error 017: undefined symbol "cache_get_value_index_float" error 017: undefined symbol "cache_get_value_index_float" error 017: undefined symbol "cache_get_value_index_float" error 017: undefined symbol "cache_get_value_index_int" Версия MySQL моя: R39-6 Нашел здесь темы где написано было что ошибка такая из-за разных версий MySQL. Как решить то?Перевести или что там. Проблемы вот здесь: [spoiler=Строка]@LoadPhone(); @LoadPhone() { new time = GetTickCount(); new string_er[256]; new rows; cache_get_row_count(rows); if(rows) { for(new idx = 1; idx <= rows; idx++) { cache_get_value_index_int(idx-1, 0, TPhone[idx][iD]); // id cache_get_value_index(idx-1, 1, TPhone[idx][towner], MAX_PLAYER_NAME); // owner cache_get_value_index_float(idx-1, 2, TPhone[idx][tposX]); // Z cache_get_value_index_float(idx-1, 3, TPhone[idx][tposY]); // Z cache_get_value_index_float(idx-1, 4, TPhone[idx][tposZ]); // Z cache_get_value_index_int(idx-1, 5, TPhone[idx][tcash]); // cash cache_get_value_index_int(idx-1, 6, TPhone[idx][tVirt]); // cash cache_get_value_index_int(idx-1, 7, TPhone[idx][tInt]); // cash cache_get_value_index_float(idx-1, 8, TPhone[idx][tAngleX]); // Z cache_get_value_index_float(idx-1, 9, TPhone[idx][tAngleY]); // Z cache_get_value_index_float(idx-1, 10, TPhone[idx][tAngleZ]); // Z cache_get_value_index_int(idx-1, 11, TPhone[idx][tmoney]); // tmoney format(string_er, sizeof(string_er), ">> Таксофон\nВладелец: {FFBF00}%s\n{58ACFA}Стоимость звонка: {01DF74}%d$\ \n{01DF74}Нажмите ALT", TPhone[idx][towner], TPhone[idx][tcash]); TPhone[idx][tText] = Create3DTextLabel(string_er, 0x04B45Fff, TPhone[idx][tposX],TPhone[idx][tposY],TPhone[idx][tposZ] + 1.5, 15.0, TPhone[idx][tVirt], 1); TPhone[idx][tObject] = CreateDynamicObject(1216, TPhone[idx][tposX],TPhone[idx][tposY],TPhone[idx][tposZ]-0.5, TPhone[idx][tAngleX],TPhone[idx][tAngleY],TPhone[idx][tAngleZ]); TOTALTPHONE++; } } printf("[PHONE]: Всего загружено: %i. Потрачено: %i мс.",TOTALTPHONE,GetTickCount()-time); return 1; }
  20. Здравствуйте, дорогие форумчане. Вчера захотел вырезать трассу с мода Great RP (не реклама), понадобились всего 2 объекта, добавил их, все сделал, после чего проверил, но начала появляться ошибка "Warning(opcode 0x107): Exception 0xC0000005 at 0x59F8B4" Подскажите в чем может быть дело, и да, все делал правильно, мне кажется, проблема в двух этих объектах (road 2.3.dff, l_road_2_3.col, l_road_2_3.txd; map_pole_1.dff, map_sokol.txd, map_sokol.col) Если что, файлы могу предоставить. Надеюсь на минимальную помощь в этой проблеме.
  21. FlausHack

    Проблемы с бд

    [10:15:09] Подключение к базе данных не удалось [Неизвестная ошибка. Код ошибки: -1] [10:15:09] Number of vehicle models: 34 Как бы я не пробывал черидовать mysql_5.5 mysql_static mysql Не чего не получалось (Всё правильно подключил) P.S Мод Cunbers Rp server_log.txt
  22. FlausHack

    Проблема с mysql Action Rp

    [MYSQL] Подключение к базе данных не произошло | Connect to MySQL not successfully Всё подключил правильно ! А в этом моде такая фигня Кто может респект! server_log.txt
  23. FlausHack

    Прошу помочь!

    C:\Users\Илья\Desktop\CUNBERS RP 8.5.0\pawno\include\obj.inc(3) : warning 217: loose indentation C:\Users\Илья\Desktop\CUNBERS RP 8.5.0\pawno\include\obj.inc(419) : warning 217: loose indentation C:\Users\Илья\Desktop\CUNBERS RP 8.5.0\gamemodes\G-RP.pwn(9718) : warning 204: symbol is assigned a value that is never used: "heap" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
  24. So4niyPlay

    Ошибка 203

    У меня при компиляции пишет вот такую ошибку, когда такой строки вообще нет C:\Users\nergi\Desktop\Сервер КРМП\Just\gamemodes\G-RP.pwn(38693) : warning 203: symbol is never used: "ChangeHostname"
  25. denishr06

    Перезагрузка сервера

    Вот такая вот ошибочка ! Вообщем прописывая команду которая редактирует информацию в базе данных просто ложит сервер. Написал в тех.поддержку хостинга они ответили что обращатся к вам сюда на форум. [13:29:14] [debug] #0 native format () from samp03svr-cr [13:29:14] [debug] #1 0052e0c4 in SendMes (playerid=0, color=-86, fstring[]=@005adff0 "%s ", ... <2 arguments>) at C:\Users\Надежда\Desktop\Новая папка\gamemodes\S-RP.pwn:39886 [13:29:14] [debug] #2 006bc0c8 in public cmd_members (playerid=0, params[]=@005d75b0 "") at C:\Users\Надежда\Desktop\Новая папка\gamemodes\S-RP.pwn:66203 [13:29:14] [debug] #3 native CallLocalFunction () from samp03svr-cr [13:29:14] [debug] #4 00007440 in public OnPlayerCommandText (playerid=0, cmdtext[]=@005d758c "/members") at C:\Users\Надежда\Desktop\Новая папка\pawno\include\zcmd.inc:103 [13:29:14] [debug] Native backtrace: [13:29:14] [debug] #0 f749de8b in _ZN10StackTraceC1EPv () from plugins/crashdetect.so [13:29:14] [debug] #1 f7496bcf in _ZN11CrashDetect20PrintNativeBacktraceERSoPv () from plugins/crashdetect.so [13:29:14] [debug] #2 f7497dbc in _ZN11CrashDetect20PrintNativeBacktraceEPv () from plugins/crashdetect.so [13:29:14] [debug] #3 f7498226 in _ZN11CrashDetect11OnExceptionEPv () from plugins/crashdetect.so [13:29:14] [debug] #4 f749dadc in ?? () from plugins/crashdetect.so [13:29:14] [debug] #5 f7782420 in ?? () [13:29:14] [debug] #6 0806e272 in ?? () from ./samp03svr-cr [13:29:14] [debug] #7 0806ec0d in ?? () from ./samp03svr-cr [13:29:14] [debug] #8 080cb499 in ?? () from ./samp03svr-cr [13:29:14] [debug] #9 080d1290 in ?? () from ./samp03svr-cr [13:29:14] [debug] #10 080503e4 in ?? () from ./samp03svr-cr [13:29:14] [debug] #11 f749994b in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so [13:29:14] [debug] #12 f749c8f8 in ?? () from plugins/crashdetect.so [13:29:14] [debug] #13 f74a0916 in amx_Exec () from plugins/crashdetect.so [13:29:14] [debug] #14 f7498be6 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so [13:29:14] [debug] #15 f749c659 in ?? () from plugins/crashdetect.so [13:29:14] [debug] #16 f643cd36 in ?? () from plugins/streamer.so [13:29:14] [debug] #17 080d3b12 in ?? () from ./samp03svr-cr [13:29:14] [debug] #18 080503e4 in ?? () from ./samp03svr-cr [13:29:14] [debug] #19 f749994b in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so [13:29:14] [debug] #20 f749c8f8 in ?? () from plugins/crashdetect.so [13:29:14] [debug] #21 f74a0916 in amx_Exec () from plugins/crashdetect.so [13:29:14] [debug] #22 f7498be6 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so [13:29:14] [debug] #23 f749c659 in ?? () from plugins/crashdetect.so [13:29:14] [debug] #24 f643cd36 in ?? () from plugins/streamer.so [13:29:14] [debug] #25 0806f902 in ?? () from ./samp03svr-cr [13:29:14] [debug] #26 0807fe6c in ?? () from ./samp03svr-cr [13:29:14] [debug] #27 080adbe1 in ?? () from ./samp03svr-cr [13:29:14] [debug] #28 080adcd2 in ?? () from ./samp03svr-cr [13:29:14] [debug] #29 080b79c0 in ?? () from ./samp03svr-cr [13:29:14] [debug] #30 0807d736 in ?? () from ./samp03svr-cr [13:29:14] [debug] #31 0807d962 in ?? () from ./samp03svr-cr [13:29:14] [debug] #32 08077c23 in ?? () from ./samp03svr-cr [13:29:14] [debug] #33 f74d8e46 in __libc_start_main () from /lib/i386-linux-gnu/i686/cmov/libc.so.6 [13:29:14] [debug] #34 0804b4c1 in __gxx_personality_v0 () from ./samp03svr-cr Мод Severe Russia Rp
×

Важная информация

Мы разместили cookie-файлы на ваше устройство, чтобы помочь сделать этот сайт лучше. Вы можете изменить свои настройки cookie-файлов, или продолжить без изменения настроек.