Weapon Stickers

Weapon Stickers 1.3.5

crashzk

Участник
Сообщения
179
Реакции
33
@donut1k I recently started getting these errors on my servers:

C-подобный:
L 08/30/2021 - 21:28:29: [SM] Exception reported: Error fetching data from field 15
L 08/30/2021 - 21:28:29: [SM] Blaming: csgo_weaponstickers.smx
L 08/30/2021 - 21:28:29: [SM] Call stack trace:
L 08/30/2021 - 21:28:29: [SM]   [0] DBResultSet.FetchFloat
L 08/30/2021 - 21:28:29: [SM]   [1] Line 248, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData
L 08/30/2021 - 21:28:51: [SM] Exception reported: Error fetching data from field 15
L 08/30/2021 - 21:28:51: [SM] Blaming: csgo_weaponstickers.smx
L 08/30/2021 - 21:28:51: [SM] Call stack trace:
L 08/30/2021 - 21:28:51: [SM]   [0] DBResultSet.FetchFloat
L 08/30/2021 - 21:28:51: [SM]   [1] Line 248, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData

What could it be, something in the database anyway?
 

z1ntex

Авторитет
Сообщения
551
Реакции
334
@donut1k I recently started getting these errors on my servers:

C-подобный:
L 08/30/2021 - 21:28:29: [SM] Exception reported: Error fetching data from field 15
L 08/30/2021 - 21:28:29: [SM] Blaming: csgo_weaponstickers.smx
L 08/30/2021 - 21:28:29: [SM] Call stack trace:
L 08/30/2021 - 21:28:29: [SM]   [0] DBResultSet.FetchFloat
L 08/30/2021 - 21:28:29: [SM]   [1] Line 248, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData
L 08/30/2021 - 21:28:51: [SM] Exception reported: Error fetching data from field 15
L 08/30/2021 - 21:28:51: [SM] Blaming: csgo_weaponstickers.smx
L 08/30/2021 - 21:28:51: [SM] Call stack trace:
L 08/30/2021 - 21:28:51: [SM]   [0] DBResultSet.FetchFloat
L 08/30/2021 - 21:28:51: [SM]   [1] Line 248, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData

What could it be, something in the database anyway?
Add missing columns in the database or make a new connection
 

crashzk

Участник
Сообщения
179
Реакции
33
Add missing columns in the database or make a new connection

I did this, in this case I deleted the database table I created, reset the database and let the plugin create everything again from scratch, it looked like this:

1630498747984.png


But even so I'm still getting the error:
C-подобный:
L 09/01/2021 - 03:02:23: [SM] Exception reported: Error fetching data from field 9
L 09/01/2021 - 03:02:23: [SM] Blaming: csgo_weaponstickers.smx
L 09/01/2021 - 03:02:23: [SM] Call stack trace:
L 09/01/2021 - 03:02:23: [SM]   [0] DBResultSet.FetchFloat
L 09/01/2021 - 03:02:23: [SM]   [1] Line 204, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData
L 09/01/2021 - 03:09:28: [SM] Exception reported: Error fetching data from field 9
L 09/01/2021 - 03:09:28: [SM] Blaming: csgo_weaponstickers.smx
L 09/01/2021 - 03:09:28: [SM] Call stack trace:
L 09/01/2021 - 03:09:28: [SM]   [0] DBResultSet.FetchFloat
L 09/01/2021 - 03:09:28: [SM]   [1] Line 204, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData
L 09/01/2021 - 03:18:44: Error log file session closed.

But I noticed that this error is only happening on some of my servers, the others don't have any errors.
 

z1ntex

Авторитет
Сообщения
551
Реакции
334
I did this, in this case I deleted the database table I created, reset the database and let the plugin create everything again from scratch, it looked like this:

Посмотреть вложение 83370

But even so I'm still getting the error:
C-подобный:
L 09/01/2021 - 03:02:23: [SM] Exception reported: Error fetching data from field 9
L 09/01/2021 - 03:02:23: [SM] Blaming: csgo_weaponstickers.smx
L 09/01/2021 - 03:02:23: [SM] Call stack trace:
L 09/01/2021 - 03:02:23: [SM]   [0] DBResultSet.FetchFloat
L 09/01/2021 - 03:02:23: [SM]   [1] Line 204, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData
L 09/01/2021 - 03:09:28: [SM] Exception reported: Error fetching data from field 9
L 09/01/2021 - 03:09:28: [SM] Blaming: csgo_weaponstickers.smx
L 09/01/2021 - 03:09:28: [SM] Call stack trace:
L 09/01/2021 - 03:09:28: [SM]   [0] DBResultSet.FetchFloat
L 09/01/2021 - 03:09:28: [SM]   [1] Line 204, quasemago/csgo_weaponstickers/database.inc::SQLCallback_LoadClientData
L 09/01/2021 - 03:18:44: Error log file session closed.

But I noticed that this error is only happening on some of my servers, the others don't have any errors.
Some tables were not created try a database query
C-подобный:
CREATE TABLE IF NOT EXISTS `weaponstickers1` (
            `id` INT NOT NULL AUTO_INCREMENT,
            `steamid` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
            `weaponindex` int(11) NOT NULL DEFAULT '0',
            `slot0` int(11) NOT NULL DEFAULT '0',
            `slot1` int(11) NOT NULL DEFAULT '0',
            `slot2` int(11) NOT NULL DEFAULT '0',
            `slot3` int(11) NOT NULL DEFAULT '0',
            `slot4` int(11) NOT NULL DEFAULT '0',
            `slot5` int(11) NOT NULL DEFAULT '0',
            `wear0` float4 NOT NULL DEFAULT '0.000000',
            `wear1` float4 NOT NULL DEFAULT '0.000000',
            `wear2` float4 NOT NULL DEFAULT '0.000000',
            `wear3` float4 NOT NULL DEFAULT '0.000000',
            `wear4` float4 NOT NULL DEFAULT '0.000000',
            `wear5` float4 NOT NULL DEFAULT '0.000000',
            `rotation0` float4 NOT NULL DEFAULT '0.000',
            `rotation1` float4 NOT NULL DEFAULT '0.000',
            `rotation2` float4 NOT NULL DEFAULT '0.000',
            `rotation3` float4 NOT NULL DEFAULT '0.000',
            `rotation4` float4 NOT NULL DEFAULT '0.000',
            `rotation5` float4 NOT NULL DEFAULT '0.000',
            PRIMARY KEY (`id`),
            UNIQUE KEY (`steamid`, `weaponindex`)
            ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
 

Yarui

Участник
Сообщения
4
Реакции
0
Ребят все установил базу данных подключил, но стикеры не работают вообще пишу команду !stikers ничего не происходит, ошибок по консоли нет плагин стал нормально. В чем проблема кто знает?
 

Туник

Участник
Сообщения
1,281
Реакции
263
Ребят все установил базу данных подключил, но стикеры не работают вообще пишу команду !stikers ничего не происходит, ошибок по консоли нет плагин стал нормально. В чем проблема кто знает?
Требования посмотрите может что-то не установили?
И в логах есть ошибки или нет?
 

Yarui

Участник
Сообщения
4
Реакции
0
Всё работает,если бы вы установили правильно
Куда копать, где смотреть что бы устранить проблему мысли есть? Без ошибок все, а не работает как такое может быть
Сообщения автоматически склеены:

Заработало перезакинул еще раз и все ок
 
Последнее редактирование:

z1ntex

Авторитет
Сообщения
551
Реакции
334

Fast-Kill

Админ школьник проверяет мой ПК на читы!
Сообщения
991
Реакции
299
@crashzk, Yesterday I updated everything from the archive, there are 2021 stickers, the new capsule is at the very end in the valve section
 

jensondor

Участник
Сообщения
27
Реакции
12
Скиньте рабочий eitems.json
А то новые стикеры в меню не появляются
 
Сверху Снизу