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!

Split - Remove Skill Effect ( Juver Base )

Banned
Banned
Joined
May 22, 2020
Messages
226
Reaction score
72
Merry Christmas everyone.

Tutorial is included. Just read the text inside.
 

Attachments

You must be registered for see attachments list
Joined
Apr 22, 2010
Messages
816
Reaction score
83
c:\Ran online sources\JuverVurtex\Lib_Client\G-Logic\GLChar.cpp(5186): error C3861: 'IsImmune': identifier not found, even with argument-dependent lookup
 
Experienced Elementalist
Joined
Aug 19, 2011
Messages
219
Reaction score
17
anyone knows this error?

Solve
Untitled - Split - Remove Skill Effect ( Juver Base ) - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Banned
Banned
Joined
Aug 14, 2015
Messages
84
Reaction score
31
Missing function that I've encountered and fixed it.

In GLSummonField.cpp
Find:
Code:
void GLSummonField::BUFF_REMOVE( DWORD dwBuffFlag )

Replace:
Code:
void GLSummonField::BUFF_REMOVE( DWORD dwBuffFlag, const SNATIVEID skill_id )

In GLSummonField.h
Find:
Code:
virtual void BUFF_REMOVE( DWORD dwBuffFlag );

Replace:
Code:
virtual void BUFF_REMOVE( DWORD dwBuffFlag, const SNATIVEID skill_id );
 
Back
Top