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

    Team Need a team to create a 100% PvP Server.

    Hello folks, I'm planning to start a 100% PvP Server. The concept is gonna be very new to Tibia, I don't think any tibia server has had this type of feature. The concept is heavily inspired from how the arena system works in world of warcraft. There will be a lot of custom features along with...
  2. Vanderlay

    Chance to run a raid.

    math.random default starting index is at 1 so you don't need to define it.
  3. Vanderlay

    100% PvP Server

    Well with my system, there wont be a such a thing as "not doing games". There will always be a battleground available to play if there is enough players. My system is kinda unique as its uses a queue system and not a event based system. There's no stepping into a portal to join, you just enter a...
  4. Vanderlay

    Lua Mass Healing in Percent

    I don't think there's a function which supports this in TFS. You can use combat formulas but they will not be percentage wise, as you use a fixed value and percentage needs a different value for each player.
  5. Vanderlay

    Solved [.PHP] Simple Question?!

    Tables are done with HTML, but can be filled with information using PHP. But yea, if you want a "PHP Table", use the link Cornex provided.
  6. Vanderlay

    FelonyAAC official discussion and showoff thread

    Alright nice. Altho, in my experience, using a framework for templates costs so much resources in relation to what you actually get from it. I always used the default syntax because I want my applications to run as fast as possible.
  7. Vanderlay

    FelonyAAC official discussion and showoff thread

    If you are planning on making something new and more modern, please use PHP mixed with HTML in this way: <?php if ($errors->errorHas()): ?> <div class="alert alert-danger"> Following errors has occured: <?php foreach ($errors->errorGet() as $error): ?> <li> <?php echo...
  8. Vanderlay

    100% PvP Server

    Hey guys, I've been thinking of starting a 100% PvP Server. The idea is to use my current battleground system. The only thing you can do is to enter the battleground and fight other people. After you complete a battleground, you win/lose ranking, get battleground points and gain experience. The...
  9. Vanderlay

    [SWEDEN] Vanderlay 10.41 - Customs, RL Map

    Fixed an issue causing spells with cooldowns higher than 60 seconds to go crazy.
  10. Vanderlay

    [Game] Scripters Battle

    Wiki for TFS 1.0+, check the menus to the right: https://github.com/otland/forgottenserver/wiki function Player:onGainExperience(source, exp, rawExp) local bonusExpConfig = { bonus = 1.5, chance = 10 } if math.random(100) <= bonusExpConfig.chance then...
  11. Vanderlay

    Scripter Looking for a Scripter!

    Right... Because jobs is the most stupid thing that has ever been invented.
  12. Vanderlay

    Scripter Looking for a Scripter!

    You might want to include the TFS version.
  13. Vanderlay

    TFS 1.0 Multi worlds

    I've already discussed this feature with Mark and we agreed that it shouldn't be officially implemented into TFS as its functionality isn't optimal yet. It might come up later if the login server would be separated from the server.
  14. Vanderlay

    TFS 1.0 Multi worlds

    Hello folks, I've seen some threads around before about Elf having multi-worlds on TFS 0.3 I think and a lot of people wanted that feature(I'm not sure if he ever released it). Anyway, I recently had a need to host several servers on the same host, as I couldn't get another host, so I decided...
  15. Vanderlay

    Website & Server on diff. IPs?

    It all depends on how much your server can handle. If you have a very high populated server, I'd get a server for hosting the website and database on and another for the server. I remember when I had a high populated server before, around 400 players online and we had everything on the same...
  16. Vanderlay

    Team Rudaar OT - assembling a team.

    You might want to let the people know what you have to offer for joining the team.
  17. Vanderlay

    C++ TFS 1.0 ADD NEW ITEM ATTRIBUTE

    Just look on how other attributes such as unique ID are being set. Copy that functionality and define your own attribute and its done. If you know how to code in C++, this shouldn't be hard at all, just search through the code and you'll understand it.
  18. Vanderlay

    Tower Defense Event [TFS 1.0 / 1.1]

    Check out my thread and the changes for path finding. I remade the path finding system to be automatically detected, but my version only works with TFS 1.0.
  19. Vanderlay

    [GESIOR] Invalid argument (Foreach())

    You're probably looking at the wrong database. MySQL would never print that error otherwise, unless its a custom error message made from Geisor which could be incorrect.
Back
Top