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

    [Linux] GUI Server Application

    Its pretty simple now for someone to use or edit even with limited C++/lua/sql knowledge. The problem is not with the code the problem is with the person who is developing the server. The majority of people having problems with scripts or source edits don't know how to use the search on this...
  2. C

    Lua How to set spell target without attacking?

    The reason no one has responded to your question is because you have not given the server version you are using. Bumping the thread isn't going to help you get an answer to your problem. There are many different server versions on this forum, remember to ALWAYS included the server version with...
  3. C

    selfhosting

    ovh.com vps ssd 1 package is the same thing as spigu.net its just much much cheaper and you get 5 gigs more hard drive space. spigu.net = 12 months 20 x 12 = 240 euro / 260.99 usd ovh.com = 12 months 2.99 x 12 = 35.88 euro / 41.88 usd spigu.net 2 gig memory, 5 gig hard drive ovh.com vps ssd 1...
  4. C

    Compiling Hex code MC for Tibia Pokemon Client

    The memory address to enable multi-client is different for each client version. I found this using google search. How To Make Your Own Multiclient[Easy][7.4 - 9.53] Whether your client version is in there or not it shows you that each client version has a different memory address. If you put...
  5. C

    Lua Upgrade system

    Its written in lua why wouldn't it be possible?
  6. C

    Lua NPC

    The keyword end is used to close out a metatable, loop, control structure or function/metamethod. You seem to have added an extra one when you added player:addItem(2504, 1) local missionKeyword = keywordHandler:addKeyword({'mission'}, StdModule.say, {npcHandler = npcHandler, text = 'My son was...
  7. C

    C++ How to put pagination

    Get a differential tool such as meld on linux or winmerge on windows and run a comparison between 10_9 otx3 and tfs 1.3 thats how you can add in missing features. Meld WinMerge There is also a comparison plugin for notepad++ but its a little buggy and doesn't handle large files sizes all too...
  8. C

    Windows Server Shutdown! Before loading

    Seems you have a malformed items.xml I don't know what the text box says but it stops loading when you reach loading of items. Try using an unedited items.xml to see if that is the issue.
  9. C

    Ccript converting tfs 1.2

    Don't get into this bad habit. p + {x = i } + {y = j}
  10. C

    Apply changes to tfs 1.2

    Do you have notepad++ or sublime text? 1. Go to the main menu in either program select find in files. 2. Navigate to the 1.2 source directory. 3. Type in the box what you are looking for. 4. Place 2 forward slashes // in front of every line it is on. Example this } else if (skull ==...
  11. C

    [Sweden] The Lost Kingdom Server (custom client)

    Rather than asking people here on otland what they think of your ideas you should have a focus group. A select number of people that you can talk to, share ideas and test concepts.
  12. C

    Problem auto death channel

    This is or something similar of what is available to his server is what he needs to open the chat window on login, but he didn't want to bother reading the page i linked. He just wanted someone to modify the script with the requirements all laid out. function onLogin(cid) local player =...
  13. C

    Problem auto death channel

    All you said was "What do I have to do to make the death channel appear to everyone immediately after logging on to the character?" and then linked to a script. Sometimes you find the solution to a problem inside of an unrelated issue. The script I linked to is not related to yours however it...
  14. C

    Problem auto death channel

    You should have said that in your original post.
  15. C

    Problem auto death channel

    I found this while searching in google. CreatureEvent - [TFS 1.x] Custom Chat Channels (Name, Text + Open onLogin)
  16. C

    Ccript converting tfs 1.2

    See if this works function getArea(p, x, y) local t = {} for i = (p.x - x), (p.x + x) do for j = (p.y - y), (p.y + y) do table.insert(t, {x = i, y = j, z = p.z}) end end return t end -- i've omitted the last couple of parameters because we aren't...
  17. C

    One Click and Death

    How about equipping the ring and then remove it from the player before he dies? movements.xml <movevent event="Equip" itemid="ring id" slot="ring" function="onEquipItem" /> script function onEquip(player, item, slot, isCheck) -- remove the item before we kill them item:remove() --...
  18. C

    Compiling Problem with protocolgame.cpp

    So basically you downloaded 3777 or a variation there of and tried to compile it using the latest libraries or packages?
  19. C

    Item.xml atribute and Moveevent script together

    Don't thank me thank that person @Xikini ;)
  20. C

    Minecraft meets World Z

    Worldz Very addictive
Back
Top