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

    [TFS 1.3] How to Remove Words from Players When Say a TalkAction

    add return false before the last end of talkactions/online.lua I'm not sure if there's something you can change in talkactions.xml to avoid going through each file
  2. R

    TFS 1.2 Frag remover doesnt remove stored kills

    local cooldown = 5 --time in seconds function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) if player:getExhaustion(Storage.FragRemoverCooldown) then player:sendCancelMessage("You are on cooldown.") return false end if player:getSkull() ~=...
  3. R

    TFS 1.2 Frag remover doesnt remove stored kills

    local cooldown = 5 --time in seconds function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) if player:getExhaustion(Storage.FragRemoverCooldown) then player:sendCancelMessage("You are on cooldown.") return false end if player:getSkull() ~=...
  4. R

    TFS 1.2 Frag remover doesnt remove stored kills

    This would kick the player, so maybe check if player is currently pzlocked before being able to use the item local cooldown = 5 --time in seconds function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) if player:getExhaustion(Storage.FragRemoverCooldown) then...
  5. R

    TFS 1.2 Frag remover doesnt remove stored kills

    hmm probably works after relogging, so player:setSkullTime(0) should do the trick... but looks like you don't have that function (or it doesn't exist?)
  6. R

    TFS 1.2 Frag remover doesnt remove stored kills

    I mean, if you actually want them to be removed from the database you could use local cooldown = 5 --time in seconds function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) if player:getExhaustion(Storage.FragRemoverCooldown) then player:sendCancelMessage("You are on...
  7. R

    Lua [TFS 0.3.7] Item that completely fills mana and life

    Should look something like this, I can't recall if those are the function names, but you can figure that out function onUse(cid, item, fromPos, itemEx, toPos) doCreatureAddHealth(cid, getCreatureMaxHealth(cid) - getCreatureHealth(cid)) doCreatureAddMana(cid, getCreatureMaxMana(cid) -...
  8. R

    Looking for tibia server

    The server was for OP, not suggesting any servers to you since I'm sure you'd still be shitposting about it anyway. Haha, you can't really call someone young when you're obviously still in high school. Anyway, once you grow up you'll probably cringe at how you behaved, been there done that...
  9. R

    Looking for tibia server

    https://otland.net/threads/usa-custom-world-dracona-archlight-online-new-season-launches-september-4th-mobile-client-completely-fresh-meta.261347/ Jesus someone's a little angry boi, someones got issues at home with mommy and daddy
  10. R

    Looking for tibia server

    are you shitposting or do you not realize he's asking for custom servers that are currently online so he can play?
  11. R

    RevScripts [TFS1.X+] Achievements talkactions script?

    local talkaction = TalkAction("/addach") function talkaction.onSay(player, words, param) if param == "" then return true end local ach local cid = player:getId() local split = param:splitTrimmed(",") if not split[2] then return...
  12. R

    RevScripts [TFS1.X+] Achievements talkactions script?

    Remove type from line #2 and #39
  13. R

    otservlist owner

    @xinn He's not very active though
  14. R

    TFS 1.X+ Problem with check player storage by npc

    https://otland.net/threads/how-to-display-code-properly-in-your-post.168098/
  15. R

    This happend to anyone else?

    Good point, I had not seen the hats since I had them disabled but now it all makes sense
  16. R

    This happend to anyone else?

    ??? Account > Preferences > Disable holiday styling hahahahaha so funy and le random xDdDd almost belif u /s
  17. R

    AAC Znote AAC change website from using color background to an image?

    Ideally you'd place it at the top (below the :root object) since its style for the body tag, and url would be the path to the image, if you put the background in the img folder in the parent directory (layout/img/background.png) the css should look like this body{ background...
  18. R

    AAC Znote AAC change website from using color background to an image?

    styles/style.css do something like this body { background: url('img path or img url here'); }
  19. R

    TFS 1.X+ TFS 1.3 remove skill without sql?

    looks like there is a function in player.lua#297 that does that function Player.addSkillLevel(self, skillId, value) local currentSkillLevel = self:getSkillLevel(skillId) local sum = 0 if value > 0 then while value > 0 do sum = sum +...
Back
Top