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

    Lua [TFS 1.3] Making my quest npc more "smooth" - formattingwise

    Tip for greetCallback, return false to finish talking with npc.
  2. kamilcioo

    Lua Auto Balanced Accounts

    If you want to make teams, u can set storage value on login and register a creaturescript to not deal damage to people with same storage value. This will not require source edits.
  3. kamilcioo

    Lua Auto Balanced Accounts

    I edited my last comment. Where do you store teams? Something like this should work. function onLogin(player) if #team1Table >= #team2Table then yourFunctionToJoinTeam2(player:getId()) else yourFunctionToJoinTeam1(player:getId()) end return true end function...
  4. kamilcioo

    Lua Auto Balanced Accounts

    Just make global counter. On login add to table, if counter %2 == 0 send to team 1 else send to them 2. On logout --counter @edit I forgot that it will make problems with logging out. You will have to check team tables sizes and then decide where to store the player.
  5. kamilcioo

    Lua Problem with "Bigfoot's Burden Quest".

    Do you have required storage? Try to print it.
  6. kamilcioo

    Lua [TFS 1.2] Task Party.

    In the code above you can give party to people in temple and they will get task kills. I never messed up with party functions but I'll try. I didnt test it tho: local function addKill(playerCid, monster) local player = Player(playerCid) if player then local storageValue =...
  7. kamilcioo

    TFS 0.X How could I automate 3 kind of donation castles on the same city?

    Simply add to houses.h pointsValue. Set required points value to castles and edit !buyhouse to take premium points.
  8. kamilcioo

    Tibia 11-12+ Packet Sniffer (RL & OT)

    Works great on real tibia.
  9. kamilcioo

    Lua [TFS 1.2] Task Party.

    You have to iterate over party members and check if they have the storage.
  10. kamilcioo

    Let's save OpenTibia legacy!

    Cheat engine was enough to turn walls into gold and few other things.
  11. kamilcioo

    How can we discourage botting?

    Scaling exp rates with top players will help starting people but will not have an effect on top ones. @Topic I used to play dragon nest long time ago. There was a server wipe because company didn't do backups (at least they said so) and they gave everyone tons of gold. So much gold that farming...
  12. kamilcioo

    How can we discourage botting?

    The need of botting happens because people want to be better (higher lvl, higher skills, richer, etc) than everyone else. Tibia is actually an interesting game if you focus on exploring. Without reading guides there are months of fun exploring and solving quests.
  13. kamilcioo

    Why i lag

    Show us pieces with for/while and we will fix. Maybe you have some globalevents executing all the time?
  14. kamilcioo

    Why i lag

    Do you have own scripts with for or while or some complex sql?
  15. kamilcioo

    Mapper Free Mapping Service

    Do you have any time or should I just make it myself?
  16. kamilcioo

    Why i lag

    FPS most likely, he has lags on localhost.
  17. kamilcioo

    Why i lag

    Look into temperatures. Maybe one of the components overheating? Download HWMonitor and check temperatures on cores.
  18. kamilcioo

    Lua Warning spell

    local function attack(playerId, creatureId, targetPos) local player = Player(playerId) local target = Creature(creatureId) if player and target then if target:getPosition() == targetPos then target:addHealth(-(target:getMaxHealth())) end end return...
  19. kamilcioo

    Mapper Free Mapping Service

    Small. Like 25x25 with surroundings
  20. kamilcioo

    Mapper Free Mapping Service

    10.98, small camp (with campfire) with covered wagons inside a forest with road. These wagons:
Back
Top