• 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!

TFS 1.X+ Strange Loot Issue

Ascuas Funkeln

Rakkedo Game
Joined
Apr 14, 2013
Messages
549
Solutions
32
Reaction score
305
Location
Poland
GitHub
AscuasFunkeln
Hello, TFS 1.2...

I got problem, today when i launch server and start working i see... Monster stop looting items! Just like that!
My last compiling changes is about pvp damage reduce.
I was thinking any script can fk up this(i add some stuff)? Or something mess in sources?
But everything works fine and now poof fk magic trick... I dont touch any "loot" stuff in source

Any ideas where start to search for solve?

@Edit Ok, im Handicap... I got this. Even if you disable stamina mode, and if stamina is under 840 value you will not obtain loot.

FIX
Change this line in monster.cpp
C++:
    if (!owner || owner->getStaminaMinutes() > 840) {
to this line
C++:
    if (!owner || owner->getStaminaMinutes() >= 0) {
 
Last edited:
Back
Top