• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Help - NoShareExpSummonMonster

darcioantonio

www.adventurerpg.com.br
Joined
Jul 30, 2013
Messages
165
Solutions
1
Reaction score
4
Location
Brasil
Twitch
darcio_
YouTube
UCEXCOEw_dYchojHNz
BR
Como adicionar o função NoShareExpSummonMonster em meu servidor 10.98 tfs 1.3?

ENG
How do I add the NoShareExpSummonMonster function to my 10.98 tfs 1.3 server?
 
You need edit your source.
creature.cpp

go to onGainExperience and after this line add
Code:
if (this->getMonster() || master->getMonster()) {
        return;
    }
 
Back
Top