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

    C++ Auto loot problem with saving

    Hello, as I wrote in the subject, I have a problem with saving items to the databas. I use code Feature - Auto Loot [TFS 1.3] (https://otland.net/threads/auto-loot-tfs-1-3.255791/) I changed the code to work under tfs 1.2 everything works fine except save ps. I don't know c ++
  2. Makin

    OTClient useThing:getServerId() shows id 0

    Hello, I have a problem with adding options to Otclient. I use TFS 1.2 menu:addOption(tr('Add Loot'), function() g_game.talk('!add ' .. useThing:getServerId()) end) useThing: getServerId () shows me ID 0. And I don't know if it's the server's fault or otlcient
  3. Makin

    OTClient anty kick script

    Hello, can someone tell me why this script does not loop antykick = {} local dance = 1000 local dance1 = 4000 function antykick.anty() local oldDir = g_game.getLocalPlayer():getDirection() direction = oldDir + 1 if direction > 3 then direction = 0 end...
  4. Makin

    TFS 1.X+ system ping

    Hello i have problem with ping on server when i use otclient. I use tfs 1.2 ninjalulz/forgottenserver (https://github.com/ninjalulz/forgottenserver/tree/8.0) I've already added pingback etc. When he logs in to the character gets a message in the terminal "ERROR: got an invalid ping from server"...
  5. Makin

    C++ allowFightBack

    Hello, as you can see in the video, my problem player.cpp void Player::onAttackedCreature(Creature* target) { Creature::onAttackedCreature(target); if (target->getZone() == ZONE_PVP) { return; } if (target == this) { addInFightTicks(); return; }...
  6. Makin

    C++ config exp per player

    hi, how can I make 0.75 work in config and not 1. I use tfs 1.2. I don't know much about c ++ it works expenfo = 1 it doesn't work anymore expenfo = 0.75 I know my English is poor
  7. Makin

    Lua isPzLocked npc

    Hi, what is the function for npc not to teleport a player when he has pz im use tfs 1.2 local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  8. Makin

    OTClient Shared Experienc 8.0

    Hi, how can i enable exp shared in addition to the command. Because when I click enable shared experience I do not want to turn on. tfs 1.2 works only with this command function onSay(cid, words, param) local player = Player(cid) if player:getCondition(CONDITION_INFIGHT) then...
  9. Makin

    OTClient disappearing stairs

    hi, how can I fix that the stairs won't go away if you kill the monster?
  10. Makin

    C++ vocation.cpp edit

    Hi, how can i redo this code /** * The Forgotten Server - a free and open-source MMORPG server emulator * Copyright (C) 2016 Mark Samman <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as...
  11. Makin

    OTClient problem spr

    Hi I do not know how I can fix it normal client otclient
  12. Makin

    C++ yellow skull

    hello, I do not know how to add a yellow skull if you attack somebody with skull you get yellow skull tfs 1.2
  13. Makin

    Lua don't drop all bag

    Hi, I do not know how to make all containers / backpacks so that only the selected ones would fall out I know so much about this fragment of the script "if hasSkull or math.random(item:isContainer() and 100 or 1000) <= lossPercent then" sorry for my English;) function onDeath(player, corpse...
Back
Top