• 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. flaviiojr

    Feature Auto Loot [TFS 1.3]

    The player kills the creature, then dies before the function is called, but the owner has already been stored in the variable, the function will search the player and will not find..
  2. flaviiojr

    Feature Auto Loot [TFS 1.3]

    -- Can not edit ... if (owner && owner->getAutoLootItem(item->getID())){ g_game.internalPlayerAddItem(owner, item, true, CONST_SLOT_WHEREEVER); autolooted = autolooted + ", " + item->getNameDescription(); } else if...
  3. flaviiojr

    Feature Auto Loot [TFS 1.3]

    very good! However there is a missing condition that is enabling a possible crash ... if (owner->getAutoLootItem(item->getID())){ g_game.internalPlayerAddItem(owner, item, true, CONST_SLOT_WHEREEVER); autolooted = autolooted + ", " +...
  4. flaviiojr

    Feature Auto Loot [TFS 1.3]

    Post your monsters.cpp
  5. flaviiojr

    TFS 1.X+ Fury Gates

    Oh thanks! I edited my last post!
  6. flaviiojr

    TFS 1.X+ Fury Gates

    local furyGates = { [1] = { city = 'venore', itemsPos = { [1] = {itemId = 7853, pos = Position(32833, 32081, 7)}, [2] = {itemId = 7851, pos = Position(32833, 32081, 7)}, [3] = {itemId = 5066, pos = Position(32833, 32081, 7)}...
  7. flaviiojr

    TFS 1.2 Remove Teleport Effect

    is creature
  8. flaviiojr

    TFS 1.2 Remove Teleport Effect

    Remove this lines: otland/forgottenserver otland/forgottenserver
  9. flaviiojr

    TFS 0.X Random addon doll problem with script

    local config = { [PLAYERSEX_MALE] = {381, 383, 385, 387, 389, 391, 393}, [PLAYERSEX_FEMALE] = {382, 384, 386, 388, 390, 392, 394}, msgSucess = 'Congratulations! You get full random addon!', msgNoHaveDoll = 'You do not have the addon doll.', msgHaveAllOutfits = 'You already...
  10. flaviiojr

    TFS 0.X Random addon doll problem with script

    local config = { [PLAYERSEX_MALE] = {381, 383, 385, 387, 389, 391, 393}, [PLAYERSEX_FEMALE] = {382, 384, 386, 388, 390, 392, 394}, msgSucess = 'Congratulations! You get full random addon!', msgNoHaveDoll = 'You do not have the addon doll.', msgHaveAllOutfits = 'You already...
  11. flaviiojr

    TFS 0.X Random addon doll problem with script

    local config = { [PLAYERSEX_MALE] = {381, 383, 385, 387, 389, 391, 393}, [PLAYERSEX_FEMALE] = {382, 384, 386, 388, 390, 392, 394}, msgSucess = 'Congratulations! You get full random addon!', msgNoHaveDoll = 'You do not have the addon doll.', msgHaveAllOutfits = 'You already...
  12. flaviiojr

    TFS 1.X+ Promotion only for Premium Acc

    function StdModule.promotePlayer(cid, message, keywords, parameters, node) local npcHandler = parameters.npcHandler if npcHandler == nil then error("StdModule.promotePlayer called without any npcHandler instance.") end if not npcHandler:isFocused(cid) then return...
  13. flaviiojr

    unexpected symbol near 'T' what is this?

    local config = { poss1 = { {x = 1012, y = 997, z = 7}, {x = 1015, y = 998, z = 7}, {x = 1012, y = 1001, z = 7}, {x = 1015, y = 1002, z = 7}, {x = 1012, y = 1005, z = 7}, {x = 1015, y = 1006, z = 7} }, poss2 = { {x = 1012, y =...
  14. flaviiojr

    unexpected symbol near 'T' what is this?

    local poss1 = { {x = 1012, y = 997, z = 7}, {x = 1015, y = 1006, z = 7} } function del(pos, id) local thing = getTileItemById(pos, id).uid if thing > 0 then doRemoveItem(thing) end end function onThink(interval, lastExecution) if getGlobalStorageValue(str) == 1...
  15. flaviiojr

    TFS 1.X+ Client and Server ID

    Need modify sources
  16. flaviiojr

    TFS 1.X+ Client and Server ID

    local itemType = thing:getType() local clientId = itemType:getClientId() description = string.format('%s\nServer Item ID: %d', description, thing.itemid) description = string.format('%s\nClient Item ID: %d', description, clientId)
  17. flaviiojr

    TFS 1.X+ error: ‘ZoneType_t’ has not been declared

    Yes, you must...
  18. flaviiojr

    Lua attempt to index global 'staminaRegen'

    is missing add table in script: local staminaRegen = {}
  19. flaviiojr

    TFS 0.X tfs 0.4 Banuta Shortcutt not working

    local Storage = { DeeperBanutaShortcut = 25121 } function onUse(cid, item, fromPosition, itemEx, toPosition) if itemEx.actionid ~= 62378 then return false end if getPlayerStorageValue(cid, Storage.DeeperBanutaShortcut) > 0 then doPlayerSendTextMessage(cid...
Back
Top