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

    [DevAAC] New AAC and best website for TFS 1.X

    Hey, i'm using this AAC, great work! I'm trying to make the "Top 5 players by level" show only players and tutors. So only players with group ID <= 2. I found the part that handles the sorting of players, but i'm not good (yet) in javascript. The javascript is...
  2. Dragonder

    Solved Error loading .xml file of NPCs

    Sometimes you have problems with ' in the filename (quote sign). Windows 8 can't even put it in the name. You use linux or windows? Might give problems with both OS tough..
  3. Dragonder

    DevAAC (TFS 1.X)

    I had the error: TFS_CONFIG is not defined properly. via debug at http://myhost/api/v1/server/info I removed the following from config.lua: (First text at the top for TFS 1.0) -- Combat settings -- NOTE: valid values for worldType are: "pvp", "no-pvp" and "pvp-enforced" And that fixed it weird...
  4. Dragonder

    SIMPLE ALL IN ONE: From nothing to a fully working dedicated server on Ubuntu

    Running now, after some problems because I didn't have a clean install. So far so good! Thanks
  5. Dragonder

    Solved Svargrond NPC take money even if already paid

    You can edit the if statement: if string.lower(keywords[1]) == 'yes' and parameters.prepare ~= 1 then To something that also checks the storage value of 42351. Make an else then statement and put the following: npcHandler:say(You already paid..', cid) Have to dig into the script to...
  6. Dragonder

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    No this release doesn't have autostack, its possible to add. http://otland.net/threads/autostacking-stackable-items-in-tfs-0-3-6pl1.162795/
  7. Dragonder

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    Okay thanx anyway ;)
  8. Dragonder

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    How did you fix this? I have this problem too sometimes.
  9. Dragonder

    Lua Problem with doors and keys

    Shouldn't the door have uniqueID 4601? instead of actionID
  10. Dragonder

    MYSQL errors?

    You don't have the table: player_blessings. My TFS doesn't use it, so Like Ninja said, what TFS are you using?
  11. Dragonder

    OpenTibia OTRestarter v0.2

    Works very well, this one does close all processes before restarting. This way my server can start normally without crashing while connecting to the SQL or loading items. (Using The Forgotten Server 0.3.6 (Crying Damson) V8)
  12. Dragonder

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    Because your virus scanner thinks its a virus, but it is not. Turn it off and try again ;)
  13. Dragonder

    Can someone remake a script ?

    The script does not do what it should, but you will find the exact thing that causes your bug. If there are no bugs, tell us. If there are errors, post them here ;)
  14. Dragonder

    Solved Making an item add mana points an health points when equipped?

    I might yse this in my server too, really nice idea and scripts ;)
  15. Dragonder

    Solved Making an item add mana points an health points when equipped?

    Sorry, there was a while between typing, and watching this thread! Didn't notice there where replies ;) I can't think of a way to incready capacity right now.
  16. Dragonder

    Linux Server crash - "Bus Error"

    I think this is a Linux problem, see http://stackoverflow.com/questions/5870353/bus-error-system-error. They talk about "Passing a negative index to an array can cause this error :)"
  17. Dragonder

    Can someone remake a script ?

    Try the following script: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid function onCreatureAppear(cid)...
  18. Dragonder

    Solved Making an item add mana points an health points when equipped?

    I think you have to run a script, when it is equipped, add it to movements.xml: <movevent type="Equip" itemid="yourID" event="script" value="YourScript.lua"/> <movevent type="Dequip" itemid="yourID" event="script" value="YourScript.lua"/> I dont know if this can work tho. Anyway, you need to...
  19. Dragonder

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    It's in "cryingdamson 0.3.6 (8.60) V8.2/schemas/mysql.sql" Also, use 127.0.0.1 in your config.lua, localhost is kinda buggy. This is a safe download, it's tested by otland staff and I personally never had any trouble from it. It could be that norton sees it as a thread because its a .exe and it...
  20. Dragonder

    Can someone remake a script ?

    Paste the code I gave you in your document, and delete what was there. So replace your functions getMinor and getMajor with the code I gave you. (they are at line 48 to 58 and line 60 to 70 in your script)
Back
Top