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

    Simple lever script help.

    Okay, if that didn't work thean use this: function onUse(cid, item, topos, frompos) local cfg = { wallPos = {x=1000, y=1000, z=7, stackpos=1}, wallPush = {x=1000, y=1001, z=7}, -- Relocate creature/item to this Pos if it blocks wallPos wallId = 1022 } if...
  2. Hartass

    Simple lever script help.

    Very simple and easy to understand if you are new: Set uniqueid = 1000 on the wall function onUse(cid, item, topos, frompos) local wallID, pos, push = 1022, {x=1000, y=1000, z=7}, {x=1000, y=1001, z=7} if item.itemid == 1945 then doRemoveItem(1000, 1)...
  3. Hartass

    [Znote AAC] Report bug system

    Love to see a website being so constantly updated. If I ever will host a server, this is the website I'd use!
  4. Hartass

    No Vocation - What would it be like?

    Would be really cool if you were able to choose like, each level you can choose either more HP or more Mana or Higher magic level or something similar.
  5. Hartass

    [Archived] "[Quick Showoff] Post your latest maps"

    Great thread to find inspiration. Some pics are far better than anything CipSoft ever done with their own sprites.
  6. Hartass

    getTileItemById

    You can use getThingFromPos({x=, y=, z=}).uid, 1
  7. Hartass

    Lua Bless problem

    function onSay(cid, words, param) local cost, level, newcost = 50000, 50000, ((getPlayerLevel(cid) * cost) / 500) for i = 1, 5 do if getPlayerBlessing(cid, [i]) ~= 0 then doPlayerSendCancel(cid, "Voce ja tem bless.") end end for i = 1, 5 do...
  8. Hartass

    Should small client updates be disregarded by the OT community?

    There are a lot of people actually downgrading their servers. On topic: I think there should be a general platform for all of the elements, from mapping to editing items, heck even a dat/spr editor that got updated the same time the client version updates.
  9. Hartass

    Add Second World in OTServList.org

    I didn't know you can use the very same IP AND Port to connect to two different servers. I'd change the port on one of the servers and you will have no problem. And shouldn't this thread rather be in the support section? @Znote @Scarlet Ayleid @cbrm
  10. Hartass

    Best way to fix Items.xml and Monsters?

    I think you can generate an items.xml file with an items.otb editor. Try open it with the latest available and see if you get any errors. If so post them. While you've loaded your file you can go to Tools and Update OTB and it will most likely show you which version it's for. After that you go...
  11. Hartass

    Can someone explain what compiling is?

    I'll give my tutoring skills a shot ... Sources -> Compiling -> your.exe
  12. Hartass

    Npc problem

    Example of an NPC you can use: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState -- OTServ event handling functions start function onCreatureAppear(cid)...
  13. Hartass

    Npc problem

    I'd recomend using the old npc system for Avesta since it will take its time to convert every NPC that you have. Replace the lib file in your server folder (remember to make a backup of it first!) with this: data/npc/scripts/lib
  14. Hartass

    Windows Ports

    Sounds like he might be connected with both cable and wireless, he should try disable one of them and get on it again. To check if the port is already in use simply open the CMD (with administrator privileges) and type netstat -a -b and look at the numeric adresses. Will look something like...
  15. Hartass

    Npc problem

    Post the script with the ["code"][/"code"] function (without the ' " ') Or post it in http://pastebin.com/ and highlight the syntax with LUA
  16. Hartass

    msg = msg:lower() what is problem

    Credits to @Cykotitan function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function msgcontains(message, keyword, dollar) local message, keyword = message:lower(), keyword:lower()...
  17. Hartass

    RME Freezing when using custom .dat and spr

    I've got it to load custom .dat/.spr files, however that was a time since and it was 7.6/7.7 structures. I don't know if it changed. I guess I don't have to ask if you switched the edited items.otb with the old one in Remere's Mapeditor\data\version\ ?
  18. Hartass

    somebody make this on globalevent work

    Noted.
  19. Hartass

    Npc problem

    If you ever wish to get help with this 'issue', please provide more information about the actual issue. No one here has the ability to know what you mean if you do not tell us. Do you get any errors? Post them. You know what script that causes errors? Post it. What server are you using? I'd...
  20. Hartass

    Lua error with a new script

    What distribution are you currently using? @crashgb
Back
Top