• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. R

    C++ "readXML" on TFS 1.2

    This is what I did so far: I inserted this line in items.h int32_t attackMax = 0; under this int32_t attack = 0; then under else if (tmpStrValue == "attack") { it.attack = pugi::cast<int32_t>(valueAttribute.value()); } I added this else if (tmpStrValue == "attackMaxx") {...
  2. R

    Creating Account on account manager proplem

    google.com .............. have you ever learned the expression "babysteps"? Do things in your own time, if you don't even know how to use sqlite I don't think you are ready to set up a website... Experiment with what you have learned a little and then move on to more advanced stuff. If you can't...
  3. R

    C++ "readXML" on TFS 1.2

    I now understand how the pugi function works. if you pugi::cast (valueAttribute.value), the function will return the XML entry 'value' as a number, and if you use it with (valueAttribute.as_string) it returns as a string. That means I need to declare another attribute called attackMax for...
  4. R

    C++ "readXML" on TFS 1.2

    Update: readXML does not work in tfs 1.2, it is not declared anywhere. I discovered that new XML nodes can be declared in the TFS SDK library, specifically inside the pugixml.hpp file. However I have LITERALLY NO IDEA on where I should do it inside the file, I tried adding it next to every...
  5. R

    C++ "readXML" on TFS 1.2

    I am currently compiling to check if the readXML integer works on 1.2, I will report back soon haha
  6. R

    Creating Account on account manager proplem

    dude, are you kidding me? SQLiteStudio - Downloads literally the first website on google if you search for "sqlite studio" which is exaclty what I told you
  7. R

    Creating Account on account manager proplem

    you need to download sqlite studio and insert a column called "created" in your accounts table man, it is not that hard. Google sqlite studio and download the software. After this you need to open the software, and open the database (.s3db file) in your server folder. The database will be loaded...
  8. R

    C++ "readXML" on TFS 1.2

    EDIT: SOLVED, solution can be found in the Best Answer by Xeraphus (Post #10) Guys, I am creating a new system based on: Feature - Random Attributes, but I want to make it for TFS 1.2 First post was a mess so I edited everything. Basically what I am trying to do is add new attributes on TFS...
  9. R

    Monsters Error!!

    well it is simple, check your spells.xml for those names
  10. R

    Compile proplem

    if you didn't change the source code and it was succesfully compiled than it is probably nothing haha
  11. R

    Compile proplem

    DEV C++ Compilando TFS no Windows This tutorial is in portuguese. Since you do not have a .dev file yet, you need to ctrl+f this page and search for: Caso você adquira uma source com apenas os arquivos .cpp e .h e não sabe como compilar o projeto, abaixo vamos explicar: Start the tutorial here.
  12. R

    Lua Some problems

    dude do what I said, if you didn't understand just create a formula like this: min = level * 3 + ml * 2 max = ( level * 3 + ml * 2 ) * 1.3 create the formula you want and send it to me, I will create the spell script for you
  13. R

    Compiling Tfs 1.2 or 1.3 - and why?

    Perfect answer! Thanks!
  14. R

    Compile proplem

    what tfs is this? and what software are you going to use to compile the source?
  15. R

    Compiling Tfs 1.2 or 1.3 - and why?

    I would like answers based on flexibility - available lua functions without having to do a lot of source edit Stability - 1.3 is still being updated right? Does that mean 1.2 is in its "perfect" form? And that's it! Please try to be detailed about your answer, I managed to compile both sources...
  16. R

    Exevo gran mas pox (same dmg to players and monsters)

    I just gave him an idea lol, I'm pretty sure he is capable of finishing the rest on his own. It is not something difficult
  17. R

    Exevo gran mas pox (same dmg to players and monsters)

    remove the formula (the line with the numbers) of the spell and add: onGetFormulaValues(cid, level, magic etc etc) min = -(your formula for min damage) max = -(your formula for max damage) if isPlayer(cidEx --> i'm not sure about the syntax, you will have to search more, but make sure you are...
  18. R

    Lua Some problems

    You can change the formula of the spell. Just replace the line with the numbers with: onGetFormulaValues(cid, and the variables you want...) and then: min = -(bla bla bla) max = -(bla bla bla) return(min, max) EDIT: Oh but now that I read it again, you are not even looking at a monster xml...
  19. R

    Tibia 10 Custom Client: Disable Update Message + MC + Your IP

    I don't get the 17/19 characters domain thing. Which one will players use to connect to my server? I mean, I have a domain I created via no-ip and players can already connect with an ip-changer, but it doesn't have 17 nor 19 letters. Do I have to change it if I want to use this custom client?
Back
Top