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

    Compiling Installing vcpkg, libraries, and building solution. (few errors?)

    Total install time: 6.338 min The package boost is compatible with built-in CMake targets: find_package(Boost REQUIRED [COMPONENTS <libs>...]) target_link_libraries(main PRIVATE Boost::boost Boost::<lib1> Boost::<lib2> ...) cryptopp provides CMake targets: # this is heuristically...
  2. C

    Which concept do you prefer?

    My interest for jumping into a serious project has been increasing over time. I want to give players what they want, while also working on a project that I can enjoy. My focus is to bring something familiar, without too much change to the core Tibia game mechanics. I have put a lot of thought...
  3. C

    lets make a team

    I believe there is a boat load of people here who are capable of making a good server. Let's work together and collaborate. I can help with any area of development, but my knowledge of C++ is severely limited. I don't mind putting aside time every week for the next 2 years to make a great...
  4. C

    another project?

    I will probably add more to this discussion/rant as I think of it. Feel free to post opinions, ideas, hate, or love. I'll read it all. I have been in the OT community since 2006, and was a member of the prequel to this forum. I created various projects, with my peak era being 2010-2012. You may...
  5. C

    Remeres Mapping Questions

    1. Is there a way to import a map with z coordinate offset? 2. Is there a way to import objects (like a house, or boat) without the previous ground tiles being removed upon importing? 3. Is there a maximum map size before the map editors run out of memory? (I tried SimOnes OT Map Editor, and it...
  6. C

    What can I do to improve this map?

    I want it to remain fairly wide open, but I am not sure of what details I can add to this crypt. I went through the entire map editor and found nothing that fits well for a crypt setting with these tiles and walls. Does anyone have any ideas? It's a crypt right beside a small town so I don't...
  7. C

    Updated RME? Also looking for help with mapping ideas.

    The current RME doesn't have many of the raw objects categorized. Has anyone released a fully categorized version? I am asking before I go through it myself. Or is there a better editor? I am also looking for help with mapping ideas. Question 1: Is there a better fitting stair case and/or...
  8. C

    Which web distribution works best with the newest TFS?

    I am setting up the newest TFS, and I am curious as to which web distribution functions the best with it. I am trying Znote but having issues. Having problems connecting to the website after I have imported the Znote schema to the TFS database. Failed to connect to MySQL: (1045) Access denied...
  9. C

    Best server available?

    I am interested in starting a fresh project. Any good builds out there? I would prefer something new and easy to use. I would also like to use the best available OT client
  10. C

    Soundtracks and Crappy Punk Rock

    ........................
  11. C

    Much Bored. Great Sphinx of Egypt. Multiple Attempts. Very poll vote.

    Please someone make a better Sphinx and post the screenshot! My is shit. Idea 1: Idea 2:
  12. C

    The Custom Stats Discussion

    If you were to influence the stat system of a game, what would you use and how would you do it? COMMUNITY THREAD! VOTED STATS! Attack Power: Attack Power Base damage of player. Dexterity: Critical Chance Increases chance to critical hit. Evasion Increases chance to dodge incoming attacks...
  13. C

    Graphic Designer Looking for skilled graphic designer.

    This is NOT a paid position (unless permanent position filled). I have been working on a new game with my partner, and we have been pushing to get the game into alpha stages. We are looking for a skilled graphic designer who wants to be part of an original team, with high motivation and passion...
  14. C

    A new RPG

    My partner and I are developing a new RPG right now and I would like to get ideas from anyone who is interested. What are ideas that you would like to see? Feel free to post anything, and I will enter the useful additions to the list. You can be serious or not, and I will consider everything. I...
  15. C

    Lua {Unsolved} Inserting coordinates into a table?

    How can I insert coordinates into a table, like this? I want to insert coordinates (found with "canAddThing") into the table named raidPos, and then summon spiders on the inserted coordinates randomly. area1a = {x = 12011, y = 9152, z = 8} area1b = {x = 12121, y = 9229, z = 8} local...
  16. C

    Team Temuair RPG - 9th month of development

    Well I am recruiting one more time for my RPG called Temuair. I have been working on this version for the past 8-9 months and have failed to organize a team that is determined enough to stick with it. What have I completed so far? 60~ different player spells 40~ different monsters 30~ different...
  17. C

    Solved - Advanced Spell

    TFS 1.0 I want an energy attack beam that is 5 squares long, and only does damage to players who have a certain storage value. On top of that, I want a storage value set on the "area" players when it is casted on them. Can anyone do this? NOTE: I do NOT want onTargetCombatHealth used, because...
  18. C

    Solved onTargetCreature not working

    function onTargetCreature(cid, target) if target and isPlayer(target) then doTargetCombatHealth(0, Player(target), COMBAT_HEALING, 5, 10, CONST_ME_HOLYAREA) end return true end local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT...
  19. C

    Lua onCastSpell - sending to param

    TFS 1.0 This returns the creature not being found. What is the correct way to do it? function onCastSpell(cid, var) doTargetCombatHealth(0, getPlayerByName(param), COMBAT_HEALING, 1, 5, CONST_ME_HOLYAREA) return true end
  20. C

    Checking for an offline players storage value

    Does anyone know how to do this? I want "totalPlayers" to check ALL players in database for storage. totalPlayers = ???? for i = 1, #totalPlayers do if getPlayerStorageValue(totalPlayers[i], 10000) >= getPlayerStorageValue(totalPlayers[i], 10000) then setGlobalStorageValue(10000...
Back
Top