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

Search results

  1. M

    [HELP] Action and Movements for Boss Room. TFS 1.X +

    https://prnt.sc/twhk9b local config = { bossName = "Duke Krule", lockStorage = 5080291, -- globalstorage bossPos = Position(33456, 31472, 13), centerRoom = Position(33456, 31472, 13), -- Center Room exitPosition = Position(33455, 31497, 13), -- Exit Position newPos =...
  2. M

    [HELP] Some initial quest for new players!

    player:setStorageValue(Storage.InServiceofYalahar.Questline, 51) player:setStorageValue(Storage.InServiceofYalahar.Mission01, 6) player:setStorageValue(Storage.InServiceofYalahar.Mission02, 8) player:setStorageValue(Storage.InServiceofYalahar.Mission03, 6)...
  3. M

    Vocation Chest

    use this code (Action) local config, str = { [1] = {vocs = {1, 2, 5, 6}, itemid = XXXX, text = "Mage"}, [2] = {vocs = {3, 7}, itemid = XXXX, text = "Paladin"}, [3] = {vocs = {4, 8}, itemid = XXXX, text = "knight"} }, 25398 function onUse(cid, item, fromPosition, itemEx, toPosition)...
  4. M

    TFS 1.X+ [LOGIN.LUA] Access to quests

    if player:getLevel() >= 1 and (player:getStorageValue(3993738) ~= 1) then --In Service of Yalahar player:setStorageValue(Storage.InServiceofYalahar.Questline, 5) --> START player:setStorageValue(Storage.InServiceofYalahar.Mission01, 6) --> END MISSION...
Back
Top