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

    chat error

    Exact conditions for this to occur: This person is using a backported engine that made this change to their mailbox.cpp, which bumped minimum condition IDs up to 3, and this change to chat.cpp which started enforcing it, but they are still using an older dataset which has the original values in...
  2. Lessaire

    [Discussion] TFS direction (to do list/new milestones)

    I really hate airing dirty laundry... I wouldn't have offered if I couldn't actually spare the resources. ...Though I really should get a move on finishing decommissioning that server. I'll hate losing that mad uptime cred though. 🥺 🤷‍♂️ I'm not averse to hosting a Podman cluster. But I...
  3. Lessaire

    [Discussion] TFS direction (to do list/new milestones)

    If it's so simple, why are there so many PRs awaiting testing? 😆 WASTED_RESOURCES = 0; -- A tally of the total wasted human lifespan function reality(people, time) -- A simple function of reality -- time: the amount of minutes each person spent -- people: the number of people that did...
  4. Lessaire

    [Discussion] TFS direction (to do list/new milestones)

    Why does a testing server need a webportal though? It seems like an added complication. That doesn't offer anything that can't be provided in some other fashion. I would be ideal to not have to expose an httpd for this at all, but if it is necessary, I'd like it to be just 1 for the whole...
  5. Lessaire

    [Discussion] TFS direction (to do list/new milestones)

    If I stop what I'm up to currently to fabricate tooling for this, I'll be running multiple gameworlds so that up to n slots worth of open PRs can be available for testing simultaneously. Something along the lines of: 0.) spawn clean chroot 1.) preinstall makedeps 2.) git shallow clone 3.) git...
  6. Lessaire

    [Discussion] TFS direction (to do list/new milestones)

    If you want a Continuous Playtesting Server for this MMO engine: You need an actual inline AAC. * You need a purpose built map that provides rapid testing scenario access. You need purpose built ACL state toggling, so that player can escalate privileges to gameworld administrator when they need...
  7. Lessaire

    TFS 0.X TFS 0.4 ancient version Exori weapon type dmg

    My bad. I'm almost done getting my TFS 3884 fork all fixed up for modern systems, then I'll be able to actually test these scripts instead of executing them in my head. 😂 -local fireweapons = { "2432", "12690", "12691", "12689" } +local fireweapons = { 2432, 12690, 12691, 12689 }
  8. Lessaire

    Moving forward

    I was here when this thread was born and completely understood Tala's mindset. Unfortunately, I was torn away from here by unrelenting forces of life. I finally returned.... to a state of many many problems. I will gladly help restore order to the community that saved me from a terrible fate...
  9. Lessaire

    How to find a lua function easily (TFS 1.3)

    Really? You are wanting to use excel for a feature built in to most code editors and IDEs? You know they have a Wiki right? You can also look at luascript.cpp.
  10. Lessaire

    Shop problem

    No worries. I left a report, they'll get the thread title squared away.
  11. Lessaire

    Call to community at TFS GitHub

    I suppose the Dockerfile in the project root and the MicroBadger badge should give that away. -march=haswell -Og -g should perform well enough for the sort of user who'd accept a packaged solution, and are likely to use OVH or other current VPS hosts.
  12. Lessaire

    Call to community at TFS GitHub

    It fills identical role, but doesn't suck ass. I'm sorry but that's just too heavy of a context switch for me right now, it's outside my "cached skillsets". I do not have tooling for it on-hand, and Docker-esque containerized deployment is outside the scope of what I had in mind.. -- I was just...
  13. Lessaire

    Shop problem

    Be sure to change the thread title, and ditch the link in your signature. 👍
  14. Lessaire

    Call to community at TFS GitHub

    Unfortunately you can't really cargo cult security. It's a topic about as complex as human immune system response, except the viruses are sentient and listening to your conversation. Mitigation proposals typically require comprehensive data about the attacks, which requires a kind of logging...
  15. Lessaire

    Shop problem

    Ok. I think I did things by the book here. Added missing sanity checks too. -- Be sure to fucking have this location set to a mailbox -- Lessaire local MAILBOX = Position(32350, 32222, 7) function onModalWindow(player, modalWindowId, buttonId, choiceId) local function ucfirst(str)...
  16. Lessaire

    Call to community at TFS GitHub

    This is where providing automated packaging tooling becomes indispensable. Because the environment I'd set up for my own needs is not in the same sphere as what typical forum visitors are capable of. But if you give them something where they can still mod their sources, and then turn that into...
  17. Lessaire

    Shop problem

    first script function onSay(cid, words, param) local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks. local cooldown = 0 -- in seconds. local player = Player(cid) if player:getStorageValue(storage) <= os.time() then...
  18. Lessaire

    My New Discord Username

    Your domain is GoDaddy advertising. Also you should ditch GoDaddy asap, they are morally bankrupt.
  19. Lessaire

    TFS 0.X Request: Cancel trade

    Ours was some id in the 4000 range. It was most definitely not a default thing. You could step on it. you could see the item underneath, but all click-drags and anything grabbing the item by that same interface (as a trade would), would grab the immobile tile and return not possible.
  20. Lessaire

    TFS 0.X Request: Cancel trade

    Has the ancient knowledge been lost? 😟 I accomplish this feat by putting another item on top, a custom item, 100% transparent that does onLook passthrough. Pretty much every OT that had in-game donor shop back in the day did the same. I enhanced mine with script where if CM tried to /r the...
Back
Top