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

    Can someone remake a script ?

    Weird, the script uses really nice things from lua, but all makes sense! I see no obvious flaws or erros that might ring a bell. The scripts that bugs are function getMinor() on line 48 and function getMajor() on line 60. It sais that something is wrong with getItemNameById. But in this case it...
  2. Dragonder

    Export/import database

    Here is how i do this: Select your ot's database and press "export" on top. image: I ALWAYS check if the exported sql file contains the data, you see it easily, and you can check it with your backup too. Just open it with notepad++ or wordpad or even as txt file and you can see it.
  3. Dragonder

    Moving forward

    I agree, this should be a place to help each other and create wonderful things. Paying for these things is a step back, and won't get anyone further.
  4. Dragonder

    Lua LUA Error onUse

    And if you change the monsters name for a common monster that certainly works, like an Skeleton. Like: doCreateMonster("Skeleton", pos) It could be that something is bugged in Azerus(1,2 and 3).xml, Rift Brood.xml or Rift Scythe.xml. Check if they exist in your folder data\monster\8.4 and...
  5. Dragonder

    Solved Edit script [creatureevents]

    I use the following script, it is set up for cc's but you can change it to whatever itemid you want. The following code is in \data\creaturescripts\scripts\reward.lua function onAdvance(cid, skill, oldlevel, newlevel) -- Storage id's 60360 -60369 are not in use and can be used here local...
  6. Dragonder

    Lua LUA Error onUse

    This looks fine to me!
  7. Dragonder

    Lua LUA Error onUse

    if you put two dashes: -- In front of a rule code, it counts that one as comment, and that is called comment out ;) Your script, commented out all the things i said: -- Config #1 -- local BlindField = {x=748, y=1921, z=10, stackpos=1} local topLeft = {x=743, y=1923, z=10} local buttomRight =...
  8. Dragonder

    Lua LUA Error onUse

    Comment out (-- ) the lines where you call: doCreateMonster("Rift Brood", pos, false, true) doCreateMonster("Rift Scythe", pos, false, true) And test if you still get the error, if not put them back one by one and then you know which gives the error. Also you did not remove all the...
  9. Dragonder

    Windows Server Dont wanna Start :D

    Ignore the warnings and start working on errors, usually it gives the location ore line number where the error comes from. Just like Ninja said above
  10. Dragonder

    GesiorACC - IPN not being recieved

    Thats right, you cannot access the file but paypal will! If you want access to this file yourself (via webbrowser ofcourse) you have to add your own ip to the list too. If your server is in your own network, you will have to add something like 192.168.0.1. You can lookup what IP this should be...
  11. Dragonder

    GesiorACC - IPN not being recieved

    You must add notify.paypal.com to your list at allow from, both in the htaccess file, and in the script where the others ip's are. Btw do you know what these ip's are? If you don't know them remove them! They have access to the file!
  12. Dragonder

    How to add vip days to new created accounts?

    You mean premium points? Vip days are usually applied to a player, not an account. You will have to do this via your website, what aac do you use?
  13. Dragonder

    Is my server online?

    Usually thats no problem, even when the ports are forwarded! Somethings wrong!
  14. Dragonder

    How to add vip days to new created accounts?

    You can do this in game in the script: \data\creaturescripts\scripts\login.lua Make the following in the function onlogin(cid) if (getPlayerStorageValue(cid, 11552) == -1) then setPlayerStorageValue(cid, 11552, 1) setPlayerStorageValue(cid, 11551, 1) end This adds days to each...
  15. Dragonder

    Lua LUA Error onUse

    Try without the ... , false, true), the function doesn't need that much parameters. Also with the double "" quotes instead of the single ' '. This this a lua script I presume?
  16. Dragonder

    Lua LUA Error onUse

    Does it give a line number? Correct syntax is:doCreateMonster(cid, "Monstername", pos)
  17. Dragonder

    Lua Make Impossible to drop item on x slot

    Add to moments.xml a line with equip on the slot of ammo, and a function where you return false in the scripts, don't know if this can work. I would try something like that if I where you ;)
  18. Dragonder

    Quest chest error?

    For giving a container with items: http://otland.net/threads/action-quest-backpack-with-items-inside-for-tfs-0-4.103602/ This works on tfs
  19. Dragonder

    OTForum! 1.0 Beta

    Isnt this very hack sensitive? config.php in your main folder? Even I can read your config file then.. Including database pass and admin account :s
Back
Top