• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. aqubjukr

    gesior acc

    Are you using /path/server/config.lua ? Bcos the correct would be: /path/server/
  2. aqubjukr

    Reward Time System

    Just adapt the function above and use player:getIp() to create a limit
  3. aqubjukr

    Remove Storage Value After 30 days

    But you've changed the movement script too? The correct one to work with os.time () would be: if getPlayerStorageValue(cid, 30009) >= os.time() then
  4. aqubjukr

    Remove Storage Value After 30 days

    It doesn't count in the database? Because if you already have a script, such as a movement that uses the storage, you'll need to exchange it for: to >= os.time() (if player have the storage), when use getStorage or < os.time() (if player doesn't have the storage)
  5. aqubjukr

    Remove Storage Value After 30 days

    You need to use os.time(), like: setPlayerStorageValue(cid, 30009, os.time() + 30 * 24 * 60 * 60)
  6. aqubjukr

    Small Problem with the Codes here

    @alltus If the problem has been solved, mark Evil Punker's post as the best answer. ;)
  7. aqubjukr

    Small Problem with the Codes here

    lol, I thought that all tfs1.x + didn't accept this anymore. So much, I took a while to convert all my scripts ... 😭
  8. aqubjukr

    Small Problem with the Codes here

    Storages can be set with? 🧐 setPlayerStorageValue(cid, 60001, 1) I think is only with: player:setStorageValue(cid, 60001, 1)
  9. aqubjukr

    TFS 0.X how to remove smoke effect from exhaust

    But even after that, I would have to remove the constant from all scripts that contain it. As I said, I just said an easier way to fix it.
  10. aqubjukr

    TFS 0.X how to remove smoke effect from exhaust

    I think the easiest method, would be to make the client's "CONST_ME_POFF" effect transparent (in client). Otherwise, you will have to make changes in all server's source.
  11. aqubjukr

    TFS 1.X+ Monster attack damages other monsters

    I was using the wrong param :rolleyes:, the correct one would be: onTargetTile
  12. aqubjukr

    TFS 1.X+ Npc who talks only to man or woman

    if player:getSex() == 1 then -- PLAYERSEX_MALE if player:getSex() == 0 then -- PLAYERSEX_FEMALE Put in the start of part where you want to just talk with a specific sex. Example: (for male) if player:getSex() == 1 then [YOUR SCRIPT HERE] end
  13. aqubjukr

    [REMERES] [HELP] turn down monster position

    Double click in monster, in remere’s, and rotate to south
  14. aqubjukr

    [BOSSES] Lever script

    Maybe you would be putting the name of monster wrong, in getName():lower() you need to write the name in lower case, it could be that. Btw, good for you if it worked ^^
  15. aqubjukr

    [ACTION][HELP] How to set a specific storage and time

    This script is using the following setstorage line: nplayer:setStorageValue(Storage.CultsOfTibia.Humans.bossTimer, os.time() + 20 * 60 * 60 * 1 * 1000) Only change to: nplayer:setStorageValue(8091, os.time() + 3 * 60 * 60)
  16. aqubjukr

    3 hours green stamina

    In data/events/player.lua if configManager.getBoolean(configKeys.STAMINA_SYSTEM) then useStamina(self) local staminaMinutes = self:getStamina() if staminaMinutes > 2400 and self:isPremium() then exp = exp * 1.5 self:setStaminaXpBoost(150)...
  17. aqubjukr

    [BOSSES] Lever script

    Sorry, but I can't think, how to do it now. My scripts always use this parameter.
  18. aqubjukr

    [BOSSES] Lever script

    This is an error in the script, not in the part of cleaning the monsters 🙃 I didn't see all script, only add to remove the boss when use the item.
  19. aqubjukr

    [BOSSES] Lever script

    Yep !
  20. aqubjukr

    TFS 1.X+ [MOVEMENTS] New Players can't access

    Maybe... doPlayerSendCancel(cid, "You need to wait " ..(getPlayerStorageValue(cid, 8089) - os.time())/60 .." minutes to access this boss again.") If the code stop working when the player get the storage change if getPlayerStorageValue(cid, 8092) > 1 then To: if getPlayerStorageValue(cid...
Back
Top