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

how can i make can not attack player team at evet?!

if its tfs 1.x you can do this in events/creature.lua
Lua:
function Creature:onTargetCombat(target)

add something like

Lua:
    local teamstorage = 2222
   
    if self:isPlayer() and target:isPlayer() then
       if self:getStorageValue(teamstorage) == 1 and target:getStorageValue(teamstorage) == 1 then
          return RETURNVALUE_NOTPOSSIBLE
       end
    end
 
Back
Top