[VIP] Core

Auttend

Помешан на Лансере
Сообщения
155
Реакции
48
Выкладываю свои скрипты, которыми очень долгое время помогал людям переносить VIP-игроков из SQLite в MySQL базу, и наоборот.
  • SQLite2MySQL.php - из SQLite в MySQL
  • MySQL2SQLite.php - из MySQL в SQLite

Как пользоваться?

  1. Открыть нужный скрипт редактором Notepad++, или любым иным, поддерживающим кодировку UTF-8 без BOM (строго без BOM).
  2. Найти настройки скрипта. Они помечены специальным комментарием:
    PHP:
    /**
    * Настройки скрипта.
    */
  3. Произвести настройку, загрузить на удалённый веб-хостинг.
  4. Открыть в веб-браузере.
Обращаю внимание: в базе, в которую производится импорт, уже должна существовать структура. Для MySQL достаточно хотя бы один раз подключить плагин к нему.
Если нет возможности, или желания, прикладываю запросы для MySQL базы, которые надо выполнить через phpMyAdmin / HeidiSQL / любой иной менеджер БД.
SQL:
CREATE TABLE IF NOT EXISTS `vip_users` (
  `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  `auth` VARCHAR(64) UNIQUE NOT NULL,
  `name` VARCHAR(64) NOT NULL default 'unknown',
  `auth_type` TINYINT(2) UNSIGNED NOT NULL default '0',
  `pass_key` VARCHAR(64) default NULL,
  `password` VARCHAR(64) default NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `auth_id` (`auth`)
) DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;

CREATE TABLE IF NOT EXISTS `vip_overrides` (
  `user_id` INT(10) UNSIGNED NOT NULL,
  `server_id` INT(10) UNSIGNED NOT NULL,
  `group` VARCHAR(64) default NULL,
  `expires` INT(10) UNSIGNED NOT NULL default '0',
  PRIMARY KEY (`user_id`, `server_id`),
  UNIQUE KEY `user_id` (`user_id`, `server_id`),
  CONSTRAINT `vip_overrides_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `vip_users` (`id`)  ON DELETE CASCADE ON UPDATE CASCADE
) DEFAULT CHARSET=utf8;

Сколько долблюсь с этим, выдает:
L 02/24/2020 - 02:27:05: Пытаемся подключиться к БД...
L 02/24/2020 - 02:27:05: Произошла ошибка: could not find driver

Переношу из SQLite в MySQL
Прикладываю настройки скрипта:

1582501259170.png
 

Вложения

  • 1582501218965.png
    1582501218965.png
    9.4 КБ · Просмотры: 9

Kruzya

Участник
Сообщения
12,970
Реакции
10,914
А тут не в настройках дело, а в расширениях PHP.
 

Kruzya

Участник
Сообщения
12,970
Реакции
10,914
какие расширения требуются?
pdo_mysql и pdo_sqlite. Через них скрипт к базам ходит.

Ну и Вы хоть не с 3.0 пытаетесь производить все эти операции? Скрипт пока только для 2.1.1 пригоден только. Для 3.0 не было времени адаптировать, ибо нужна тестовая база.
 

Auttend

Помешан на Лансере
Сообщения
155
Реакции
48
pdo_mysql и pdo_sqlite. Через них скрипт к базам ходит.

Ну и Вы хоть не с 3.0 пытаетесь производить все эти операции? Скрипт пока только для 2.1.1 пригоден только. Для 3.0 не было времени адаптировать, ибо нужна тестовая база.
3.0, тогда, как поступить мне?
 

babka68

Участник
Сообщения
2,124
Реакции
956
Всем привет,со вчерашнего дня появился в лога вот такая ошибка,с чем она связана?

L 02/23/2020 - 13:38:17: [SM] Exception reported: Client 4 is not connected/Игрок 4 не подключен
L 02/23/2020 - 13:38:17: [SM] Blaming: vip/VIP_Core.smx
L 02/23/2020 - 13:38:17: [SM] Call stack trace:
L 02/23/2020 - 13:38:17: [SM] [0] ThrowNativeError
L 02/23/2020 - 13:38:17: [SM] [1] Line 1307, vip/API.sp::CheckValidClient
L 02/23/2020 - 13:38:17: [SM] [2] Line 307, vip/API.sp::Native_IsClientVIP
L 02/23/2020 - 13:38:17: [SM] [4] VIP_IsClientVIP
L 02/23/2020 - 13:38:17: [SM] [5] Line 11, C:\Users\Denis\Desktop\forsale\VIP_Messages.sp::SayChat
L 02/23/2020 - 15:12:28: Error log file session closed.

[01] SourceMod (1.10.0.6458) by AlliedModders LLC
[02] ProcessCmds (1.0.9) by GoDtm666 (www.MyArena.ru)
[03] CS Tools (1.10.0.6458) by AlliedModders LLC
[04] SDK Tools (1.10.0.6458) by AlliedModders LLC
[05] SDK Hooks (1.10.0.6458) by AlliedModders LLC
"Metamod:Source 1.10.7-dev"
"[VIP] Core" (3.0 R) by R1KO
 

Round

Участник
Сообщения
303
Реакции
65
Всем привет,со вчерашнего дня появился в лога вот такая ошибка,с чем она связана?

L 02/23/2020 - 13:38:17: [SM] Exception reported: Client 4 is not connected/Игрок 4 не подключен
L 02/23/2020 - 13:38:17: [SM] Blaming: vip/VIP_Core.smx
L 02/23/2020 - 13:38:17: [SM] Call stack trace:
L 02/23/2020 - 13:38:17: [SM] [0] ThrowNativeError
L 02/23/2020 - 13:38:17: [SM] [1] Line 1307, vip/API.sp::CheckValidClient
L 02/23/2020 - 13:38:17: [SM] [2] Line 307, vip/API.sp::Native_IsClientVIP
L 02/23/2020 - 13:38:17: [SM] [4] VIP_IsClientVIP
L 02/23/2020 - 13:38:17: [SM] [5] Line 11, C:\Users\Denis\Desktop\forsale\VIP_Messages.sp::SayChat
L 02/23/2020 - 15:12:28: Error log file session closed.

[01] SourceMod (1.10.0.6458) by AlliedModders LLC
[02] ProcessCmds (1.0.9) by GoDtm666 (www.MyArena.ru)
[03] CS Tools (1.10.0.6458) by AlliedModders LLC
[04] SDK Tools (1.10.0.6458) by AlliedModders LLC
[05] SDK Hooks (1.10.0.6458) by AlliedModders LLC
"Metamod:Source 1.10.7-dev"
"[VIP] Core" (3.0 R) by R1KO
Такая же ситуация,только с модулем vip time:

Exception reported: Client 6 is not connected/Игрок 6 не подключен
L 02/24/2020 - 00:34:00: [SM] Blaming: vip/VIP_Core.smx
L 02/24/2020 - 00:34:00: [SM] Call stack trace:
L 02/24/2020 - 00:34:00: [SM] [0] ThrowNativeError
L 02/24/2020 - 00:34:00: [SM] [1] Line 1307, vip/API.sp::CheckValidClient
L 02/24/2020 - 00:34:00: [SM] [2] Line 307, vip/API.sp::Native_IsClientVIP
L 02/24/2020 - 00:34:00: [SM] [4] VIP_IsClientVIP
L 02/24/2020 - 00:34:00: [SM] [5] Line 111, VIP_TimeVIP_1.0.0.sp::Timer_Delay
 

babka68

Участник
Сообщения
2,124
Реакции
956
Хм,а что это за модуль VIP_Messages.sp я вроде не ставил такого ничего
Кто подскажет что это?
#include <vip_core>

public OnPluginStart()
{
AddCommandListener(SayChat, "say");
AddCommandListener(SayChat, "say_team");
}

public Action:SayChat(client, const String:command[], args)
{
if(client <= 0 || !VIP_IsClientVIP(client)) return Plugin_Continue;

decl String:text[192];
GetCmdArgString(text, sizeof(text));
if(text[1] == '#')
{
ReplaceString(text, 8, "#", "");
StripQuotes(text);
for (new i = 1; i <= MaxClients;i++) if(IsClientInGame(i) && VIP_IsClientVIP(i))
{
PrintToChat(i,"\x01\x04[VIP] \x01%N : \x04%s",client,text);
}
return Plugin_Handled
}
return Plugin_Continue;
}
 
Последнее редактирование:

GODNIK

🚚 ПеревоЗЧИК 🚛
Сообщения
269
Реакции
73
L 02/25/2020 - 14:58:20: [SM] Exception reported: Plugin handle 600060 is invalid (error 1)
L 02/25/2020 - 14:58:20: [SM] Blaming: vip/VIP_Core.smx
L 02/25/2020 - 14:58:20: [SM] Call stack trace:
L 02/25/2020 - 14:58:20: [SM] [0] Call_StartFunction
L 02/25/2020 - 14:58:20: [SM] [1] Line 201, vip/API.sp::Function_OnItemSelect
L 02/25/2020 - 14:58:20: [SM] [2] Line 311, vip/VipMenu.sp::Handler_VIPMenu

Пытался перезапустить WeaponPack
sm plugins reload vip/VIP_WeaponPack

После чего вообще отказалась работать.
 

ZizionarD

Участник
Сообщения
596
Реакции
66
Опять вырыгнул ошибку при добавлении игрока:
C-подобный:
[vip/VIP_Core.smx] SQL_Callback_OnVIPClientAdded: Incorrect string value: '\xF0\x9D\x95\xADar...' for column 'name' at row 1
 

GODNIK

🚚 ПеревоЗЧИК 🚛
Сообщения
269
Реакции
73
на sm 1.9 это новое ядро 3R, пойдет?
 

Overlord

Участник
Сообщения
537
Реакции
108
Хелпа нужна, уже третий раз пишу - игнор.
L 02/27/2020 - 02:16:39: SourceMod error session started
L 02/27/2020 - 02:16:39: Info (map "surf_vortex") (file "/srv/csgo/addons/sourcemod/logs/errors_20200227.log")
L 02/27/2020 - 02:16:39: [SM] Exception reported: Array index out-of-bounds (index -1, limit 256)
L 02/27/2020 - 02:16:39: [SM] Blaming: vip/VIP_Core.smx
L 02/27/2020 - 02:16:39: [SM] Call stack trace:
L 02/27/2020 - 02:16:39: [SM] [1] Line 68, vip/Downloads.sp::Dir_AddToDownloadsTable
L 02/27/2020 - 02:16:39: [SM] [2] Line 52, vip/Downloads.sp::File_AddToDownloadsTable
L 02/27/2020 - 02:16:39: [SM] [3] Line 31, vip/Downloads.sp::ReadDownloads
L 02/27/2020 - 02:16:39: [SM] [4] Line 4, vip/Configs.sp::OnMapStart


"[VIP] Core" (3.1 DEV) by R1KO стоит
 

mr.skala.johnsohn

Участник
Сообщения
87
Реакции
18
Хелпа нужна, уже третий раз пишу - игнор.
L 02/27/2020 - 02:16:39: SourceMod error session started
L 02/27/2020 - 02:16:39: Info (map "surf_vortex") (file "/srv/csgo/addons/sourcemod/logs/errors_20200227.log")
L 02/27/2020 - 02:16:39: [SM] Exception reported: Array index out-of-bounds (index -1, limit 256)
L 02/27/2020 - 02:16:39: [SM] Blaming: vip/VIP_Core.smx
L 02/27/2020 - 02:16:39: [SM] Call stack trace:
L 02/27/2020 - 02:16:39: [SM] [1] Line 68, vip/Downloads.sp::Dir_AddToDownloadsTable
L 02/27/2020 - 02:16:39: [SM] [2] Line 52, vip/Downloads.sp::File_AddToDownloadsTable
L 02/27/2020 - 02:16:39: [SM] [3] Line 31, vip/Downloads.sp::ReadDownloads
L 02/27/2020 - 02:16:39: [SM] [4] Line 4, vip/Configs.sp::OnMapStart


"[VIP] Core" (3.1 DEV) by R1KO стоит
Я конечно не профи в этих делах, но я бы на твоём месте попробовал-бы обновить SM. И откуда эта версия 3.1 ? 3.0 Самая стабильная на мой взгляд, всё отлично работает, ставь её если тебе не сложно.
 

R1KO

fuck society
Сообщения
9,457
Реакции
7,786
  • Команда форума
  • Автор ресурса
  • #1,997
Хелпа нужна, уже третий раз пишу - игнор.
L 02/27/2020 - 02:16:39: SourceMod error session started
L 02/27/2020 - 02:16:39: Info (map "surf_vortex") (file "/srv/csgo/addons/sourcemod/logs/errors_20200227.log")
L 02/27/2020 - 02:16:39: [SM] Exception reported: Array index out-of-bounds (index -1, limit 256)
L 02/27/2020 - 02:16:39: [SM] Blaming: vip/VIP_Core.smx
L 02/27/2020 - 02:16:39: [SM] Call stack trace:
L 02/27/2020 - 02:16:39: [SM] [1] Line 68, vip/Downloads.sp::Dir_AddToDownloadsTable
L 02/27/2020 - 02:16:39: [SM] [2] Line 52, vip/Downloads.sp::File_AddToDownloadsTable
L 02/27/2020 - 02:16:39: [SM] [3] Line 31, vip/Downloads.sp::ReadDownloads
L 02/27/2020 - 02:16:39: [SM] [4] Line 4, vip/Configs.sp::OnMapStart


"[VIP] Core" (3.1 DEV) by R1KO стоит
какая-то строка в довнлоад листе кривая (либо мои руки)
 
  • Ха-ха-ха
Реакции: _wS_

Overlord

Участник
Сообщения
537
Реакции
108
какая-то строка в довнлоад листе кривая (либо мои руки)
materials/models/parachute/gargoyle.vmt
materials/models/parachute/gargoyle.vtf
materials/models/parachute/pack.vmt
materials/models/parachute/pack.vtf

models/parachute/gargoyle.dx80.vtx
models/parachute/gargoyle.dx90.vtx
models/parachute/gargoyle.mdl
models/parachute/gargoyle.sw.vtx
models/parachute/gargoyle.vvd

materials/models/weapons
models/weapons
materials/models/wow

materials/effects/circle4.vtf
materials/effects/circle4_add.vmt
materials/effects/circle5.vmt
materials/effects/circle5.vtf
materials/particle/2joints/bluemuzzle.vmt
materials/particle/2joints/bluemuzzle.vtf
materials/particle/electrical/electrical_arc_animated.vmt
materials/particle/electrical/electrical_arc_beam.vmt
materials/particle/electrical/electrical_arc_sprites.vtf
materials/particle/vistasmokev1/vistasmokev1.vtf
materials/particle/bubble01.vmt
materials/particle/bubble01.vtf
materials/particle/vistasmokev1_add_nearcull.vmt
particles/bubble_3_fix.pcf

materials/models/player/custom_player/2019x/
materials/models/player/custom_player/bbs_93x_net_2017/
materials/models/player/custom_player/bbs_93x_net_2018/

models/player/custom_player/2019x
models/player/custom_player/bbs_93x_net_2017
models/player/custom_player/bbs_93x_net_2018

materials/models/player/kuristaja
models/player/custom_player/kuristaja
 

GODNIK

🚚 ПеревоЗЧИК 🚛
Сообщения
269
Реакции
73
Что делать, настройка просто сбрасываеться, выключил Ауру, неон и т.д перезапускаю сервер все заново включено.
C++:
L 02/27/2020 - 08:15:25: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 08:15:25: [UPDATER] Successfully updated gamedata file "funcommands.games.txt"
L 02/27/2020 - 08:15:25: [UPDATER] Successfully updated gamedata file "sdkhooks.games/engine.contagion.txt"
L 02/27/2020 - 08:15:25: [UPDATER] Successfully updated gamedata file "sdktools.games/engine.csgo.txt"
L 02/27/2020 - 08:15:25: [UPDATER] Successfully updated gamedata file "sdktools.games/engine.contagion.txt"
L 02/27/2020 - 08:15:25: [UPDATER] Successfully updated gamedata file "connect.games.txt"
L 02/27/2020 - 08:15:25: [UPDATER] SourceMod has been updated, please reload it or restart your server.
L 02/27/2020 - 08:16:19: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 08:16:19: [UPDATER] Successfully updated gamedata file "funcommands.games.txt"
L 02/27/2020 - 08:16:19: [UPDATER] Successfully updated gamedata file "sdkhooks.games/engine.contagion.txt"
L 02/27/2020 - 08:16:19: [UPDATER] Successfully updated gamedata file "sdktools.games/engine.csgo.txt"
L 02/27/2020 - 08:16:19: [UPDATER] Successfully updated gamedata file "sdktools.games/engine.contagion.txt"
L 02/27/2020 - 08:16:19: [UPDATER] Successfully updated gamedata file "connect.games.txt"
L 02/27/2020 - 08:16:19: [UPDATER] SourceMod has been updated, please reload it or restart your server.
L 02/27/2020 - 08:19:53: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 08:19:53: -------- Mapchange to de_mirage --------
L 02/27/2020 - 09:26:54: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 09:26:54: -------- Mapchange to de_mirage --------
L 02/27/2020 - 10:13:51: -------- Mapchange to de_mirage --------
L 02/27/2020 - 10:26:00: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 10:26:00: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 10:31:36: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 10:31:36: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 10:31:44: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 10:32:27: -------- Mapchange to de_mirage --------
L 02/27/2020 - 10:32:27: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 10:32:34: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 10:35:01: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 10:35:01: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 10:35:10: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 10:35:11: -------- Mapchange to de_mirage --------
L 02/27/2020 - 10:35:18: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 10:35:24: [thc_rpg.smx] Client 2 purchased upgrade Speed+ at level 1
L 02/27/2020 - 10:35:29: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 1
L 02/27/2020 - 10:35:29: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 2
L 02/27/2020 - 10:35:59: [thc_rpg.smx] Client 2 purchased upgrade RegenerateArmor at level 1
L 02/27/2020 - 10:36:07: [thc_rpg.smx] Client 2 purchased upgrade Speed+ at level 2
L 02/27/2020 - 10:36:07: [thc_rpg.smx] Client 2 purchased upgrade Speed+ at level 3
L 02/27/2020 - 10:36:07: [thc_rpg.smx] Client 2 purchased upgrade Speed+ at level 4
L 02/27/2020 - 10:36:08: [thc_rpg.smx] Client 2 purchased upgrade Speed+ at level 5
L 02/27/2020 - 10:36:38: [thc_rpg.smx] Client 2 purchased upgrade RegenerateHP at level 1
L 02/27/2020 - 10:38:13: -------- Mapchange to de_mirage --------
L 02/27/2020 - 10:38:20: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 10:38:54: -------- Mapchange to de_mirage --------
L 02/27/2020 - 10:39:02: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 10:46:37: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 10:46:37: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 10:46:44: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:17:32: -------- Mapchange to de_mirage --------
L 02/27/2020 - 11:17:39: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:20:38: [thc_rpg.smx] Client 4 purchased upgrade Damage+ at level 1
L 02/27/2020 - 11:20:39: [thc_rpg.smx] Client 4 purchased upgrade Gravity- at level 1
L 02/27/2020 - 11:20:41: [thc_rpg.smx] Client 4 purchased upgrade Gravity- at level 2
L 02/27/2020 - 11:20:41: [thc_rpg.smx] Client 4 purchased upgrade Gravity- at level 3
L 02/27/2020 - 11:20:41: [thc_rpg.smx] Client 4 purchased upgrade Gravity- at level 4
L 02/27/2020 - 11:20:42: [thc_rpg.smx] Client 4 purchased upgrade Gravity- at level 5
L 02/27/2020 - 11:23:28: [thc_rpg.smx] Client 3 purchased upgrade Speed+ at level 1
L 02/27/2020 - 11:24:07: [thc_rpg.smx] Client 3 purchased upgrade LongJump at level 1
L 02/27/2020 - 11:24:07: [thc_rpg.smx] Client 3 purchased upgrade LongJump at level 2
L 02/27/2020 - 11:24:08: [thc_rpg.smx] Client 3 purchased upgrade LongJump at level 3
L 02/27/2020 - 11:24:12: [thc_rpg.smx] Client 3 purchased upgrade Stealth at level 1
L 02/27/2020 - 11:24:23: [thc_rpg.smx] Client 3 purchased upgrade Adrenaline at level 1
L 02/27/2020 - 11:24:23: [thc_rpg.smx] Client 3 purchased upgrade Health+ at level 1
L 02/27/2020 - 11:24:23: [thc_rpg.smx] Client 3 purchased upgrade Adrenaline at level 2
L 02/27/2020 - 11:24:24: [thc_rpg.smx] Client 3 purchased upgrade Health+ at level 2
L 02/27/2020 - 11:24:26: [thc_rpg.smx] Client 3 purchased upgrade RegenerateHP at level 1
L 02/27/2020 - 11:24:26: [thc_rpg.smx] Client 3 purchased upgrade RegenerateHP at level 2
L 02/27/2020 - 11:24:54: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 1
L 02/27/2020 - 11:24:58: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 2
L 02/27/2020 - 11:24:59: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 3
L 02/27/2020 - 11:24:59: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 4
L 02/27/2020 - 11:24:59: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 5
L 02/27/2020 - 11:25:00: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 6
L 02/27/2020 - 11:25:18: [thc_rpg.smx] Client 2 purchased upgrade respawn at level 1
L 02/27/2020 - 11:25:45: [thc_rpg.smx] Client 3 purchased upgrade FirePistol at level 1
L 02/27/2020 - 11:26:40: -------- Mapchange to de_inferno --------
L 02/27/2020 - 11:26:40: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 11:26:47: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:27:45: [thc_rpg.smx] Client 3 purchased upgrade BouncyBullets at level 1
L 02/27/2020 - 11:28:40: [thc_rpg.smx] Client 2 purchased upgrade Speed+ at level 1
L 02/27/2020 - 11:29:03: [thc_rpg.smx] Client 3 purchased upgrade Damage+ at level 1
L 02/27/2020 - 11:33:37: [thc_rpg.smx] Client 3 purchased upgrade BouncyBullets at level 2
L 02/27/2020 - 11:33:37: [thc_rpg.smx] Client 2 purchased upgrade Health+ at level 1
L 02/27/2020 - 11:33:54: [thc_rpg.smx] Client 2 purchased upgrade Adrenaline at level 1
L 02/27/2020 - 11:36:17: -------- Mapchange to de_cache --------
L 02/27/2020 - 11:36:17: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 11:36:25: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:43:31: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 11:43:31: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 11:43:31: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 11:43:31: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 11:43:37: -------- Mapchange to de_mirage --------
L 02/27/2020 - 11:43:40: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:43:44: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:49:37: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 11:49:37: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 11:49:37: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 11:49:37: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 11:49:40: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 11:49:40: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 11:49:44: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:49:47: -------- Mapchange to de_mirage --------
L 02/27/2020 - 11:49:48: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 11:49:54: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 11:55:41: [advadmin.smx] Rimmer: Rimmer's GOD установлен на: 1
L 02/27/2020 - 11:55:51: [thc_rpg.smx] Client 4 purchased upgrade Damage+ at level 1
L 02/27/2020 - 11:56:15: [thc_rpg.smx] Client 4 purchased upgrade FirePistol at level 1
L 02/27/2020 - 12:09:26: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 12:09:26: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 12:09:26: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 12:09:26: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 12:09:29: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 12:09:29: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 12:09:30: -------- Mapchange to de_mirage --------
L 02/27/2020 - 12:09:32: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 12:09:38: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 12:11:25: [thc_rpg.smx] Client 12 purchased upgrade RegenerateHP at level 1
L 02/27/2020 - 12:14:02: [thc_rpg.smx] Client 12 purchased upgrade Health+ at level 1
L 02/27/2020 - 12:19:34: [thc_rpg.smx] Client 2 purchased upgrade LongJump at level 1
L 02/27/2020 - 12:19:43: [thc_rpg.smx] Client 2 purchased upgrade RegenerateArmor at level 1
L 02/27/2020 - 12:30:16: [thc_rpg.smx] Client 2 purchased upgrade Health+ at level 1
L 02/27/2020 - 12:36:52: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 12:36:52: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 12:36:52: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 12:36:52: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 12:36:55: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 12:36:55: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 12:36:59: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 12:37:03: -------- Mapchange to de_mirage --------
L 02/27/2020 - 12:37:05: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 12:37:11: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 12:38:06: [thc_rpg.smx] Client 3 purchased upgrade LongJump at level 1
L 02/27/2020 - 13:00:56: -------- Mapchange to de_vertigo --------
L 02/27/2020 - 13:00:59: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:01:05: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:09:02: [basevotes.smx] "Rimmer<4><STEAM_1:0:463610478><>" initiated a map vote.
L 02/27/2020 - 13:09:03: [basevotes.smx] Changing map to de_mirage due to vote.
L 02/27/2020 - 13:09:08: [SM] Changed map to "de_mirage"
L 02/27/2020 - 13:09:09: -------- Mapchange to de_mirage --------
L 02/27/2020 - 13:09:17: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:09:25: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:18:29: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 13:18:29: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 13:18:29: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 13:18:29: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 13:18:32: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 13:18:32: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:18:36: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:18:45: -------- Mapchange to de_mirage --------
L 02/27/2020 - 13:18:46: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:18:52: [VIP_Stats.smx] [VIP STATS] [Socket] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:23:21: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 13:23:21: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 13:23:22: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 13:23:22: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 13:23:25: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 13:23:25: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:23:29: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:24:22: -------- Mapchange to de_mirage --------
L 02/27/2020 - 13:24:23: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:24:29: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:31:58: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 13:31:58: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 13:31:58: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 13:31:58: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 13:32:05: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:32:53: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 13:32:53: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:35:37: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 13:35:37: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 13:35:37: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 13:35:37: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 13:35:48: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:35:53: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 13:35:53: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:35:58: -------- Mapchange to de_mirage --------
L 02/27/2020 - 13:36:00: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:36:05: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:44:07: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 13:44:07: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 13:44:07: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 13:44:07: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 13:44:11: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 13:44:11: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:44:15: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:44:32: -------- Mapchange to de_mirage --------
L 02/27/2020 - 13:44:34: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:44:40: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 13:46:15: -------- Mapchange to de_mirage --------
L 02/27/2020 - 13:46:16: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 13:46:22: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 14:33:41: [thc_rpg.smx] Client 13 purchased upgrade Speed+ at level 1
L 02/27/2020 - 14:33:42: [thc_rpg.smx] Client 13 purchased upgrade Speed+ at level 2
L 02/27/2020 - 14:34:02: [thc_rpg.smx] Client 13 purchased upgrade fastreload at level 1
L 02/27/2020 - 14:34:19: [thc_rpg.smx] Client 13 purchased upgrade inhumanity at level 1
L 02/27/2020 - 14:34:42: [thc_rpg.smx] Client 14 purchased upgrade Speed+ at level 1
L 02/27/2020 - 14:34:43: [thc_rpg.smx] Client 14 purchased upgrade Speed+ at level 2
L 02/27/2020 - 14:34:45: [thc_rpg.smx] Client 14 purchased upgrade Health+ at level 2
L 02/27/2020 - 14:34:46: [thc_rpg.smx] Client 14 purchased upgrade Health+ at level 3
L 02/27/2020 - 14:36:15: [thc_rpg.smx] Client 13 purchased upgrade Damage+ at level 1
L 02/27/2020 - 14:50:19: [thc_rpg.smx] Client 13 purchased upgrade Damage+ at level 2
L 02/27/2020 - 14:50:33: [thc_rpg.smx] Client 13 purchased upgrade Health+ at level 1
L 02/27/2020 - 14:50:35: [thc_rpg.smx] Client 13 purchased upgrade Medic at level 1
L 02/27/2020 - 14:55:57: [thc_rpg.smx] Client 14 purchased upgrade Damage+ at level 1
L 02/27/2020 - 14:57:32: [thc_rpg.smx] Client 13 purchased upgrade eye at level 1
L 02/27/2020 - 15:05:03: [thc_rpg.smx] Client 13 purchased upgrade eye at level 2
L 02/27/2020 - 16:29:18: -------- Mapchange to de_mirage --------
L 02/27/2020 - 16:29:20: [mapchooser_extended.smx] No official map list found for csgo. Consider submitting one!
L 02/27/2020 - 16:29:20: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 16:29:26: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 16:34:31: SourceMod log file session started (file "/home/server1288/game/csgo/addons/sourcemod/logs/L20200227.log") (Version "1.10.0.6459")
L 02/27/2020 - 16:34:31: [GEOIP] GeoIP database info: GEO-106FREE 20091001 Build 1 Copyright (c) 2009 MaxMind Inc All Rights Reserved
L 02/27/2020 - 16:34:31: [super_adminka.smx] SuperAdminka is running in csgo mode
L 02/27/2020 - 16:34:31: [thc_rpg.smx] [Translations Manager] Successfully loaded all translation files from addons/sourcemod/translations/thc_rpg
L 02/27/2020 - 16:34:33: [mapchooser_extended.smx] No official map list found for csgo. Consider submitting one!
L 02/27/2020 - 16:34:35: [weapons.smx] SQLite DB connection successful
L 02/27/2020 - 16:34:35: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 16:34:39: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен
L 02/27/2020 - 16:39:27: -------- Mapchange to de_mirage --------
L 02/27/2020 - 16:39:29: [mapchooser_extended.smx] No official map list found for csgo. Consider submitting one!
L 02/27/2020 - 16:39:29: [weapons.smx] Inactive players' data has been deleted
L 02/27/2020 - 16:39:35: [VIP_Stats.smx] [VIP STATS] [Rest in Pawn] Сервер успешно добавлен/обновлен

sm plugins list
[SM] Listing 74 plugins:
01 "Admin Help" (1.10.0.6459) by AlliedModders LLC
02 "THC RPG lvl up module" (1.0) by 1mpulse (skype:potapovdima1)
03 "Basic Ban Commands" (1.10.0.6459) by AlliedModders LLC
04 "Player Commands" (1.10.0.6459) by AlliedModders LLC
05 "Basic Commands" (1.10.0.6459) by AlliedModders LLC
06 "Fun Commands" (1.10.0.6459) by AlliedModders LLC
07 "Hook Grab Rope" (1.1.5) by Sheepdude, SumGuy14
08 "[VIP] Paint" (1.6) by asdf
09 "Gloves" (1.0.4) by kgns | oyunhost.net
10 "[VIP] Skybox" (1.0) by White Wolf
11 "Client Preferences" (1.10.0.6459) by AlliedModders LLC
12 "Basic Votes" (1.10.0.6459) by AlliedModders LLC
13 "Sound Commands" (1.10.0.6459) by AlliedModders LLC
14 "SuperAdminka" (1.4.7) by Grey
15 "Реклама" (1.4.1) by Pheonix (‰7Феникс7‰)
16 "Basic Info Triggers" (1.10.0.6459) by AlliedModders LLC
17 "Anti-Flood" (1.10.0.6459) by AlliedModders LLC
18 "SM Fortnite Emotes Extended" (1.4.2) by Kodua, Franc1sco franug, TheBO$$
19 "Reserved Slots" (1.10.0.6459) by AlliedModders LLC
20 "Basic Chat" (1.10.0.6459) by AlliedModders LLC
21 "[THC RPG] Total HardCore RPG" (1.0.4) by 1mpulse
22 "Admin File Reader" (1.10.0.6459) by AlliedModders LLC
23 "[API] Basic Comm Control" (1.0 (compiled for 1.8.0.6000)) by AlliedModders LLC, CrazyHackGUT aka Kruzya
24 "ExtendedComm" (3.0.8b_fix) by Twisted|Panda edit by Wightjeck
25 "The Best RPG Score LvL ADDON" (2.0) by 1mpulse
26 "ahide.smx"
27 "Weapons & Knives" (1.5.0) by kgns | oyunhost.net
28 "Fix Hint Color Messages" (1.1) by Phoenix (‰7Феникс7‰) and Franc1sco Franug
29 "[VIP] Defuser" (1.0.1) by R1KO & T1MOX4
30 "MapChooser Extended" (1.10.2) by Powerlord, Zuko, and AlliedModders LLC
31 "[Levels Ranks] Core" (v3.1.2) by RoadSide Romeo & Wend4r
32 "Terrible Enable Full Alltalk" (0.02) by Sheepdude
33 "Servers Info" (1.0.0) by Phoenix (‰7Феникс7‰)
34 "[LR] Module - FakeRank" (v3.1) by RoadSide Romeo & Wend4r
35 "[LR] Module - Unusual Kills" (v3.1.3) by Wend4r
36 "Admin Menu" (1.10.0.6459) by AlliedModders LLC
37 "[VIP] Stats" (2.6) by R1KO
38 "BlockingZones | Блокирующие зоны" (1.3) by Drumanid
39 "Fortnite player hits" (1.2.0) by GAMMA CASE
40 "[CSGO] Advanced Admin" (1.7.1) by PeEzZ
41 "[VIP] MKIT" (1.1.1) by Pheonix (edit Felya)
42 "[TROLOLO-NSK.RU][VIP] SwapTeam"
43 "[VIP] Tracers" (1.1) by R1KO
44 "[VIP] Electro Effects" (1.0.3) by R1KO
45 "[VIP] Quick Defuse" (1.2) by R1KO
46 "[VIP] Vips Online" (1.0.1) by R1KO (skype: vova.andrienko1)
47 "[VIP] Core" (3.0 R) by R1KO
48 "[VIP] No Fall Damage" (1.0.0) by R1KO (skype: vova.andrienko1)
49 "[VIP] Bhop" (1.0.1) by KOROVKA
50 "[VIP] COIN" (1.1.0) by Pheonix (‰7Феникс7‰) & R1KO
51 "[VIP] NEON (CSS/CSGO)" (1.2) by R1KO & Pheonix (‰7Феникс7‰)
52 "[VIP] Spawn Effects" (1.2) by Mr.ToNik
53 "VIP Connected Msg" (1.2.2) by Skeriiz, HLmod
54 "[VIP] Nimb (Зигзаг)" (1.0.1) by R1KO & Pheonix (‰7Феникс7‰) Fix Nek.'a 2x2
55 "[VIP] Keys" (1.0.2) by R1KO (skype: vova.andrienko1)
56 "[VIP] FastReload" (1.0) by BaFeR
57 "[VIP] GrenadeTrails" (1.0.2) by R1KO
58 "[VIP] AURA" (1.0.1) by R1KO & Pheonix (‰7Феникс7‰)
59 "VIP_WeaponPack | Комплект оружий" (2.0 [ FINAL ? ]) by Drumanid
60 "[VIP] Tag" (1.1) by R1KO
61 "[VIP] Kick" (1.0.3) by R1KO (skype: vova.andrienko1)
62 "[VIP]Hitmarker" (1.0) by iEx (rework by SHKIPPERBEAST)
63 "[VIP] Healthshot" (1.0.1) by R1KO (skype: vova.andrienko1)
64 "[VIP] Test" (1.0.3) by R1KO (skype: vova.andrienko1)
65 "[VIP] Trails" (1.2) by R1KO
66 "[VIP] Nimb(Круг) +Чёрный Нимб" (1.0.1) by R1KO & Pheonix (‰7Феникс7‰) Fix Nek.'a 2x2
67 "[VIP] CustomWeapons" (1.0.0) by R1KO
68 "[VIP] Kill Bonus" (1.0.0) by R1KO (skype: vova.andrienko1)
69 "[VIP] CHAT (+scp)" (3.1.1) by R1KO
70 "[VIP] Remove Vip" (1.0) by Drumanid
71 "[VIP] Admin Privileges" (1.0.2) by R1KO (skype: vova.andrienko1)
72 "[VIP] Anti Flash" (1.0.0) by R1KO
73 "Fun Votes" (1.10.0.6459) by AlliedModders LLC
74 "[WarnSystem] Core" (1.4.3) by vadrozh, Rabb1t

meta list
Listing 5 plugins:
[01] SourceMod (1.10.0.6459) by AlliedModders LLC
[02] CS Tools (1.10.0.6459) by AlliedModders LLC
[03] SDK Tools (1.10.0.6459) by AlliedModders LLC
[04] SDK Hooks (1.10.0.6459) by AlliedModders LLC
[05] PTaH (1.1.1) by Phoenix (‰7Феникс7‰)

Если написать в консоль sm plugins reload vip/VIP_Core.smx пишет
C-подобный:
sm plugins reload vip/VIP_Core.smx
[SM] Plugin [VIP] Core reloaded successfully.
Сообщения автоматически склеены:

C++:
"VIP_GROUPS"
{
    "vipveteran"
    {
        // Параметры
        "SetAdminFlags" "t"
        "AntiFlash"    "1"
        "Weaponpack"            "1"
        "Respawn"        "1"
        "VoiceSoundPlayer"        "1"
        "RegenArmor"        "10"
        "DelayRegenArmor"    "5"
        "IntervalRegenArmor"    "10"
        "Tracers"        "1"
        "mkit"  "1"
        "COIN"                    "1"
        "Tag"        "[VIP] "
        "BunnyHop"        "1"
        "Healthshot"    "1"
        "Spawn_Effects"    "1"
        "Эффекты выстрелов" "1"
        "Аура" "1"
        "Трейлы гранат"    "1"
        "ElectroEffects"        "1"
        "CustomWeaponModels"    "1"
        "JoinMessage"        "1"    // 1 или 0, что соотв. вкл./выкл.
        "JoinMessage_Color"        "255 100 10 255"    //цвет. Формат RGBA
        "JoinMessage_Position"    "0.005 0.5"    // Позиция на экране XY
        "Chat"                "1"
        "Chat_Prefix"        "[VIP] "
        "Chat_PrefixColor"    "{OLIVE}"
        "Chat_NameColor"    "{RED}"
        "Chat_TextColor"    "{GREEN}"
        "Defuser"           "1"
        "QuickDefuse"        "10"
        "HitMarker" "1"
        "GrenadeTrails"    "1"
        "skybox" "1"
        "Kick" "1"
        "C4_Model"       "1"
        "AURA"        "1"
        "paint" "1/0"
        "AURAN" "1"
        "AURANKR" "1"
        "CustomWeapons"        "1"
        "NEON"                "1"
    }
}
 
Последнее редактирование:
Сверху Снизу