• 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 fast can i move my server from 10.76 to 10.41?

T

tejdi

Guest
I'm using TFS 1.2 and want to move from 10.76 to 10.41 because i want to add new items, but can't edit .dat and .spr on 10.76.
Who can help me?
I can upload my files you you will send me 10.41 for it :x
 
Get the forgottenserver here :
Win32 Release
http://nightlies.otland.net/dl/forg...2e4311218b86dbcf4dfc3e-b490-Win32-Release.exe

Win64 Release
http://nightlies.otland.net/dl/forg...252e4311218b86dbcf4dfc3e-b490-x64-Release.exe

it's tfs 1.0 , and tfs 1 is most likely tfs 1.2 so you won't work much in your scripts.
But downraging your map will result invalid tiles.and this is the only problem which will face you.

Big thanks @Slavi Dodo
How can i repair it?


p921gh.jpg
 
Give me the whole script on walkback.lua
So the walkback.lua:
PHP:
local SPECIAL_QUESTS = {2215, 2216, 10544, 12374, 12513, 26300, 27300, 28300}

function onStepIn(creature, item, position, fromPosition)
    local player = creature:getPlayer()
    if not player then
        return true
    end

    if (Container(item.uid) and not isInArray(SPECIAL_QUESTS, item.actionid) and item.uid > 65535) then
        return true
    end

    player:teleportTo(fromPosition, true)
    return true
end
 
So the walkback.lua:
PHP:
local SPECIAL_QUESTS = {2215, 2216, 10544, 12374, 12513, 26300, 27300, 28300}

function onStepIn(creature, item, position, fromPosition)
    local player = creature:getPlayer()
    if not player then
        return true
    end

    if (Container(item.uid) and not isInArray(SPECIAL_QUESTS, item.actionid) and item.uid > 65535) then
        return true
    end

    player:teleportTo(fromPosition, true)
    return true
end
PHP:
Replace ::
    local player = creature:getPlayer()
        if not player then
            return true
        end
With ::
    if not(isPlayer(creature)) then
        return true
    end
 
Back
Top