-
Content Count
2,253 -
Joined
-
Last visited
-
Days Won
388
V3ct0r last won the day on May 24
V3ct0r had the most liked content!
Community Reputation
1,765 ExcellentAbout V3ct0r
-
Rank
Sea Captain
Recent Profile Visitors
72,440 profile views
-
Гайд Установка сервера Пиратии (Tales of Pirates, Pirate King Online)
V3ct0r replied to V3ct0r's topic in Пиратия: Документация
Эта ошибка говорит о том, что GameServer не может подключиться к MSSQL-серверу или получить доступ к базе данных (БД) GameDB. Причин может быть масса: 0) MSSQL-сервер не запущен; 1) Неверно указан адрес MSSQL-сервера в GameServer.cfg; 2) Неверно указаны логин и/или пароль пользователя БД в GameServer.cfg; 3) Пароль пользователя некорректно зашифрован в GameServer.cfg; 4) Не настроен доступ пользователя к БД GameDB или отсутствуют соответствующие права; 5) Не настроена "Проверка подлинности SQL Server и Windows" в настройках MSSQL-сервера; 6) Порт MSSQL-сервера отличается от стандартного 1433 (это уже совсем экзотика). Попробуй залогиниться с указанными в GameServer.cfg данными (адрес, логин, пароль) в MSSQL Management Studio, только пароль указывай незашифрованный. При положительном результате убедись что есть доступ к БД GameDB. Вообще, ошибка достаточно распространенная и много раз обсуждалась на форуме, можно поискать соответствующие темы. Как отмечено в моей подписи, я не общаюсь вне форума. Благодарю за понимание! -
Mod Player rating system
V3ct0r replied to V3ct0r's topic in Mods for client and server (PKOdev.NET mod loader)
Hello @gunnapong, After // Aligning the coordinates x = x - size.cx / 2; y = y - 24; Add std::cout << "x = " << x << "; y = " << y << std::endl; And show the output. -
@Rinor, these errors occur when the linker can't find the implementation of these methods. Make sure all required files are included and declarations with methods definitions are in the same namespace.
-
Гайд Установка сервера Пиратии (Tales of Pirates, Pirate King Online)
V3ct0r replied to V3ct0r's topic in Пиратия: Документация
Привет, @Morgan! Что не получается, в чем проблема? Какие ошибки? -
Hello @Marshmallow, The topic is not formatted correctly. Please read the section rules: The topic will be closed and moved to the archive. I also have to give you warning points for repeatedly violating this requirement.
-
Hello @Rinor, Repalce BOOL NPCHelper::_ReadRawDataInfo(CRawDataInfo *pRawDataInfo, vector<basic_string> &ParamList) to BOOL NPCHelper::_ReadRawDataInfo(CRawDataInfo *pRawDataInfo, vector<string> &ParamList) Where is the implementation for this method? void ShowRadar(const char * szX, const char * szY);
-
Mod Player rating system
V3ct0r replied to V3ct0r's topic in Mods for client and server (PKOdev.NET mod loader)
@gunnapong Now add: std::cout << "power = " << cha_scene->power << std::endl; Before: // Build power amount string char buf[32]{ 0x00 }; std::snprintf(buf, sizeof(buf), pkodev::global::label.c_str(), cha_scene->power); and show the output. -
Mod Player rating system
V3ct0r replied to V3ct0r's topic in Mods for client and server (PKOdev.NET mod loader)
@gunnapong, At the beginning. Before #include <windows.h> -
Mod Player rating system
V3ct0r replied to V3ct0r's topic in Mods for client and server (PKOdev.NET mod loader)
@gunnapong -
Mod Player rating system
V3ct0r replied to V3ct0r's topic in Mods for client and server (PKOdev.NET mod loader)
Looks like addresses are correct. 1) Add the following lines at the very beginning of the file pkodev.mod.power.client/dllmain.cpp #define _CRT_SECURE_NO_WARNINGS #include <iostream> 2) Then add the following code inside void Start(const char* path) function: AllocConsole(); freopen("CONOUT$", "w", stdout); std::cout << "Hello world!" << std::endl; 3) Add the following code: std::cout << "bShowName = " << bShowName << std::endl; after // Is the display of the character's name enabled? bool bShowName = static_cast<bool>( *reinterpret_cast<char*>( reinterpret_cast<unsigned int>(This) + 0x49 ) ); 4) Compile .dll and go to the game. Post here the output from the Game.exe console window. -
Section with servers advertising was cleaned
V3ct0r replied to V3ct0r's topic in News & Announcements
Hello friends! The section with server advertisements has been cleaned up once again. The following topics have been removed: 1) The server website is down or the invitation to the Discord server is no longer relevant; 2) The topic with server advertising is not formatted correctly. Server Advertising Section Rules; 3) Duplicate topics. If the topic with advertising your server was deleted by mistake, then report it on the forum, or create a new topic. -
Всем привет! Раздел с рекламой серверов был в очередной раз почищен. Удалены следующие темы: 1) Не работает сайт сервера или приглашение на сервер Discord более не актуально; 2) Тема с рекламой сервера оформлена некорректно. Правила раздела "Реклама серверов"; 3) Дублирующиеся темы. Если тема с рекламой вашего сервера была удалена по ошибке, то сообщите об этом на форуме, либо создайте новую тему.
-
Hello @Marshmallow, Please edit the topic according to the rules of the section: The topic will be moved to the archive.