• 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. 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?
  2. 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...
  3. 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...
  4. 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...
  5. 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?
  6. 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 =...
  7. sawex

    garbagecollector

    Is LUA garbagecollector usefull for OTS? Is it good to use it, or is it just useless?
  8. 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...
  9. sawex

    Crash at start.

    I made exe Step by step using your windows cimpilation tutorial and file after compilation doesn't start. I am using windows 7 64bit. Can someone help me? I had also installed Windows Xp on my virtual machine and it still doesnt work. What can be wrong?
  10. sawex

    !disband

    Whats wrong with this command? I heard about cloning items but i dont know whats wrong... I am using it on my server, so i decided to fix it. Can someone tell me what are bugged in !disband command?
  11. sawex

    Iptables connection limit.

    What configuration of iptables will be the best? I mean For connection limit. i saw in 1 topic configuration like : 7/sec But it mean 7*60 = 420 * 60 = over 25200! If they are using 4 computers for fload? it over 100000 connection per hour. Is it no better to change 20 connections per...
  12. sawex

    Linux Crash..

    My server is crashing by some aplication... when he is crashind console is spamming: [Warning - Server::onAccept] More than 100 listen errors. How to fix it? Iam using TFS 0.2.23 for clinet 8.4
  13. sawex

    Hotkeys!

    It is possible to get text wrote on hotkey in someone client? I mean: He have "exura" on F1 and i have function on my Ots to get this text from his F1 hotkey.
  14. sawex

    Linux Possible?

    It is possible to run serwer on linux without compilling? with "wine" program??
  15. sawex

    uint32_t and int32_t

    Can someone told me what is the difference between int32_t and uint32_t, and what i should to use if it will be using to check how many hp you are regenerate.
  16. sawex

    Action Item upgrade by Sawex! 0.3.x

    This script will upgrade items in your ots. First scripts can upgrade extraattack in weapons: -- Simple upgrade by Sawex function onUse(cid, item, frompos, item2, topos) if(isInArray({1,2,3}, getItemWeaponType(item2.uid)) == TRUE) then if getItemExtraAttack(item2.uid) < 10 then...
  17. sawex

    Fix/Patch Skill Problem

    I am using Tfs 0.2pl23. But i have problem. When i am login to my ots and i am trying to train skill my skill is growing up very slow.... (vocations.xml and skillrate in config.lua are OKI). When i change skillrate to 500x skill is growing to 40 very fast, but then skill is growing some like ...
  18. sawex

    Compilation Warning.

    When i am compiling TFS 0.3.1pl2 serv is created but i have warning in dev c++ window: xxx\game.cpp In member function `bool Game::violationWindow(uint32_t, std::string, int32_t, int32_t, std::string, std::string, uint16_t, bool)': 4974 xxx\game.cpp [Warning] left shift count >= width of...
  19. sawex

    I can't login...

    I have datebase, account maker, i created character.. but when i am trying to login, i don't see chakrasters window... but error "connecting failed" "cannot connect to a login server" Can someone tell me what's going one?
Back
Top