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

    Linux Sample error

    /phpmyadmin -> sql -> [text field] INSERT INTO players (name, group_id, account_id, sex, vocation, experience, level, maglevel, health, healthmax, mana, manamax, manaspent, soul, direction, lookbody, lookfeet, lookhead, looklegs, looktype, lookaddons, posx, posy, posz, cap, lastlogin...
  2. Hernest

    Linux 22:26 Town thais does not exists or has invalid temple position.

    So maybe it's about big letter? /town Thais or script is for another tfs version and smth is wrong there
  3. Hernest

    /ban command help

    Example; /ban playername, action, reason, ipbanishmentboolean Simple ban; /ban Gazzy, ban, botting I am not sure about ipban, but it's /ban Gazzy, ban, botting, yes or /ban Gazzy, ban, botting, true Possible actions; if (action == "notation") return 0; else if (action == "name...
  4. Hernest

    Lua TFS 0.4 | Huntarena with choice

    BUMP
  5. Hernest

    Linux 22:26 Town thais does not exists or has invalid temple position.

    Did you try with town id, not name? /town 1
  6. Hernest

    Lua Config .lua

    Maybe exp in wolf file is increased?
  7. Hernest

    How to use !tp command

    /tp x, y, z for example; /tp 1000, 1000, 7
  8. Hernest

    Lua TFS 0.4 | Huntarena with choice

    <?xml version="1.0" encoding="UTF-8"?> <mod name="HuntArea System" version="Tested only on 0.4" author="Hugq" contact="[email protected]" enabled="yes"> <config name="HuntAreaFunctions"><![CDATA[ config = { -- Teleport AID = v[1], v[2], v[3], v[4], v[5], v[6], v[7] ;] [10001] = {{x =...
  9. Hernest

    Lua Loop | TFS 0.4

    function onSay(cid, words, param) monsterarena = param local aret = monsterarena doSendMagicEffect(getPlayerPosition(cid), CONST_ME_YELLOW_RINGS) if monsterarena == "pandora" then local aret = "husky" doCreatureSay(cid, "Pandora is not allowed!"...
  10. Hernest

    Lua TFS 0.4 | talkactions

    Bump, is it possible?
  11. Hernest

    Lua TFS 0.4 | talkactions

    How to add this: function onSay(cid, words, param) monsterarena = param local aret = monsterarena doSendMagicEffect(getPlayerPosition(cid), CONST_ME_YELLOW_RINGS) if monsterarena == "pandora" then local aret = "husky" doCreatureSay(cid, "Pandora is not allowed!"...
  12. Hernest

    Lua TFS 0.4 | talkactions

    function onSay(cid, words, param) monsterarena = param doSendMagicEffect(getPlayerPosition(cid), CONST_ME_YELLOW_RINGS) if monsterarena == "pandora" then monsterarena = husky local aret = monsterarena doCreatureSay(cid, "Pandora is not allowed!"...
  13. Hernest

    Lua TFS 0.4 | talkactions

    if monsterarena == pandora then monsterarena = husky doCreatureSay(cid, "Pandora is not allowed", TALKTYPE_ORANGE_1) doCreatureSay(cid, "Changed to husky!", TALKTYPE_ORANGE_1) print(monsterarena) end Why it's didn not work? ^^ function onSay(cid, words...
  14. Hernest

    Lua TFS 0.4 | talkactions

    Hello, i want to create command like, hmm "!arena x" when x is monster name, for example !arena Demon, and after it it will by change variable. Example: before local monster = !arena Demon after local monster = Demon code; function onSay(cid, words, param) local monster =...
  15. Hernest

    Lua 8.6 ambiguous syntax (function call x new statement) near '('

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  16. Hernest

    Lua 8.6 ambiguous syntax (function call x new statement) near '('

    55. if (n >= 10 and t1 == -1) then data/npc/scripts/taski.lua:55: attempt to compare number with nil stack traceback: data/npc/scripts/taski.lua:55: in function 'callback'
  17. Hernest

    Lua 8.6 ambiguous syntax (function call x new statement) near '('

    00:11 Cris: [Error - LuaInterface::loadFile] data/npc/scripts/tescik.lua:27: 'do' expected near ',' [0:11:39.941] [Warning - NpcEvents::NpcEvents] Cannot load script: data/npc/scripts/tescik.lua [0:11:39.941] data/npc/scripts/tescik.lua:27: 'do' expected near ',' 00:13 Cris: [Error -...
  18. Hernest

    Lua 8.6 ambiguous syntax (function call x new statement) near '('

    [Error - LuaInterface::loadFile] data/npc/scripts/tescik.lua:19: 'do' expected near ',' [23:52:38.168] [Warning - NpcEvents::NpcEvents] Cannot load script: data/npc/scripts/tescik.lua [23:52:38.168] data/npc/scripts/tescik.lua:19: 'do' expected near ',' local n = 0 -- liczba tasków...
  19. Hernest

    Lua 8.6 ambiguous syntax (function call x new statement) near '('

    if(msgcontains(msg, 'tasks')) then npcHandler:say("If you want to get premium points, you need to do 10 task first. For every 10 tasks I can give you {premium points}.", cid) print (idt) if(msgcontains(msg, 'tasks')) then npcHandler:say("If you want to get premium points, you need to...
  20. Hernest

    Lua 8.6 ambiguous syntax (function call x new statement) near '('

    Do not want to create new thread. It's almost done, just did not work correctly without errors in console. I have got 12 tasks but still 19:52 John: U do not have enough tasks to claim reward! local idt if (idt >= 10 and t1 == -1) then important ^ found error, many storages got -1 at the...
Back
Top