• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Lay

    Step tile give storage, have storage use teleport

    should work on [1.2] try this teleport: local config = { storage = 55666, -- storage the same in 2scripts position = Position(32345, 31801, 7) -- teleport to pos } function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then...
  2. Lay

    Request - Update player broadcast talkaction to TFS1.3

    Should work.
  3. Lay

    Request - Update player broadcast talkaction to TFS1.3

    I'm not good at this, but I will try (msg like GM: /b): local config = { storage = 19400, --time storage exhtime = 1 * 60, -- time 1=1min price = 1000, -- price for use or broadcast level = 100 -- level pra to use or broadcast } function onSay(player, words, param) local timetobr =...
  4. Lay

    [TFS 1.3] (Weapons) Bleeding: ignore race(undead etc) or ignore monsters.

    monsters.cpp if (tmpStrValue == "venom" || tmpInt == 1) { mType->info.race = RACE_VENOM; } else if (tmpStrValue == "blood" || tmpInt == 2) { mType->info.race = RACE_BLOOD; } else if (tmpStrValue == "undead" || tmpInt == 3) {...
  5. Lay

    Inquisition teleports

    https://otland.net/search/1778040/?q=Inquisition&o=relevance&c[node]=476+35+81+83+82+163
  6. Lay

    Remove twist of fate tfs 1.2

    NpcName.lua? This NPC who has it on offer. Post your npc modules. npc/lib/modules
  7. Lay

    Question Respawn

    Open mapname-spawns.xml in Notepad++: Ctrl+H in Find what: (<monster name="MONSTER NAME"[^>]*)(spawntime="CURRENT SPAWN TIME")([^>]*/>) in Replace with: \1spawntime="UPDATED SPAWN TIME"\3 Example: <spawn centerx="32104" centery="31133" centerz="0" radius="2"> <monster name="Ice...
  8. Lay

    [TFS 1.3] (Weapons) Bleeding: ignore race(undead etc) or ignore monsters.

    Hey, ye its me again. I made something like this: local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(COMBAT_PARAM_BLOCKARMOR, 1) combat:setParameter(COMBAT_PARAM_BLOCKSHIELD, 1) combat:setFormula(COMBAT_FORMULA_SKILL, 0, 0, 1, 0) local...
  9. Lay

    [TFS 1.3](Creaturescripts) onKill: When one boss died next one will appear after 1h.

    Hey, I tried but. . . arrrrr Need something looks like: local respawnTime = 60 * 60 * 1000 local config = { ['test1'] = {position = Position(1000, 1000, 7), monster = 'test2'}, ['test2'] = {position = Position(1000, 1000, 7), monster = 'test3'}, ['test3'] = {position =...
  10. Lay

    LEVER WITH TIMEOUT. (REQUEST)

    Why u ppl can't use tags or correct title like: [TFS 1.x] (Action) Lever with TIMEOUT. Tfs ver? I have something like this, tfs 1.x: local wallPosition = Position(1000, 1000, 7) --wall position local wall = 1028 --wall ID local revertTime = 1 * 60 * 1000 --time: 1=1min local function...
  11. Lay

    Green djinn currently free, want to change

    change: local function onTradeRequest(cid) return false end to: local function onTradeRequest(cid) if Player(cid):getStorageValue(Storage.DjinnWar.MaridFaction.Mission03) ~= 3 then npcHandler:say('I\'m sorry, pal. But you need Gabel\'s permission to trade with me.', cid)...
  12. Lay

    [TFS 1.3](CONDITION_INFIGHT) Doesn't work? or what?

    Thanks Xeraphus works fine. sendChannelMessage(CHAT1, TALKTYPE_CHANNEL_R1, string) sendChannelMessage(CHAT2, TALKTYPE_CHANNEL_R1, string)
  13. Lay

    [TFS 1.3](CONDITION_INFIGHT) Doesn't work? or what?

    I explained it wrong, just dont wont make new topic so asked here. I update TFS and now have problems with some functions like: player:sendChannelMessage in ur script Xeraphus nobody sees msg only player who used script/looted that item: local rareItems = {2492, 2498} local CHAT1 = 3...
  14. Lay

    [TFS 1.3](CONDITION_INFIGHT) Doesn't work? or what?

    \o/ Thanks! Mkalo! Maybe some1 know why: player:sendChannelMessage doesn't works correct, only player who used script sees message. ;o
  15. Lay

    [TFS 1.3](CONDITION_INFIGHT) Doesn't work? or what?

    Hey, I have problem with this: function onSay(player, words, param) if not player:getCondition(CONDITION_INFIGHT) then player:teleportTo(player:getTown():getTemplePosition()) return false else player:sendTextMessage(MESSAGE_STATUS_SMALL, "You...
  16. Lay

    Feature Reward Chest & Boss Reward [TFS 1.2]

    Aff. . sorry, false alarm! I check all now and know what crashing: <script> <event name="Gaz'haragoth heal"/> </script>
  17. Lay

    Feature Reward Chest & Boss Reward [TFS 1.2]

    [TFS 1.3] Works perfect thanks: grilo13, Mkalo *Edit: Crash when some1 receive too much items from 1boss (Gaz'haragoth)
  18. Lay

    [TFS 1.2/1.3] Free scripting service

    You the Boss! Works perfect! Thanks!
  19. Lay

    [TFS 1.2/1.3] Free scripting service

    It's me again, sorry = D 23:47 Player has looted a 1 golden legs! 23:48 Player has looted a 1 golden legs! Can I dispose of this number '1'? I try made this by myself but got something like this now: 23:52 Player has looted a golden legss! 23:52 Player has looted a golden legss! ;o Extra 's'...
  20. Lay

    [TFS 1.2/1.3] Free scripting service

    Shiet! I fckup name in xml (facepalm). Rly sorry for this, works perfect! Big Thanks!
Back
Top