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

    Lua attempt to call method 'getOfflineTrainingSkill' (a nil value)

    Use tags for post your script.
  2. HeberPcL

    TalkAction Own Loot Backpack - Tfs 1.x

    Yes Change: if (player:removeMoney(config.cost) == true) then To: if (player:removeItem(ItemID, Count) == true) then *Change ItemID and Count*
  3. HeberPcL

    TalkAction Own Loot Backpack

    Upgrade: https://otland.net/threads/own-loot-backpack-tfs-1-x.239769/
  4. HeberPcL

    TalkAction Own Loot Backpack - Tfs 1.x

    Hello, remaker script for tfs 1.x. by @Azi https://otland.net/threads/own-loot-backpack.14923/ talkactions.xml <talkaction words="!ownbp" script="ownbp.lua"/> ownbp.lua local config = { cost = 1000, -- Cost (GP) ownTime = 24 * 60 * 60 * 1000, -- Time (24 horas) backpackId = 2000...
  5. HeberPcL

    Lua Creature Position - Bug?

    If you remove you are part solves? else if (attacker->getMonster()) { const Creature* targetMaster = target->getMaster(); if (!targetMaster || !targetMaster->getPlayer()) { const Creature* attackerMaster = attacker->getMaster()...
  6. HeberPcL

    Lua Creature Position - Bug?

    function onSay(player, words, param) local toPosition = player:getPosition() local creatureID_1 = Game.createMonster("Orc", toPosition) local creatureID_2 = Game.createMonster("Skeleton", toPosition) if ( creatureID_1 ~= nil and creatureID_2 ~= nil )then...
  7. HeberPcL

    Lua Creature Position - Bug?

    @EvulMastah, @Moj mistrz and @Printer Thanks for the tips. * * * I'm trying to do two monsters attack, but in TFS 1.x'm not getting. Have any of you done something? * * *
  8. HeberPcL

    Mackan's Mappings

    Great Job!! ;)
  9. HeberPcL

    Lua Creature Position - Bug?

    Hey, I did the following script and found a strange error and for this reason I am sharing it may be a bug. Code: toPosition = player:getPosition() local skeleton = doSummonCreature("Skeleton", toPosition) local skeletonCheckPositionNow = skelelton:getPosition() -- return error...
  10. HeberPcL

    Lua Monster Target

    Thanks
  11. HeberPcL

    Lua Monster Target

    Hey, Want to limit the target of a specific example Monster (Orc vs Troll) in TFS 0.4 would use the onTarget(). How I could do this in TFS 1.0 ?? TFS 0.4 function onTarget(cid, target)
  12. HeberPcL

    [MOD] Waypoints(Auto Walk)

    Nice!
  13. HeberPcL

    [10.40] Neptune Project unfinished + AAC

    Thanks Man!
  14. HeberPcL

    TFS 1.0+, Gesior 2015, new SHOP (with admin)

    Perfect Gesior! :D
  15. HeberPcL

    [Gesior 2012] First Tibia Global Layout

    Nice Felipe!
  16. HeberPcL

    delete accounts

    Field ID accept numbers and characters. (Not accept spaces) But is only example. And Operator <> work perferct!
Back
Top