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

    Lua doPlayerAddDialog() is crashing the server .exe

    Its acces violation. You can always compile your server in debug mode, and use gdb for debugging ^^ @edit You can find in google how to do it, im too lazy to write a tutorial atm XD
  2. tarjei

    Buying Merchant System tfs 0.4

    Well I allow myself to translate this. He needs an npc he can set a list of items he/she sells (Give a sell order and proly get a payback from sold items).
  3. tarjei

    Looking for RPG Custom Map Server!

    lol - - - Updated - - - Well if you dont like custom servers join Real piece a sh*t XD Easy as that.
  4. tarjei

    Lua doNPCTalkALot sending messages to every player in range

    http://otland.net/f35/npc-tell-long-stories-151492/ Try to compile this one, I belive it will work like 'doCreatureSayWithDelay' but says directly to player.
  5. tarjei

    Lua Send Channel Dialog

    You can send channel dialog by clicking item or step on tile in game and so forth. If you want to bind a key combination to do so, you gotta inject dll into client.
  6. tarjei

    =-= Constructions in Tibia? =-=

    Nice one, you can always stream some portion of map to database and later recreate it when server loads - something like a patch :P
  7. tarjei

    [9.6+] Storms Sprite & Dat Editor

    Nice one, but Summ you bastard lets make it in OTC XD This is what I got atm.
  8. tarjei

    [Lua] Array serialization/ deserialization into/from single storage value.

    Well its preety nasty and time consuming. You should start reading how lua states are implemented and later on OTC framework in order to do that xD
  9. tarjei

    [Lua] Array serialization/ deserialization into/from single storage value.

    Well and how that helps you to comunicate between lua states? XD This lib serves only to save many using single storage. By the way, if I were you I would get rid of all those lua states and replace it with single one using OTC framework :P
  10. tarjei

    Studia informatyczne

    Ile sami w siebie włożycie tyle potem zarobicie.
  11. tarjei

    [Lua] Array serialization/ deserialization into/from single storage value.

    Well and how you did that? I mean local obj = {} local meta = {} meta.__self = obj setmetatable(obj,meta) Something like that?
  12. tarjei

    Ghostx's Mapping Thread

    just beautiful ;D
  13. tarjei

    Programmer I'm looking C++ programmer.

    So the reason you are making a project is beacosue you need a programmer. Interesting...:> @down: ye XD
  14. tarjei

    OTClient.exe file doesn't work

    Hello, I have a problem with compilation aswell. Linker gives shitload of information like this : CMakeFiles\otclient.dir/objects.a(crypt.cpp.obj): duplicate section `.rdata$_ZTVN5boost6system14error_categoryE[vtable for boost::system::error_category]' has different size...
  15. tarjei

    Always visible missile

    Seems like effects are spawned just on a single floor.
  16. tarjei

    [Lua] Array serialization/ deserialization into/from single storage value.

    No, but I dont really know what for you want to save metatable xD - - - Updated - - - Hmm, well you can always try that for metatable : P
  17. tarjei

    MODS : Special VIP RING 2Xhp 2Xsp 2Xspd and going on ...

    Heh I suggest you to check my thread about array serialization :P you can all this data store in single table using ONE storage instead of four. lifeRingSystem.storageLv = lifeRingSystem.storageBase+1 lifeRingSystem.storageHp = lifeRingSystem.storageBase+2 lifeRingSystem.storageSp =...
  18. tarjei

    [Lua] Understanding Storages

    Instead of multistorage http://otland.net/f163/lua-array-serialization-deserialization-into-single-storage-value-189180/#post1828071
  19. tarjei

    [Lua] Array serialization/ deserialization into/from single storage value.

    Hello, it's been some time since I made anything for public. Evans thread inspired me to improve my MultiSttorage value lib, and here I come with Array serialization. We need BinaryStream first. I added some modification so I post it again. --[[ Binary Stream Allows you to read, edit and...
  20. tarjei

    [Lua] Understanding Storages

    Cool thread:D. You could also write something about packing many values into single storage. Here is link to my thread. http://otland.net/f163/lib-serializing-deserializing-many-values-into-single-storage-value-177284/ I belive it might be helpfull since, this structure allows you to handle...
Back
Top