• 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

    Lua If Empty Slot then do (something)

    I like the tables better. I am just getting back into OTS (I wasnt that great to begin with). It was just an idea I was tinkering with.
  2. athenso

    Lua If Empty Slot then do (something)

    Works, but throws a combat error. Combat is not defined Lua Script Error: [Spell Interface] data/spells/scripts/conjuring/conjure_arrow.lua:onCastSpell data/spells/scripts/conjuring/conjure_arrow.lua:21: attempt to index global 'combat' (a nil value) stack traceback: [C]: in function...
  3. athenso

    Lua If Empty Slot then do (something)

    Script works, until you remove the quiver(s). So yes it does "work" but I want it to work 100%. How do I check if the CONST_SLOT_AMMO is empty? So I can throw up a cancel message saying something like "You need a quiver equipped to cast this spell"? function onCastSpell(creature, variant) local...
  4. athenso

    TFS 1.X+ MyAAC Sha1 Issue

    Still didnt work. My system/database.php <?php /** * Database connection * * @package MyAAC * @author Slawkens <[email protected]> * @copyright 2019 MyAAC * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!')...
  5. athenso

    TFS 1.X+ MyAAC Sha1 Issue

    I tried that as well. I did a fresh install, left everything database settings wise as default. 1614357238 I did a fresh install a few days ago and it still is not communicating with SHA1. The database connection settings are blank (as defaulted)
  6. athenso

    TFS 1.X+ MyAAC Sha1 Issue

    yes i have those in my config, i have them configured.
  7. athenso

    TFS 1.X+ MyAAC Sha1 Issue

    I am using MyAAC, I am using a fork of TFS 1.3 this one. MyAAC will not recognize that the server is using Sha1 encription. (Everything is sourced/located correct in the config file for config.local and config in my www root folder). So any accounts created are submited to the database in...
  8. athenso

    TalkAction [TFS 1.x] Global (Exp/Skill/Magic) Rate Boost

    Wow cant believe i forgot the .. after ttime. Your a G Xikini. How can i fix this? The time isnt right? I think "code wise" it is working, but its not producing in hours or minutes Screenshot (http://prntscr.com/w0vdp7)
  9. athenso

    Action Server Rate Boost

    I created an action script to partner with the script TFS 1.x Global (EXP/Skill/Magic) Rate Boost I wanted a way for my players to boost the server for a small fee when there is no admin online. Checks to see if a boost is already in use (if so will not let the player boost) So here we go...
  10. athenso

    TalkAction [TFS 1.x] Global (Exp/Skill/Magic) Rate Boost

    Not trying to stir up an older post but.....I am drawing a blank on how to return the time left for the global rate boost. I am piecing together a script for !exp for all the bonuses on my server. function onSay(player, words, param) local p = player local s = function(p, lv) local k =...
  11. athenso

    Opening ports

    Do ctrl +r and type in cmd. Type ipconfig and get your IP address (or use whatismyip website). Make sure the config.lua shows the same up as whatismyip
  12. athenso

    Opening ports

    Windows firewall advanced security -> add new out bound and inbound rules for ports 7171, 7172 and possibly your website port as well
  13. athenso

    [NPC] modules.lua issue

    You could search your entire server npc directory for one of those items (I recommend stone skin, not too many NPCs sell it), if your using notepad ++. Just do CTRL +F and then select “Find in files”, put in your server npc directory location and your good to go . Should expedite the search process
  14. athenso

    Quest to obtain storage that allows you to open two doors

    I guess I should have been a bit more descriptive. Don’t leave those storages as I set them. They are just basic numbers and probably used already. Set them to an unused storage
  15. athenso

    Tfs 1x Guild bonus online

    use debug.print to help find where the issues are. This lets you see what is being loaded and what isnt. So add like debug.print("Loaded player storage" or whatever in your code. It helps isolate issues more or less
  16. athenso

    [TFS 1.3] Anti-Bot Script

    It is very usefull. You can use it to do almost anything. You can do hidden messages with opcode, if the client isnt your own client it will log them out. You can do stuff like sending storage values and what not. It solves a lot of issues lol.
  17. athenso

    OTClient

    Struggled for hours....went to show roomate the idea in "theory" and it worked like a charm. Guess the code is right and needed a client reload.
  18. athenso

    New sprites in rme

    I was saying, i tried to load my custom edits into RME by the method stated and RME failed to load. It just sat loading for over a day.
  19. athenso

    New sprites in rme

    Last time i tried that for my custom edits, rme lagged bad. I let it sit for over a day and it never loaded.
  20. athenso

    Rotating effect in X space.

    I know i saw someone do something like that a while ago. I believe they did it with a global event and custom event settings/functions and made a short timer. 1583273723 I am not sure the context of what exactly you are looking for. Sooooo I rewrote a script i had used for another task. This one...
Back
Top