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

Recent content by kamilwxx

  1. K

    TFS [1.0] Lottery System

    Try this one: local config = { interval = "3 hours", rewards = {[2195] = 1, [2472] = 1, [2514] = 1, [2157] = 1, [8902] = 1}, -- [itemid] = count; [2160] = 50 - it gives 50 crystal coins website = true } function onThink(interval) if Game.getPlayerCount() == 0 then return true...
  2. K

    Geisor tfs 1.0 admin panel

    As far as I know the administrator panel doesn't exist in Gesior 2012.
  3. K

    Make items Teleport you?

    Try this one: local config = { [2160] = {x = 100, y = 100, z = 7} } function onUse(cid, item, fromPosition, itemEx, toPosition) local position = config[item.itemid] if position == nil then return false end Player(cid):teleportTo(position) return true end
  4. K

    Table 'otserv.znote_visitors_details' doesn't exist

    It seems that you haven't installed ZnoteAAC correctly. I suggest that you use the official guide (https://github.com/Znote/ZnoteAAC/blob/master/README.md).
  5. K

    NPC Looking direction

    Try this one: local npcs = { ["Hoaxette"] = SOUTH } function onStartup() for name, direction in pairs(npcs) do local npc = Npc(name) if npc ~= nil then npc:setDirection(direction) end end end
  6. K

    Table 'otserv.znote_visitors_details' doesn't exist

    Execute this query in your database: CREATE TABLE IF NOT EXISTS `znote_visitors_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip` int(11) NOT NULL, `time` int(11) NOT NULL, `type` tinyint(4) NOT NULL, `account_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT...
  7. K

    TFS 1.X Bounty Hunter System

    Try this one: function onSay(cid, words, param) if(param == "") then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "[BOUNTY HUNTERS] Use: \"!hunt [prize],[nick]\" where prize is for example 1(k).") return TRUE end local t = string.split(param, ",")...
  8. K

    Email notification

    I didn't notice that e-mails go to spam. Thank you very much for the solution. Thread can be closed.
  9. K

    Monster walk back (or teleport)

    Try this one (replace function in file "monster.cpp" with this code): void Monster::onAttackedCreatureDisappear(bool) { attackTicks = 0; extraMeleeAttack = true; g_game.internalTeleport(this, masterPos); setIdle(true); }
  10. K

    Email notification

    Hi there, I'm writing this post because I found a problem with notifications. I have turned on the e-mail notifications for the watched forums but I did not get any message. Default notification on the website works correctly but e-mail doesn't. I hope that you will solve this problem as soon...
  11. K

    Spell Volatile Spiderling

    It works only for forgottenserver 1.0.
  12. K

    Errors in web [PHP] [Gesior]

    Here you go (you have to execute this query in your database) ALTER TABLE `players` ADD `loss_experience` INT NOT NULL DEFAULT 100;
  13. K

    Problem to make potion do exhausted in player

    Here you go local cheio = 96337 local regular = 98337 local config = { removeOnUse = "yes", usableOnTarget = "no", -- can be used on target? (fe. healing friend) splashable = "no", realAnimation = "no", -- make text effect visible only for players in range 1x1...
  14. K

    Compiling Downgrade TFS1.0 to older tibia protocol

    What kind of protocol version exactly are we talking?
Back
Top