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

    [FRANCE] Tarion 10.77 FUN EVO (starting Wednesday 22.12 16:00)(Free points for otlanders)

    Hi there! I would like to invite you to my "new" server. The "new" is because I've been making it most of my time spent with Open Tibia Servers. I was starting as a kid, so don't think that this time was a very effective work time :D As I see, most servers now are rl map, low exp etc. I used to...
  2. wesoly136

    [TFS 1.1] Unjustified points window?

    Is that simply disabled in 1.1 or do I have something wrong with it?
  3. wesoly136

    Solved Tfs 1.2: doTargetCombatHealth does not take any health

    Hi This is what I have: doTargetCombatHealth(0, creature, COMBAT_PHYSICALDAMAGE, -100,-100, CONST_ME_NONE) It doesn't take health of a player, but when he is having the magic shield on(utamo vita), it takes mana. (it is a movement) What can be the issue?
  4. wesoly136

    Solved IsPlayer in area, wtf...

    Hi! I've been using this code for many years, even when I was 13 years old, but now I just don't know how to make it working. pos = getThingPosition(item.uid) local fro = {x=pos.x-3, y=pos.y-7, z=pos.z} local to = {x=pos.x+3, y=pos.y-2, z=pos.z} for xx = fro.x, to.x do for yy =...
  5. wesoly136

    Walking through people, annoying "push" effect

    Hi! I wanted to do something to allow players to walk through each other in Protection Zone. I added those lines in player.cpp: player->getTile()->hasFlag(TILESTATE_PROTECTIONZONE) && !player->getTile()->hasFlag(TILESTATE_HOUSE) (As explained in this post...
  6. wesoly136

    Changed protocol to lower and debug onLogin

    Hi! Simply - I changed my server's protocol to lower than it was and when I login it debugs my tibia client.
  7. wesoly136

    Windows TFS crashes on startup

    Hi! Maybe it's simple, but I didn't work with OTS for a long time and just don't know what to do. I think it may be .DLLs or something in config.lua
  8. wesoly136

    Compiling Compiling on Windows with Dev cpp

    Hi! I returned to make a server again and my first problem is: I have sources to TFS 0.3.6pl1 and tried to compile it with Dev Cpp. At first i had about 100+ errors, i solved most of them and now I have a few errors that I don't have idea how to solve. The compiling errors: Can you...
  9. wesoly136

    Select count(*) from

    I wanted to make a script that counts players from one guild(later it will check their levels) and I can't use this query in a script :/ query = db.getResult("SELECT COUNT(*) FROM guild_ranks WHERE guild_id = "..getPlayerGuildId(cid)..";") doBroadcastMessage("Answer is: "..query.."!",22)
  10. wesoly136

    Vocations.xml wtf?

    I just tried to set mana and hp regeneration and.. It completly doesn't work! It always regenerates 1 hp and 2 mp... :/ Other things like attackspeed work fine.
  11. wesoly136

    Inserting data from database to a table.

    Hi! Operating with databse queries is difficult for me :S How to insert for example: all ids of guild owners to a table? I tried something like that: local owners = db.getResult("SELECT `ownerid` FROM `guilds`;") local list = {} for i, tid in ipairs(owners) do list[i] = tid end...
  12. wesoly136

    LUA Checking if a value is in a table.

    Hi! If you have table = {1,2,3} How to check if "2" is in the table?
  13. wesoly136

    [TFS] Random tile from an area

    Hi! I need to make a script which will choose one tile from an area and get players from that tile, but I have no idea how to make it :/ Thanks for any help
  14. wesoly136

    [0.3.6] The same hits after reborn

    I have made reborns on my server. And now I want to make something like for example reborn is on 100lvl, then(after reborn) when we have 8 lvl and 1 reborn he should have hits like 100 lvl. So with 8lvl and 2 reborns we should have hits like 200lvl. Do you understand ? :) And I don't have...
  15. wesoly136

    [LINUX] How to enter changes in sources

    Hi! Can anyone explain me how to compile my server that changes in sources will work? Thanks PS I know it is a bad board srr :/
  16. wesoly136

    [TFS 0.3.6] Debug with skills window

    Hi! I have a problem. When I have bigger lvl(I don't know where is the treshold) and I open the skills window my client shows me a debug and closes the tibia :/ How can I solve it?
  17. wesoly136

    Upgrader from windows to linux

    Solved, little mistake Close or delete Thanks
  18. wesoly136

    Compiling [LINUX] Problem with "sources.list"

    Hi! I'm newbie at linux so don't be angry when helping me. The problem is(I think it's the problem) that when I use code for sources.list from old tutorials they aren't working. When I write apt-get update it has errors(one man helped me to change 'etch' to 'squeeze' and it was ok, but...
  19. wesoly136

    [0.3.6] Weapon uses all 3 skills(axe,club,sword in 1 weapon)

    Is is possible to do a such weapon? Which will get up all 3 skills? And when attack it will use only the highest of those three?(Or something other but I think this is the easier way :D) Thanks for help :D
  20. wesoly136

    [mysql] Query that gives points and takes items

    Hi! I need a query that will take an item from player and give them amount of points. For example. Account manager has item with id 9999 and When I execute the query he will lose this item and get points which I will write in query :P It should work for all players in database...
Back
Top