• 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!

Recent content by Mike "riff"

  1. Mike "riff"

    OTClient exceptions

    I am getting a lot of exception spam looking like this : 'otclient.exe' (Win32): Unloaded 'C:\Windows\System32\wrap_oal.dll' 'otclient.exe' (Win32): Loaded 'C:\Windows\System32\wrap_oal.dll'. Cannot find or open the PDB file. Exception thrown at 0x00007FFD24F27788 (KernelBase.dll) in...
  2. Mike "riff"

    Creature Sound phase one

    It is my hope that these file be put on the official otclient download so "normal" non programmers can dowmload ;) I still need to make a large database of sounds plus a time repeater and buffer memory setup However this library is easy to use so wont take long. I also got to make a action...
  3. Mike "riff"

    Creature Sound phase one

    I'm sorry but I am just learning c++ and lua got to confusing for me. The sound engine is very confusing so many libraries doesn't make a lot of sense to me. So I like the plain English and easy install of this library . I am always looking for tips but understand my limitations. I tried for a...
  4. Mike "riff"

    Creature Sound phase one

    OTSound project Latest News: Sound project halted to address OTClient bugs: 2/8/17 Phase one: complete add single creature sound to game 2/5/17 Phase two: complete play multiple monsters and repeat for new creature. 2/5/17 Phase three: complete database: my OTClient database with all build...
  5. Mike "riff"

    Sound project code question?

    solved void CreatureSounds::getCreatureSound(const std::string& fileName) { const std::string& CreatureAttrName = fileName; std::ifstream file(filePath + fileName); file.open(fileName); if (file.fail()) { ERROR_ALERTED; std::cout << "File could not be found."...
  6. Mike "riff"

    Sound project code question?

    Started sound project, know my plan where I'm going just can't get past this function call. Anyone who know c++ really well that cant give suggestions. #include <string> class CreatureSounds { public: CreatureSounds(); ~CreatureSounds(); char filePath[20] = "../data/sound"...
  7. Mike "riff"

    CAN I USE TFS BUILT IN visualStudio Without FORWARDING PORTS

    Port security is most likely the problem. I had a horrible time trying to stop Mcafee Virus Software. When you install security software they take over port guarding from windows. So, if your on some company network I got think its blocked. I understand you might not be able change this without...
  8. Mike "riff"

    Help Urgent PLZ

    The error code appears to be a good indication. For TFS the file is config.lua double check if path is correct, then name is correct, is file actual there or not. Maybe somehow file got erased shouldn't be hard to eliminated possible causes.
  9. Mike "riff"

    Tibia Sound Project

    I formally announce the start of the Tibia Sound Project for OTClient and Tibia Client. This will be a 3 year project to bring complete sound immersion to tibia, if CIP doesn't beat me to it. All creature will have independent sounds and a data base for storing updating and saving these files...
  10. Mike "riff"

    OTLibrary building

    That looks like a different version hopefully its not the same SDK pack. With own project builds compatible with the newest library's version, I see no need reason down grade them. If some keyword change made a library incompatible then stay stick with the old library but since I've tested and...
  11. Mike "riff"

    OTLibrary building

    There 4 options to making libraries 32-bit debug, 32-bit release, 64-bit debug, and 64-bit release. And to make things even more complicated we can build a project library as a static or dynamic library. Static library just means the library is fully built into the executable. Dynamic means, we...
  12. Mike "riff"

    OTLibrary building

    I can’t build your program! …I’m getting boost errors!!!... Why do I need blaa.dll???...I’m doing everything right it your program fault!! We have all been there…I really hated this hurdle. Stop relax everything is going to be alright. To help you get past this I’m going give some helpful...
  13. Mike "riff"

    Windows Can't download clients/ 404 not found error

    There are some things to keep in mind when downloading a Tibia Client and logging into a set version server: 1. You must have a account and player created for the server you are logging into. Server creators IE. programmers make a account page when they setup their world, if you get a world...
  14. Mike "riff"

    [10.90] GlobalOT - FULL + NEW WWW + NEW LAYOUT + Krailos [TFS 1.2]

    Awesome DataPack full real tibia data map and 90 percent of all 10.9x quest wow what a gift to community. I got missing npc from evolutions data pack just combine the npc data together into one data pack. Going to work on a sound mod engine to add all creature sounds, then a new sprite sheet...
  15. Mike "riff"

    Need help building latest forgotten server windows

    Found I had ports 80, 7171, and 7172 blocked by anti-virus program. Found a couple of good installation tutorials, really like cnote installation tips.
Back
Top