• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

TFS 1.X+ attack viewsight bug

Solution
I've helped him with it in private, Just changed this on map.cpp
from
C++:
return checkSightLine(fromPos, toPos) || checkSightLine(toPos, fromPos);
to
C++:
return checkSightLine(toPos, fromPos) || checkSightLine(toPos, fromPos);
I've also helped him with a few other stuff that he needed because he seemed unable to explain them in English here to anyone.
do you want to make your attack viewsight bugged?

Community Verified icon
 
I've helped him with it in private, Just changed this on map.cpp
from
C++:
return checkSightLine(fromPos, toPos) || checkSightLine(toPos, fromPos);
to
C++:
return checkSightLine(toPos, fromPos) || checkSightLine(toPos, fromPos);
I've also helped him with a few other stuff that he needed because he seemed unable to explain them in English here to anyone.
 
Solution
Back
Top