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

    AAC If I wanted to make my own website...

    I would have to learn php first, right? In order to link the website with mySQL database, what would I need to learn? Do you guys have any good books or courses that would teach me how to do this? I am a fast learner so I think I can handle. I do have background in programming, but only in C...
  2. R

    Most viable way to handle % bonus to damage (read text)

    Thanks for the quick reply! I will definitely do that haha Oh and btw, what do you mean by primary and secondary damage? If I have an enchanted sword that deals physical damage and fire damage as well, the primary would be physical and the secondary would be fire damage?
  3. R

    Most viable way to handle % bonus to damage (read text)

    I'm currently working on a strategized PvP/PvE project, and I want to encourage players to rely more on elemental resistances, and I also want to implement a bonus % to x type of damage system, where X would be ice, fire, death, holy, energy, earth, melee and distance. I was wondering if I...
  4. R

    C++ True Dual Wielding for TFS 1.2

    My bad, still getting to know those websites haha, it worked! I am now compiling to check if no problems occur, thanks a lot
  5. R

    C++ True Dual Wielding for TFS 1.2

    Oops, had to add them to a .rar file otherwise forum wouldn't let me post
  6. R

    Question about weapons.xml

    I think the source code reads level requirements in weapons.xml and in items.xml differently. In items.xml, the level requirement means you can't even equip items on the slot you want, but in weapons.xml you can, it just won't work properly (as is the case with melee weapons) or won't work at...
  7. R

    MyAAC v0.7.12

    I think is was a kind of conflict between the website and my database schema, since as soon as I installed the website, the samples came with the deletion field = 1 in the database. I quickly changed it to 0 before they were deleted and the problem was solved. And btw, great website :) I...
  8. R

    Help problem with cave boards

    just use the "pathing" tool on rme and remove pathing on the border squares, I think that should fix it
  9. R

    C++ Wand damage problem

    EDIT: nevermind, I should have written > minChange and >maxChange, but my dumbass brain wrote >0 int32_t WeaponWand::getWeaponDamage(const Player* player, const Creature*, const Item*, bool maxDamage /*= false*/) const { if (maxDamage) { return -maxChange; } return...
  10. R

    MyAAC v0.7.12

    Samples get deleted everytime I create a new character, any idea why?
  11. R

    C++ True Dual Wielding for TFS 1.2

    On the second page it is said that it works on tfs 1.2 :/
  12. R

    C++ True Dual Wielding for TFS 1.2

    The author said the script works for 1.2, but I get errors and the author is inactive in otland I think (haven't logged in since last year) This is the link to the system: Feature - True dual wielding for TFS 1.x I am using a pure TFS 1.2 copy from otland github. I downloaded both the .patch...
  13. R

    AAC Changing "localhost" domain

    I fixed it, if I use the no-ip domain then it will not work. I had to put my local ip (only in the config file, the website still shows the no-ip domain haha)
  14. R

    AAC Changing "localhost" domain

    Oh, it is working but even when the server is running it says "offline" on the server status of the website... Any idea why?
  15. R

    AAC Changing "localhost" domain

    Oh it worked! Thanks :)
  16. R

    AAC Changing "localhost" domain

    I am using uniserver, and I have both apache and mysql working as well as my website. I am using no-ip to change my ip to xxxx.servegame.com but I can't enter the website still.... I opened both 80 and 8090 ports on my router, don't I have to change the "localhost" domain to xxxxx.servegame.com...
  17. R

    C++ how to give "array -1" a value

    wow this is the simplest solution ever haha
  18. R

    C++ how to give "array -1" a value

    oh I misread it! I accidentally read it like math.max(o, percentMax[i-1]) :P it would probably work too!
  19. R

    C++ how to give "array -1" a value

    maybe uniform_random (0 ? i=0 : percentMax[i-1], percentMax[ii])? again, the [ii] <- double i is just so the forum doesn't think I want to write italic haha
  20. R

    C++ how to give "array -1" a value

    Oh I think that if I use it like this, when i is not >0 then x = percentMax[0] and not x = 0... That means x = 0.25 However I need x = 0 if i = 0
Back
Top