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

    Hypothetical new MMO tibia-like server engine

    Hello, I started this thread because i want to know your ideas of hypothetical new MMO tibia-like (2D top-down view, movement on tiles) server engine. However, by "ideas" i mean approach from coding side rather than "add a function that does x, etc." (Write those as well but focus on main point...
  2. Yalasari

    Server side scripting language poll

    Ignore performance issues and follow Your heart.
  3. Yalasari

    OTClient Unable to create item with invalid id

    Hello, While trying to add new item to server I encountered a problem, and after 2 days i don't have idea how to fix it: Everything on server side is ok, i think because console doesn't show any errors Here's how everything is set up: items.otb: .SPR and .DAT files We are using 10.98...
  4. Yalasari

    Unhandled opcode

    Hello, I need help with OTClient error "unhandled opcode". I created function in tfs which sends to client info about auto-looted item, everything seems to work fine on server side, but how to read it properly and print? I tried various scripts found on forum but nothing worked. Any tips...
  5. Yalasari

    C++ Making loot analyzer

    Hi, I want to make loot analyzer using OTClient + TFS 1.3, and i don't really know how approach one of most important thing: Well, i think about something like this: Monster died (Server side) -> Send info about loot to OTClient via opcode (Problem here) -> Print Info about loot, graphs, income...
  6. Yalasari

    OTClient Blinking char while mounted

    Hi, Im trying to fix issue with OTClient: Character is blinking while mounted. However this doesn't happen everytime, my research revealed that problem might be with different frame numbers of char and mount animation. Blinking: (different animation frames number) No Blinking: (same...
  7. Yalasari

    Unable to compile OTClient

    Hi, I have troubles in compiling otclient with Visual Studio 2017, i got following errors: I tried almost everything what i found in internet. I would be very grateful if anyone would help me with that problem. Thanks in advance
  8. Yalasari

    Optimal server hardware.

    Hi, Will server on TFS 1.3 on hardware: Processor: Intel I7-4790K4 (4GHz /4.4GHz), RAM: 16GB, SSD: 480 GB (2 x 240 GB), Connection: 250 Mbps Hold up to 1500 players? TFS 1.3 (Custom edited and optimized) without LUA memory leaks, without useless functions, 35 MB map, (approx. 80 MB in far...
  9. Yalasari

    Lua Task Counting Problem

    Hi, i have this piece of code: broadcastMessage('script loading', MESSAGE_STATUS_WARNING) function onKill(player, target) broadcastMessage('onkill activated', MESSAGE_STATUS_WARNING) if(player:getStorageValue(72003) == 1) then if target:isPlayer() or target:getMaster() then...
  10. Yalasari

    Converting Rune Emblems into useable runes

    Hi, is there way to convert rune emblems into working runes? (silver 150% power, golden 200% power) i already have spells scripts and it partially wroks, but runes is still unstackable and can be used only when lying on ground (used in eq dissaspears immediatly, hotkey window have greyed out...
  11. Yalasari

    Lua destroy() not working

    Hello, In my script i want to destroy all obstacles on tile where i create monster with function createMonster() local bossname = "Corym King" -- nazwa bossa local isBossPresentID = 66001 -- ID z pliku storages local xpos = 4840 -- wspolrzedne x local ypos = 5153 -- wspolrzedne y local zpos...
  12. Yalasari

    Lua Only one boss can be present

    Hello, I have boss spawning script using globalevents, boss appears every 12 hour + random addtional time, and there's problem, if nobody will kill boss, duplicate will appear, then next one appears, next one ... And i have problem how to pause this script if already boss is present. (in...
Back
Top