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!

Help for Skill source education

Initiate Mage
Joined
Jan 24, 2022
Messages
1
Reaction score
0
Hey guys, all right?I would like help to implement the skill system for source education, but it is giving these errors on the front End.


Error 51 error LNK2001: unresolved external symbol "private: void __thiscall FrontendWarZ::eventLearnSkill(class r3dScaleformMovie *,class Scaleform::GFx::Value const *,unsigned int)" (?eventLearnSkill@FrontendWarZ@@AAEXPAVr3dScaleformMovie@@PBVValue@GFx@Scaleform@@I@Z) FrontEndWarZ.obj Eclipse Studio

Error 52 fatal error LNK1120: 1 unresolved externals C:\WarZ\bin\WarZ.exe Eclipse Studio
 
Elite Diviner
Joined
Nov 28, 2014
Messages
437
Reaction score
252
search for:
Code:
void eventRentServer(r3dScaleformMovie* pMovie, const Scaleform::GFx::Value* args, unsigned argCount);

add abellow
Code:
// ------------------------------------ SKILL TREE - DOUGLASPRO ------------------------------------------------------------------        
void eventLearnSkill(r3dScaleformMovie* pMovie, const Scaleform::GFx::Value* args, unsigned argCount);    
void OnLearnSkillSuccess();    
static unsigned int WINAPI as_LearnSkilLThread(void* in_data);
// --------------------------------------------------------------------------------------------------------------------------
 
Upvote 0
Back
Top