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

    Item to summon monster scaling on level

    an easy script i wrote in ~1 minute xD Havent tested it tough only bug should be u get to summon infinite creatures so either make the item dissapear 'doRemoveItem(item.uid,1)' or set an exhoust function function onUse(cid, item, frompos, item2, topos) herolevel = 50 demonlevel = 100 if...
  2. V

    Compiling How can I add questlog into my 8.0 xml?

    It hasn't been added in the source, so I need the whole quests.cpp, quests.h and edits to other files - - - Updated - - - bump
  3. V

    Compiling How can I add questlog into my 8.0 xml?

    Hello Otland, Im trying to edit the questlog to my server (8.0 xml) in the source, I remember there was an old tutorial on otfans but I cant find any here at otland. Could anyone please tell me what files I need to edit? regards, Vanisto
  4. V

    Solved How to copy a town of a map to another map

    Edit/Selection/Lower floors Then go to top floor and press shift while selecting the whole city. press control+c when selected and control+v when pasting in the new map
  5. V

    Compiling Error when I compiled my Server

    Hello Otland, I have compiled my already excisting evolutions-xml (8.0) It should be exactly the same as the already excisting .exe but i get this error Loading items.otb... Not supported items.otb client version. Error: Unable to load data/items/items.otb! While when I execute the...
  6. V

    Compiling some errors while compiling my sources

    Hello Otland, please help me on this one, i have 2 errors when i try to compile my source In file included from ../admin.cpp:30: ../rsa.h:27:17: gmp.h: No such file or directory In file included from ../admin.cpp:30: ../rsa.h:47: error: 'mpz_t' does not name a type anyone can tell me...
  7. V

    Compiling Compiling Evolutions 0.7.8

    Hello all, I have this Evolutions server (downloaded as armonia 8.0) and I would like to add some sources. I downloaded dev C++ and tried to compile the source which was included in the download. All kind of errors popped up and i figured i miss the data directory's like lua.h wich should...
  8. V

    Lua What is wrong with it?

    table.remove(setup, pid) should be table.remove(setup, cid) ???
  9. V

    Solved How can I remove creature after player death?

    This one should work (at least if you have function "doremovecreature") havent tested it. function onUse(cid, item, fromPosition, itemEx, toPosition) local storage = 31300 waittime = 10*60 -- 10 minutes questlevel = 60 demon1pos = {x=1173, y=993, z=10} if item.uid == 31299 then...
  10. V

    Solved How can I remove creature after player death?

    I just wrote a new script for Annihilator wich is kinda the same concept: http://otland.net/f16/1-annih-day-clean-demons-when-pull-lever-187009/#post1809340 ps. I dont have the function DoRemoveCreature(monster) so I moved the creature insteat If you cant figure it out ill make the script for...
  11. V

    1 ANNIH / DAY or CLEAN DEMONS when pull lever!

    It is possible to do this quest as many times as you want Simply change this: doSummonCreature("Demon", demon1pos) doSummonCreature("Demon", demon2pos) doSummonCreature("Demon", demon3pos) doSummonCreature("Demon", demon4pos) doSummonCreature("Demon", demon5pos) doSummonCreature("Demon"...
  12. V

    Account manager invalid password?

    go to 'accounts' and then the account of account manager (mostly 111111 or 1) and check the password Mostly looks liek this <?xml version="1.0"?> <account pass="tibia" premDays="0" premEnd="0"><characters><character name="Account Manager"/></characters></account>
  13. V

    Solved How can I remove creature after player death?

    Define Creature while creating it: local monster = doSummonCreature("Stormblast", demon1pos) insteat of: doSummonCreature("Stormblast", demon1pos) so later on you can remove by: doRemoveCreature(monster)
  14. V

    Windows Compiling Evolutions 0.7.8

    Hello, Im not the first noob around here posting for help but please hear my problem. I downloaded a XML server some time ago for the 8.0 client, got a bit experienced with that. Now i want to edit ore then just the date file and start working in C++ My problem is that when I try to make a start...
Back
Top