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

    What's the current state of Tibia?

    I just noticed there's a thread similar to this - Oops! :) Another question: What server would you recommend? I have some characters on Amera.
  2. Candlejack

    What's the current state of Tibia?

    I played during 7.4 and quit around 8.9. I was wondering what the current state of Tibia is with all the updates and what not. I feel that Tibia has left its sandbox roots that originally drew me too it. What do you think? Also, do you think someone who enjoyed its sandboxness like me would...
  3. Candlejack

    TibiaLife - Cops vs Robbers vs Civilians. 40+ New Features! Drugs,Robbery,Jail,Bounties,Mining,etc.

    Lol! Thank you for the feedback! Just added a feature today that allows players to *hide* 1 item so cops can't see it when they search them. So if a cop stops you and you have a few drugs on you you can quickly hide it on your body. It also isn't removed when they are sent to jail. This way...
  4. Candlejack

    NPC Tutor Shop - An NPC shop only Tutors or GM's can use!

    It was very useful in my OT TibiaLife. In my OT Tutors are "Cops" and enforce Laws. They could use this shop to buy special items to send players to jail, handcuff players or tase them if they run away. As a result they'd collect bounty money when they stopped criminals to buy even better "cop...
  5. Candlejack

    NPC Tutor Shop - An NPC shop only Tutors or GM's can use!

    I'm still a novice at scripting. But I managed to conjure this up. This is a shop that only allows people of a certain group id to use it. Change the variable group to whatever you want. Right now it's set at Tutors. Tested on TFS 0.3.6. local keywordHandler = KeywordHandler:new() local...
  6. Candlejack

    Solved Noob LUA Question about Shop NPC :) tfs 0.3.6 [solved]

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function...
  7. Candlejack

    TibiaLife - Cops vs Robbers vs Civilians. 40+ New Features! Drugs,Robbery,Jail,Bounties,Mining,etc.

    I am - This is mainly because this was a hobby. I was going to just release scripts to the public instead of my own OT. Things have changed since then. I will probably spend a few days converting this whole project to a new version. Either way, I wanted the communities opinion about this...
  8. Candlejack

    TibiaLife - Cops vs Robbers vs Civilians. 40+ New Features! Drugs,Robbery,Jail,Bounties,Mining,etc.

    Alpha 1.0 Teaser This video doesn't do much justice for showing off the cool features of this OT - But it's better than nothing :) What is TibiaLife? TibiaLife is a Role Play game where the fun comes from player interaction. As you enter into the game world your first goal is to generate...
  9. Candlejack

    A shop only Tutors can use?

    I am using TFS 0.3.6 - I changed GetPlayerAccessLevel to GetPlayerAccess since it seems to do the same thing but it doesn't work. TFS crashes. Is this code right? if getPlayerAccess(cid) == 3 then local shopModule = ShopModule:new() npcHandler:addModule(shopModule)...
  10. Candlejack

    A shop only Tutors can use?

    I've been trying to do this myself for a few days and can't figure it out. Could someone help me make an NPC that's a shop that only a Tutor can use?
  11. Candlejack

    Accessing storage value from xml?

    Is there a way to access storage values in an XML file? Like from an NPC?
  12. Candlejack

    LUA code to add logout block effect?

    Is there an LUA function I can use in my code so when an object is used on a player it makes them unable to log out? Much like when you attack a monster you can't log off. I already have the code where I can use an object on a player. But I need to LUA function to where I can add that effect to...
  13. Candlejack

    Solved Noob LUA Question about Shop NPC :) tfs 0.3.6 [solved]

    Bump - Nevermind. I solved it!
  14. Candlejack

    Solved Noob LUA Question about Shop NPC :) tfs 0.3.6 [solved]

    Basically I don't want the player to be able to trade with an NPC unless this storage variable is set to 1. This isn't working! Any thoughts? Thank you! local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local...
  15. Candlejack

    Lua LUA Code to change players name temporarily?

    Is there a way so that when a player equips a certain helmet his name changes as long as it's on? Could someone point me in the right direction? I can't seem to find a function for this or know if it's even possible :)
  16. Candlejack

    Make player look like dead body temporarily

    Thanks, man! It works great. You really helped me out!
  17. Candlejack

    Make player look like dead body temporarily

    Sweet! That works perfectly. Thank you so much!! Do you know of a function to make the player not move for a certain amount of time? While he's looking dead I don't want him to be able to glide around :) lol
  18. Candlejack

    Make player look like dead body temporarily

    Yes 0.3.6. This function happens after an object is used on the player
Back
Top