• 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. Black Reaper

    Repo Questions

    Hey, just a few questions for anyone who has the knowledge to answer. I see release 1.2 is 5 years old now. Should I build my server off of master branch? Is it stable? What client version is supported out of the box? I'm not familiar with C++, what C++ version would be most helpful to know...
  2. Black Reaper

    [Closed Testers] Blood Gauntlet - Hack and Slash

    Hello, I'm searching for members interested in being apart of the development of my server through its closed testing phase, many of the main systems are being finished and in a few weeks it will be time to get some real user data and feedback. I will reward those who really helped at the end of...
  3. Black Reaper

    Mapper Looking for a Mapper That's Been Around a While

    I've seen a lot of RPG's fail over the years, a vast ocean of projects fail to release including my own, and generic servers become super successful. I'm working on a RPG server that I truly think will be a success if it gets finished, I want to create a community where people can make friends...
  4. Black Reaper

    Lua Armor and Resistance Penetration?

    Is there a way to get a creatures armor and elemental resistances/change them via lua? 1.0
  5. Black Reaper

    Pokemon 3D

    Just thought I would post this here incase everyone hasn't heard about it, awesome game that clones the gameboy games; you can trade with people, battle, etc. http://pokemon3d.net/
  6. Black Reaper

    [Pixel Artist] non-OT related. Dungeon Crawl Esq Game

    I'm working on a small 2d (Tibian perspective) dungeon crawling type game. It's a prelude for a future rpg I have planned, I wanted to write a small game to get accustomed to things before I begin a large project. It's being written in SFML C++ but I'm thinking about switching to the Python...
  7. Black Reaper

    Best Cat Video Ever

    I feel like I have to share this because everyone needs to see this.
  8. Black Reaper

    Streaming LIVE Gold III Journey to Plat

    Come watch me feed haha. Nah, going for plat figured why the hell not stream. Stream Mic is disabled for now, probably will enable if you guys want. - - - Updated - - - Playing support Soraka :| this match. - - - Updated - - - Playing support Taric, another loss incoming. - - - Updated -...
  9. Black Reaper

    Request & Contribute Project

    Hey there OTLand, this is a thread directed at helping revitalize this open source community. The main goal is to document Open Tibia. This is a place you are free to request any resource for your server or website. As of this very moment only LUA and PHP scripts will get done as I am the only...
  10. Black Reaper

    Complaint Lunar & Shadow Boards

    Can we get an option to block viewing threads started in these boards, it's super aggravating having half the threads under new posts be either: a)People raging / trolling each other in broken English. or b) People raging / trolling each other not speaking in English at all. Or at-least a mod...
  11. Black Reaper

    Loot Chance

    How does the chance work, seems to have no rhyme or rhythm. What I mean is how much is 1%. <item id="2165" chance="1450" /> <!-- stealth ring -->
  12. Black Reaper

    NPC Sofa King

    Aqua Teen Hunger Force I was filling in random filler script and I typed "rise chicken, rise".. so I had to make this real fast. It's just for some laughs really. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
  13. Black Reaper

    Lua Basic NPC Help

    Can someone show me a simple NPC script just respond based on what the player says. Not just one keyword like I see all the scripts or: "would you like blah" player -> "yes" , something happens. I tried doing: if msgcontains(msg, 'quest') then selfSay('Huh? Quest? Just a simple post...
  14. Black Reaper

    Wheel of Time Teaser I - Tar Valon

    update 7/15/13 Just wanted to give a short update, Caemlyn has been finished along with most of Tar Valons NPCs. The Braem Wood's creatures have been made and summit has begun mapping that area (between Tar Valon and Caemlyn .see map.) Soon, within a week, we are going to make a more organized...
  15. Black Reaper

    Lua attempt to call global 'getPlayerWeapon' (a nil value)

    function setDamage(cid, skill, damage) local skill = getPlayerSkill(cid, 4) local damage = getItemAttack(getPlayerWeapon(cid).uid) local min = (skill * damage * .09 * 2) * -1 local max = (skill * damage * .09 * 2) * -1 return min, max end Wrote this for the damage formula of a...
  16. Black Reaper

    Installing mods TFS 0.2

    I noticed there's no mod folder (tried creating one), in this TFS version. Is it still possible to use mods? If so, how?
  17. Black Reaper

    Lua getPlayerWeapon()

    Just curious what this returns, trying to use it to get weapon damage.
  18. Black Reaper

    Suggestion v0.2.15 (Mystic Spirit) - Bug

    I didn't know where else to place this so: The party spells aren't working properly(I don't mean the script), I haven't tested all of them but I assume they suffer from the same issues. Enchant changes the skill level visibly under skills but it does not actually alter the skill of the...
  19. Black Reaper

    Lua Spell Questions

    This has to do with the combat area, hate to make a thread for such a simple question but I cant find any resources. Combat Area, basically what are my options with this, I know that 1 will be spell area, and I've seen other numbers used to represent the caster. More specifically how do I...
  20. Black Reaper

    Solved Spells FORMULA_LEVELMAGIC, FORMULA_SKILL

    Don't understand the spell damage formulas, I posted them from combat.cpp. COMBAT_FORMULA_SKILL Item* tool = player->getWeapon(); const Weapon* weapon = g_weapons->getWeapon(tool); min = (int32_t)minb; if(weapon) { max =...
Back
Top