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

    TFS 1.X+ Creature:isMovementBlocked and Create:setMovementBlocked weird behaviour

    Does anyone solved this comits weird behavor? Basically it should freeze the player from moving but instead it kinda does the job but you can move one square and until hes freezed it loops that walking animation. How can i prevent it and legit stop him from walking so it would look cleaner...
  2. Lopaskurwa

    Lua Drop item inside named monsters

    USING TFS 1.2 Hey, I'm looking for an event that can be activated either through a globalevent or talkaction (e.g., /chestevent 6 for 6 hours). Here's how the event should work: when activated, the monsters that are killed during the event should give players a chance to loot a specified item...
  3. Lopaskurwa

    What font is this

    Hello, what kind of font is that? Or maybe anyone even have otfont aswell with it.
  4. Lopaskurwa

    Lua [Spell]Add countdown and freeze monster

    local config = { interval = 3000, attacks = { { effect = 126, area = { {0, 0, 0, 1, 0, 0, 0}, {0, 0, 1, 1, 1, 0, 0}, {0, 1, 1, 1, 1, 1, 0}, {1, 1, 1, 3, 1, 1, 1}, {0, 1, 1...
  5. Lopaskurwa

    OTClient OTCV8 Game_Areas onPositionChange doesnt apply text

    Hey not sure whats wrong or why it doesnt work, i tried adding prints to see if it evens calls the function onPositionChange, which it does, but for some reason it still doesnt apply text when entering area local areas = { { from = {x = 1009, y = 1016, z = 7}, to = {x = 1013, y =...
  6. Lopaskurwa

    TFS 1.X+ Adding countdown and freezing monster

    local config = { interval = 3000, attacks = { { effect = 126, area = { {0, 0, 0, 1, 0, 0, 0}, {0, 0, 1, 1, 1, 0, 0}, {0, 1, 1, 1, 1, 1, 0}, {1, 1, 1, 3, 1, 1, 1}, {0, 1, 1...
  7. Lopaskurwa

    TFS 1.2 Parase new walk crashing server

    Getting crash because of Parse newWalk not sure exactly how it happening https://pastebin.com/mNBdHzsm void ProtocolGame::parseNewWalking(NetworkMessage& msg) { uint32_t playerWalkId = msg.get<uint32_t>(); int32_t predictiveWalkId = msg.get<int32_t>(); // extension for proxy system...
  8. Lopaskurwa

    TFS 1.2 Create crash

    Hey got this crash two times ---------------------------------------------------Signal caught: SIGSEGVT - Pastebin.com (https://pastebin.com/Z9yz1kvG) https://pastebin.com/sGNjZ9Nr any ideas how to fix it or where to look it for?
  9. Lopaskurwa

    C3861 'fmt': is not a class or namespace name luascrip.cpp

    Installing this comit https://github.com/otland/forgottenserver/commit/2b8bc10f10121569cec492b5be267a1da9317d31 Error C2653 'fmt': is not a class or namespace name Error C3861 'format': identifier not found As far as i know this error happens because of this code line...
  10. Lopaskurwa

    What is the meaning of math.randomseed(os.mtime()) in startup.lua

    What this function do? Whats the point of having it?
  11. Lopaskurwa

    TFS 1.X+ TFS 1.2 Add timer on spell

    Is it possible to add timer on this spell so it would count when it will be casted. Basically this spell is not created in spells lua but direcetly in monster file, but basically what it does it casts wave spell that one shots everyone <attacks> <attack name="lifedrain"...
  12. Lopaskurwa

    OTClient OTCV8 Change NPC text color

    Hey, How can i change npc text color fron that blue to w/e else including highlighted text
  13. Lopaskurwa

    C++ Use shared_ptr for depot locker and depot chests

    Hello trying to install this comit Use shared_ptr for depot locker and depot chests by nekiro · Pull Request #3423 · otland/forgottenserver (https://github.com/otland/forgottenserver/pull/3423/commits/116b51f08ede4554713f1d4c63d0362989ede261) into TFS 1.2 but getting this error Warning C4189...
  14. Lopaskurwa

    Frag system issue tfs 1.2

    Hey having weird issue so after reaching x amount of kills that are set in config if they pass daily frag limit or week or month they get banned but instead it just kicks them out and removes red skull aswell so its fucked up, pretty sure its this code if (getPeriodKills(1) >=...
  15. Lopaskurwa

    Lua [tfs 1.2] Reward at certain level points

    Looking for code that at certain level points for example 100,150,200 and etc would give my config rewards im using. It should check vocations to, so maybe config could look like local config = { storage = xxxx, levelstages = 100,150,200,250,300 rewards = { addBonus =...
  16. Lopaskurwa

    Lua Give X premium points per hour

    Using tfs 1.2 im trying to make so every hour players would get x premium points but probably doing something hella dumb :D local config = { storage = 20000, pointsAddPerHour = 5, pointsPerHour = 1, checkDuplicateIps = false } function onThink(interval) local players =...
  17. Lopaskurwa

    TFS 1.2 is there commit where i can install revscript feature?

    Hi, my older tfs 1.2 doesnt have /data/scripts/ feature which is revscript and i was wondering is there particular commit in github with tutorial how to add revscript support
  18. Lopaskurwa

    OTCV8 did anyone manged to enable GameCreatureIcons

    Hi whenever i enable GameCreatureIcons it fucks entire otclient, i guess because its missing somekind of commits?
  19. Lopaskurwa

    TFS 1.2 getCondint a nil value on talkaction

    Trying to create !showpztime talkaction but stuck with getCondition a nil value error, checked my previous codes that uses getCondition pretty much all of them created exactly the same, but it doesnt want to work this time function onSay(cid, words, param, channel) if...
  20. Lopaskurwa

    TFS1.2. os.date doesnt work onThink function?

    Hi im using os.date function so particular global storage would activate on described date, but noticed that it ignores the days i defined and it activated all the time and global interval i set up is 1 hour local days = {"Saturday", "Sunday"} function onThink(interval) local state =...
Back
Top