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

    CreatureEvent Boss Reward

    I was looking for that too
  2. athenso

    OTX 3 10.99 Broken HP/MP Limit

    bump
  3. athenso

    OTX 3 10.99 Broken HP/MP Limit

    I have been struggling for quite a while now to break the hp limit on OTX3 10.99 source. I can compile it, but when i get everything done the exe that i created says Failed to start application 0x0000. I am wondering if someone has a pre compiled exe that sends hp/mp in % values or if someone...
  4. athenso

    OTX 3 Event Script

    This script looks amazing. I tried it and nothing happened. I was looking at it last night, and it looks as though the script is never getting called being put where it is. So i will have to find a different method to perform the check. I thought for sure Events would be the place to try this...
  5. athenso

    OTX Paypal Script

    I think i fixed it, I forgot to redirect paypals IPN to my websites IPN.
  6. athenso

    OTX 3 Event Script

    Tested this and it has the same outcome as my script had. I knew i would overlook something, but 1 step at a time lol. Im just trying to keep a reborn 30 from destroying a level 400 non reborn.
  7. athenso

    OTX 3 Event Script

    I have an event script for Events -> creature.lua The script is supposed to be working, so a player can not attack another player that is 30% less than the attacker. In this case its for my reborn storages. function Creature:onTargetCombat(target) local percent = 0.3 --- devide the percent...
  8. athenso

    OTX Paypal Script

    I have a paypal script for my OTX server, it is half working. The money is sent and recieved, but it is not rewarding the players, I have to do it manually. Can someone help with this? I am using MyAAC for my website.
  9. athenso

    OT Client Particle System

    Does anyone have any information about the Particle system in the otclient? Im looking to play around with it, but I cannot find any information anywhere about how to start with it or even where to look.
  10. athenso

    EXP Stage based off storage OTX 3.0+

    function Player:onGainExperience(source, exp, rawExp) -- if they completed quest with storage 12345 then they only get 50% of the exp if self:getStorageValue(85987) >= 1 and self:getStorageValue(85987) <= 10 then exp = exp * 0.9 elseif self:getStorageValue(85987) >= 11 and...
  11. athenso

    EXP Stage based off storage OTX 3.0+

    Basically I have Staged experience right now, and I want to set it so if someone completes a quest they get a little less (due to the quest being harder it means they are in the higher level ranges) without adjusting the stage table. The script i posted above was an example, its not what im...
  12. athenso

    EXP Stage based off storage OTX 3.0+

    I am working on a script to change a players exp stage based off a storage value. I am not seeing any Functions that I know I can get it to work with. An example script would be something like: local player = Player(cid) local check = player:getStorageValue(928487) function onThink(interval)...
  13. athenso

    Website Help

    That worked like a charm. Thank you much.
  14. athenso

    Website Help

    That was spot on. I spent quite a bit of time looking around, failing to realize there was a functions file for the website. I will have to play around with that when i fix the highscores page. It does work but I think that the line highscore.php box <font...
  15. athenso

    Combining 2 scripts help

    I am currently using the extra loot creature script that adds extra loot to the monster drops: local rare_popup = true local rare_text = "*rare*" local rare_effect = true local rare_effect_id = CONST_ME_MAGIC_GREEN local tiers = { [1] = { prefix = 'rare', showattr = true, --...
  16. athenso

    Website Help

    I am trying to get the website to load the reborn information in the players database. I seem to be getting close but I am getting weird outcomes. I know nothing of php. <style type="text/css" media="all"> .Toplevelbox { top: -4px; position: relative; margin-bottom: 10px...
  17. athenso

    Stamina Assistance

    Stamina works, but I am now getting an error. -- Mining Skill by Ramirow -- Skill System created by Codex NG -THANKS! (https://otland.net/members/codex-ng.213653/) -- For TFS version 1.1 local name = "Mining" -- Name of the Custom Skill local storage = 15002 -- Storage used to store Custom...
  18. athenso

    Stamina Assistance

    Thanks ninja, your the best. I struggled with that for a few hours last night.
  19. athenso

    Stamina Assistance

    I am very sleep deprived, I know the solution is easy. I am working on a script that reduces stamina from mining items. I tried a few methods, but all of which return full stamina and not reduce. Not my script, just tweaking it for stamina. -- Mining Skill by Ramirow -- Skill System created by...
  20. athenso

    Tibia Item Editor for 10.77, 10.82, 10.90-10.94

    Looking for a 10.99 item editor as well
Back
Top