Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How can I disable all characters starting at level 40 and with GM?

Experienced Elementalist
Joined
Jun 9, 2013
Messages
289
Reaction score
78
You need change that inside the Database of Postgree, check for a procedure of create char, change the level to "1" and PLAYER_GRADE to "0"
 
Last edited:
Initiate Mage
Joined
Jan 20, 2019
Messages
30
Reaction score
6
Thank you for your help. It's ok for this problem, juste need to modify this line in rz_gamedb_test.sql
PERFORM rz_test_char_property_set(v_char_sn);
to -- PERFORM rz_test_char_property_set(v_char_sn);

But now i have a new problem, when i try to compile with visual studio 2015 gameser_app.sln

Error :
Gravité Code Description Projet Fichier Ligne État de la suppressionErreur C2220 avertissement considéré comme une erreur - aucun fichier 'object' généré CSCommon C:\Users\Carob\Downloads\RaiderZ-Source\Develop\CSCommon\source\FSContext.cpp 97 Erreur C2196 la valeur associée à case '192' est déjà utilisée CSCommon C:\Users\Carob\Downloads\RaiderZ-Source\Develop\CSCommon\source\FSContext.cpp 105 Erreur C2196 la valeur associée à case '192' est déjà utilisée CSCommon C:\Users\Carob\Downloads\RaiderZ-Source\Develop\CSCommon\source\FSContext.cpp 113 Erreur C1083 Impossible d'ouvrir le fichier include : 'json.hpp' : No such file or directory GameServer_lib c:\users\carob\downloads\raiderz-source\develop\server\gameserver\main\GTalentCoolTimeSqlBuilder.h 3 Erreur LNK2001 symbole externe non rÚsolu "public: virtual void __thiscall GTalent::ActStart(void)" (?ActStart@GTalent@@UAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\GameServer.lib(GExtraActiveTalent.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "public: virtual void __thiscall GTalent::ActStart(void)" (?ActStart@GTalent@@UAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\GameServer.lib(GTalentFactory.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "public: virtual void __thiscall GTalent::ActStart(void)" (?ActStart@GTalent@@UAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\GameServer.lib(GTalent.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "public: virtual void __thiscall GTalent::ActStart(void)" (?ActStart@GTalent@@UAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\GameServer.lib(GMagicTalent.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "public: virtual void __thiscall GTalent::ActStart(void)" (?ActStart@GTalent@@UAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\GameServer.lib(GItemTalent.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "__declspec(dllimport) public: __thiscall std::basic_ostringstream<char,struct std::char_traits<char>,class std::allocator<char> >::basic_ostringstream<char,struct std::char_traits<char>,class std::allocator<char> >(int)" (__imp_??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\UnitTest++.vsnet2008MD.lib(Test.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "__declspec(dllimport) public: void __thiscall std::_Mutex::_Lock(void)" (__imp_?_Lock@_Mutex@std@@QAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\UnitTest++.vsnet2008MD.lib(Test.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "__declspec(dllimport) public: void __thiscall std::_Mutex::_Unlock(void)" (__imp_?_Unlock@_Mutex@std@@QAEXXZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\UnitTest++.vsnet2008MD.lib(Test.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "__declspec(dllimport) public: int __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::sputn(char const *,int)" (__imp_?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\UnitTest++.vsnet2008MD.lib(Test.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "__declspec(dllimport) public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::eek:perator=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (__imp_??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\UnitTest++.vsnet2008MD.lib(MemoryOutStream.obj) 1 Erreur LNK2001 symbole externe non rÚsolu "__declspec(dllimport) public: __thiscall std::exception::exception(void)" (__imp_??0exception@std@@QAE@XZ) GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Server\GameServer\app\UnitTest++.vsnet2008MD.lib(AssertException.obj) 1 Erreur LNK1120 7 externes non rÚsolus GameServer_app C:\Users\Carob\Downloads\RaiderZ-Source\Develop\Game\Runtime\Dev\GameServer\GameServer_r.exe 1
 
Initiate Mage
Joined
Jan 20, 2019
Messages
30
Reaction score
6
Nobody can help me, please ? :?::/:

GameServer.lib(GDBManager.obj) : error LNK2001: symbole externe non rÚsolu "public: void __thiscall GDBTaskGuideBookInsert::Input(struct GDBT_GUIDEBOOK_INSERT_DATA const &)" (?Input@GDBTaskGuideBookInsert@@QAEXABUGDBT_GUIDEBOOK_INSERT_DATA@@@Z)
 
Initiate Mage
Joined
Feb 26, 2019
Messages
4
Reaction score
1
Nobody can help me, please ? :?::/:

GameServer.lib(GDBManager.obj) : error LNK2001: symbole externe non rÚsolu "public: void __thiscall GDBTaskGuideBookInsert::Input(struct GDBT_GUIDEBOOK_INSERT_DATA const &)" (?Input@GDBTaskGuideBookInsert@@QAEXABUGDBT_GUIDEBOOK_INSERT_DATA@@@Z)
From the context i assume this linker error shows up because you compile the app before the lib which is needed to compile the app.
Or the path settings of the project are faulty (lib n stuff paths).
 
Joined
Nov 30, 2013
Messages
36
Reaction score
7
Nobody can help me, please ? :?::/:

GameServer.lib(GDBManager.obj) : error LNK2001: symbole externe non rÚsolu "public: void __thiscall GDBTaskGuideBookInsert::Input(struct GDBT_GUIDEBOOK_INSERT_DATA const &)" (?Input@GDBTaskGuideBookInsert@@QAEXABUGDBT_GUIDEBOOK_INSERT_DATA@@@Z)

Checks the GDBTaskGuideBookInsert function in gdbmanager.cpp and gdbmanager.h
 
Back
Top