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

C++ TFS 1.5 Downgrade Nekiro - Monsters do not retreat over fields

Forkz

Advanced OT User
Joined
Jun 29, 2020
Messages
586
Solutions
17
Reaction score
159
Hi otlanders,

I noticed that after some system modifications in the source, monsters that have target distance do not "retreat" over fields, but when they are attacking they pass over the fields.

creature.cpp

Has anyone experienced this, or noticed it?
 
Last edited:
Solution
Solved --
data/monster/warlock.lua

remove
LUA:
        <element firePercent="100"/>
        <element earthPercent="100"/>
        <element energyPercent="100"/>

add

LUA:
        <immunity fire="1"/>
        <immunity energy="1" />
        <immunity poison="1" />
Solved --
data/monster/warlock.lua

remove
LUA:
        <element firePercent="100"/>
        <element earthPercent="100"/>
        <element energyPercent="100"/>

add

LUA:
        <immunity fire="1"/>
        <immunity energy="1" />
        <immunity poison="1" />
 
Solution
Back
Top