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

    TFS 1.2 Ani lever do not reset

    Yeah just compare my changes for the fix and update your version.
  2. Apollos

    TFS 1.2 Ani lever do not reset

    Try my latest fix at the bottom of this thread. Thanks for pointing out the bug. https://otland.net/threads/tfs-1-3-advanced-annihilator-system.263342/#post-2558437
  3. Apollos

    Action [TFS 1.3] Advanced Annihilator System

    Dumb mistake found regarding resetting of lever. Sorry for any inconvenience. If a mod happens along this post, I would be really grateful if you updated the original posts annihilator.lua with this one. annihilator.lua local config = { duration = 30, -- time till reset, in minutes...
  4. Apollos

    Team Valor Online Searching for New Staff

    Lol, maybe dick move but I gotta do what I gotta do.
  5. Apollos

    SPELL THAT CHANGES TARGET OUTFIT

    Problem is if you set the condition to a global combat variable it will always have that condition for any following uses until script is reloaded. Instead of the last combat only having the condition. Which I don't know old TFS functions enough to add the condition manually without adding it to...
  6. Apollos

    Team Valor Online Searching for New Staff

    I already had it saying "Must be able to write and speak in English" and I edited it a little. I'm not trolling just trying to find what is needed.
  7. Apollos

    SPELL THAT CHANGES TARGET OUTFIT

    This spell is messed up dude. It would be best to rewrite the spell, what do you want it to do? I don't see why you are setting an area with no effect and only sending to the space the player is standing on. But here's an idea on how to rewrite it much cleaner: local combat =...
  8. Apollos

    Team Valor Online Searching for New Staff

    Looking for someone who speaks english fluently and I don't really want to trade work at the moment. I appreciate the reply tho!
  9. Apollos

    Team Valor Online Searching for New Staff

    Hi everyone. I've been working on an english custom 10.98 based low rate RPG. It's been in production for around a year now and there is a lot of progress so far. My recent team has become too busy and hasn't been able to put the time into the server and they have agreed it's time to bring in...
  10. Apollos

    Remove and add money from depot

    Use support thread for questions and always post what distro version you are using. Otherwise no one can accurately help you.
  11. Apollos

    Azleh/Shaqz is a scammer!

    UnsinSoft's name was Shagz too so it's probably the same guy. He's a known scammer and he took major advantage of me as well a while back. Sorry to hear this happened to you bro.
  12. Apollos

    Add distanceeffect on spell

    local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, 16) combat:setParameter(COMBAT_PARAM_BLOCKARMOR, true) combat:setParameter(COMBAT_PARAM_USECHARGES, true) combat:setArea(createCombatArea(AREA_CIRCLE3X3)) local combat2 =...
  13. Apollos

    TFS 1.X+ Help Channel message when open

    Window isn't fully open during onJoin so this message is being sent but won't be seen. Try this instead: function onJoin(player) addEvent(function(cid) local player = Player(cid) if not player then return end player:sendChannelMessage("", "MESSAGE"...
  14. Apollos

    Add distanceeffect on spell

    Do you want the AoE to stay around the casting player but send a distance effect going to all tiles in area or are you converting this to a distance shot that sends distance effect to target and then AoE around that target?
  15. Apollos

    [QUESTION]About Enigma Virtual Box, is it good?

    What do you mean by "any file extractor"?
  16. Apollos

    TFS 1.X+ onTradeRequest?

    It's in data/events/scripts/player.lua
  17. Apollos

    OTClient Module doesnt load after restarting otclient

    Did you add it here too? edubart/otclient (https://github.com/edubart/otclient/blob/1addf3e1766ca3fe43bdf1114c0655a971123291/modules/game_interface/interface.otmod)
  18. Apollos

    Help with this script

    From reading oen's thread I see you are not using onItemMoved like he specifies. If you set everything up correctly besides this, it's probably easier just to add the commit to your server for onItemMoved. Player:onItemMoved event (#2474) · otland/forgottenserver@5438d50...
  19. Apollos

    TFS 1.X Level Cap per Stages

    Untested, let me know how it works for you. -- Put this in data/global.lua function getExpForLevel(level) level = level - 1 return ((50 * level * level * level) - (150 * level * level) + (400 * level)) / 3 end -- Put this in data/events/scripts/player.lua before Player:onGainExperience...
  20. Apollos

    transforming item

    Best way is to do something like this: local transform_id = 2659 function onUse(player, item, fromPosition, target, toPosition, isHotkey) item:transform(transform_id) item:decay() return true end Then in items.xml you set a decayTo and duration on the item it transformed into that...
Back
Top