• 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!

Recent content by gudan garam

  1. gudan garam

    TibiaAPI: Record, Redact, Extract, and Watch

    Anything missing on this? I'd like to contribute aswell, maybe get it to be mergeable to jo3's repo
  2. gudan garam

    Wanderer 2D - c++ game project

    Hey, nosu. I just sent you a private message regarding the map files and sprites that were not commited to the github repository. I would love to contribute to the project, so if you can, reach out! thanks
  3. gudan garam

    How can we discourage botting?

    What jo3 said is so true. It is what Cipsoft has done with its content, on top of the anti cheat system obviously. Taking cipsoft for example, because they've done a good job at this, regardless of anti cheating systems: Create content good enough that the players will want to actually play...
  4. gudan garam

    Fugue boss abuse

    Yeah... really weird, idk why the would do that
  5. gudan garam

    Feature Antirollback

    honestly, this shit is not an open source community anymore the type of comments on this thread makes me sad just change the domain to PaidStuffMadeOffOfFreeStuffBeingSoldLeakedAndThenClaimedToBeingPrivateOnAnOpenSourceCommunityLand.net Srsly, if you've made this insanely complex script and...
  6. gudan garam

    High CPU/RAM usage after 8h+

    Just, the imagination on this guy. woah
  7. gudan garam

    Theorizing a Modern Engine Design

    Why? I see so many people saying this, I never understood the reason behind it. Also, while this discussion is really nice to have, I don't see any reason to do something like this when there are 3 year old issues still not resolved. Its like you are expanding the wheel while the wheel is...
  8. gudan garam

    Vingeance's Show Off

    Fuck, this is so fucking nostalgic holy fuck Great work! edit i literally wanna cry
  9. gudan garam

    About hosting - VPS / dedicated

    Ye, I know that, but is it worth it for what we are dealing with? Even for multiworlds OTs... I get that it could be useful for games that require on demand resources such as launching a gameserver for each match (for example CS, LOL, Fortnite etc) but open tibia servers (as we know) can't/won't...
  10. gudan garam

    About hosting - VPS / dedicated

    Is kubenertes a good choice for a gameserver ?
  11. gudan garam

    Tibia 1231 server game packet decompression

    Can you explain what you figured out?
  12. gudan garam

    TFS 1.X+ //EDIT 05/08 - if player is offline then add storage by database

    Thats is right, if the player logs out you should update the storage value directly in the database. You should add the addEvent function wherever you want to set storage after x time, for instance: This: elseif msgcontains(msg, "no") then if getPlayerStorageValue(cid, storage) < 1 then...
  13. gudan garam

    TFS 1.X+ //EDIT 05/08 - if player is offline then add storage by database

    Thats already it. If the OP has the correct compat.lua, the setPlayerStorageValue is just that, take a look: function setPlayerStorageValue(cid, key, value) local p = Player(cid) return p and p:setStorageValue(key, value) or false end
  14. gudan garam

    TFS 1.X+ //EDIT 05/08 - if player is offline then add storage by database

    addEvent(setPlayerStorageValue, 60 * 1000, cid, storage, storageValue) This will set the storage to storageValue on player of cid cid after 60 seconds.
Back
Top