• 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!

Recent content by sawex

  1. sawex

    Feature Perfect Autostacking Items 100,0% Stack All for 0.4 and 0.3.6pl1

    You don't need to change doPlayerAddItem function. There is a bug inside __queryDestination function, so it will always omit first items for INDEX_WHEREVER. Here is a fixed version of player.cpp: Cylinder* Player::__queryDestination(int32_t& index, const Thing* thing, Item** destItem...
  2. sawex

    OpenTibia Effects Packet Patcher 8.54

    Is there any chance for tutorial? (How to do this, on any other Tibia version)
  3. sawex

    Static libs.

    Hello. I am trying compile Otclient with static libs, but they are not included when I rebuild otclient code... How can I fix this?
  4. sawex

    Lua ItemAttribute is broken. 0.3.6

    I found some weird problem. If I will create few items with script using getItemAttribute(item.uid, "exhaust"), setItemAttribute(item.uid, "exhaust", os.time()) functions attribute value will be blocked when I am using this function, push the same value for a while. (Changing when I am...
  5. sawex

    Lua Global array in Lua. TFS 0.3.6

    Hello. How can I create a global array in Lua script system? When I am trying to define it in lib/constant.lua file, it is not really global. Glovalevents are creating own instances, talkactions other instance etc.. Is there any way to do that in pure Lua (withoud C++ methods)? P.S I know, I...
  6. sawex

    New client/ New accountmaker?

    I was wondering, is there any reason for creating custom account maker project written for example in Python, or custom client written in Java/C#/Python? A lot of OTS developers has no knowledge about Python, which is not so easy to host, so accountmaker written in diffrent language than PHP...
  7. sawex

    Server beat.

    I discovered something in TFS 0.3.6 that i don't understand. When we are loggin sendAddCreature is sending some information like: msg->AddByte(0x32); Its named "server beat". So what is this value? Its 50 like Ots scheduler interval. Will it change something when i change it to lower value?
  8. sawex

    Windows OT RSA in C#

    Yeah! thanks.. I owe you.
  9. sawex

    Windows OT RSA in C#

    I am writing custom OTS proxy for fun, but i can't handle RSA endcypt in C#... I have string ot RSA key: const string key =...
  10. sawex

    garbagecollector

    Is LUA garbagecollector usefull for OTS? Is it good to use it, or is it just useless?
  11. sawex

    Compiling TFS simple tutorial for beginners

    librarys in 1 place! I love you man :o
  12. sawex

    Feature [8.54]Vocation - interval effect system.

    For large number of vocations C++ code is faster, and its better to config in vocation.xml.
  13. sawex

    Feature [8.54]Vocation - interval effect system.

    Hello. I will share with my vocation effect system. It is useful for all OTS with transform system etc. First in vocation.h after: std::string name, description; paste: uint8_t effect; After: uint64_t getReqMana(uint32_t magLevel); add uint16_t getEffect() const {return effect;}; void...
  14. sawex

    Homepay/PayMedia/DotPay/ProfitSMS - opinie, pytania oraz wszystko co z nimi związane

    Z Homepay nie korzystałem, ale Dotpay nie polecam. Często mają w dupie to że na umowie pilnej widnieje że mają pieniążki wysłać do 7 dni roboczych, odpisać na maila u nich to też nie łaska, dzwonisz w tej sprawie do działu obsługi klienta to Ci powiedzą że masz pisać maila d rozliczeń, dział...
  15. sawex

    Crash Windows

    Turn off "all platforms" and make it only for windows.
Back
Top