• 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

    Lua manipulating os.time()

    I only tested this out with lua demo so let me know if it works. I also didn't get involved in adding it to onThink cause I'm not exactly sure what all you need beyond the time check. -- warCastle index [0-6 = Sunday-Saturday] warCastle = { [0] = { weekday = 'Sunday', time = '22:00' }...
  2. Apollos

    Premium ended Return to temple and become resident city TFS 1.3

    I mean after this response idk what to think, that's why I went with a query that can be interchanged with lastDay instead of premium_ends_at to work for tfs 1.2. You didn't respond to what exact distribution you have, seems you didn't read my whole reply. No one is going to be able to help you...
  3. Apollos

    Manually add char to database?

    You can do a query but easiest way I've found is to just use the insert button within the player and account table in phpmyadmin. Then you can just fill out the form.
  4. Apollos

    Jfrye's Mapping Pieces

    Looks really good so far, I like the way the mud blends from the shoreline, more of that would look nice. Once it's all detailed in I'm sure it'll be awesome.
  5. Apollos

    TFS 1.X+ Learning spells problem

    I would guess it's because you don't have any vocation set for utevo lux. Add them like this: <instant name="Light" words="utevo lux" needlearn="0" mana="20" selftarget="1" aggressive="0" script="support/light.lua"> <vocation name="Sorcerer" /> <vocation name="Druid" /> <vocation...
  6. Apollos

    TFS 1.2 Looking for dash spell

    See if you like this one: local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false) local unwanted_tilestates = { TILESTATE_PROTECTIONZONE, TILESTATE_HOUSE, TILESTATE_FLOORCHANGE, TILESTATE_TELEPORT, TILESTATE_BLOCKSOLID, TILESTATE_BLOCKPATH } function onCastSpell(creature...
  7. Apollos

    Premium ended Return to temple and become resident city TFS 1.3

    If your function is 'getPremDays' then you're not using TFS 1.3. So if you want accurate help you should find out what server you're actually using. Also when you write this, you should keep in mind that if a player has already logged in once before since losing premium, we should not keep...
  8. Apollos

    Team Mapper/Co-Developer

    Still searching.
  9. Apollos

    Team Mapper/Co-Developer

    Still could use some help.
  10. Apollos

    Team Mapper/Co-Developer

    Recently got back involved with a server of mine I had been working on all last winter, which I plan to continue working on it all this winter. I'm searching for someone who can help with all aspects of the server but mainly need someone to take over some of the mapping duties. I do a lot of...
  11. Apollos

    Packaging OTClient

    I second enigma, it works great. But its not hard to reverse it and get a hold of the files.
  12. Apollos

    Team ISO Co-Developer

    Still looking for someone. PM me.
  13. Apollos

    Team ISO Co-Developer

    Sorry, didn't see this until now. I plan for it to be EU based 8.6 mid-rate classic RPG server. No custom OTC or sprites as I only really want to use base assets so the server is easily accessible to everyone. Plus adding extra sprites and getting into OTC just opens up a big can of worms that...
  14. Apollos

    Team ISO Co-Developer

    Getting back into the project, still searching for someone to co-develop, mainly mapping and quest creation. Hmu if you're interested.
  15. Apollos

    What type of car do you drive?

    The pioneers used to ride these babies for miles...
  16. Apollos

    Lua Cannot use this item, but still runs code?

    There's no return true at the bottom either so it could be just making it to the bottom of the script and returning nil.
  17. Apollos

    Team ISO Co-Developer

    Still searching for someone who is willing to join in on an 8.6 evolutions based server that's almost 50% done. Need help mainly with mapping and quest development at this point.
  18. Apollos

    Team ISO Co-Developer

    Taking a break from my larger project and working on a smaller evolution based server just to have some fun and enjoy having a server online again. Server runs on Nekiro's 8.6 TFS and is likely going to use a custom client (undecided) and I plan for it to be an EU based server. I have done a...
  19. Apollos

    Lua Groundshaker with bleeding condition

    You're initializing the condition but you're not adding any parameters nor are you assigning it to the combat. Look at how this works for reference: local condition = Condition(CONDITION_BLEEDING) condition:setParameter(CONDITION_PARAM_DELAYED, 1) condition:addDamage(10, 2000, -1)...
  20. Apollos

    (HELP)Problem with temple position

    I'm not sure what you mean when you say "accounts are created correctly on my website"? What is the question then? If it's just sending you to the wrong temple position, I don't see an issue with the code, your config.php available towns is setup the right way. Are you sure you doubled checked...
Back
Top