• 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. 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.
  15. gudan garam

    Feature Spoof system

    My mind trying to proccess this: let's combine efforts and make this happen, that way we can make a PR in forgottenserver to be even more alike global. Cipsoft have implemented spoof years ago yes! wait... what?? what the hell oh I get it HAHAHA I'm high, sorry
  16. gudan garam

    Feature Spoof system

    Well, I'd imagine they'd check that, holy. I guess otservlist is just a way of its owner to make a few bucks every month xD Also, there are a few resources here on otland that, if combined with this, could result in a fully working spoofing system.
  17. gudan garam

    Feature Spoof system

    I'm pretty sure otservlist would be able to detect that instantly. The status protocol will for sure send the spoofed amount of players online, but you can't forget the fact that there is an opcode on the status protocol that outputs the entire list of players online (their name and level)...
  18. gudan garam

    method "isItem" bug

    Thats not where the error is, the error lies in the script where you have this: local itemEx = { uid = target:isItem() and target:getUniqueId() or target:getId(), itemid = target:isItem() and target:getId() or 0 } However, the fuction isItem that you posted is not the one you are...
  19. gudan garam

    method "isItem" bug

    The amount of code you put there doesn't help to know what can be possibly wrong. Probably target is nil? Can you post the whole script?
Back
Top