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

  1. C

    [GitHub] OpenTibia 10.98, Raspberry Pi, Docker

    Just wanted to say thanks for the release. You were able to do what I wish I could. Since Rpis are expensive now due to the shortage do you think your setup would work on a tinkerboard? I have one laying around
  2. C

    TFS 1.X+ Trying to create custom quest.

    Worked like a charm. Hopefully I can hack together the rest of the quest. Thank you thank you thank you so much.
  3. C

    TFS 1.X+ Trying to create custom quest.

    Fixed it. Line 60 needed cid 1 1656210602 Around line 45-49 if a male is responding is there a way to make it jump to line 53 for a male only response to meet? I found this code that gives the correct gender to the character but I am having trouble implementing it. function...
  4. C

    TFS 1.X+ Trying to create custom quest.

    Thats what I was looking for! Thank you. Im getting a fail point at xantera. They do not respond with the keyword but it does apply the tracker for that part of the quest. Also the Local voice isnt working to initiate the conversation 21:31 test: You're her? No way. I dont believe it. What...
  5. C

    TFS 1.X+ Trying to create custom quest.

    So you CAN use letters BUT it will break. It just gives a storage value of 0 for the key so if you use letters on 2 quest it will break it. Thank you for helping me out. This server (if you havent guessed) has a little bit of a history coming with it. Are you aware of a way to make it show up in...
  6. C

    TFS 1.X+ Trying to create custom quest.

    I think I see how it's working. I'll give it a try when I get to the computer. Thank you for taking the time to help me. Do storage values need to be numerical?
  7. C

    TFS 1.X+ Trying to create custom quest.

    Im trying to implement a custom quest on a 1.4 server. I cant find much documentation on the PlayerStorageKeys usage and im pretty dumb with code. This is what I have so far but its giving me an error. I had the NPC working okay as just a basic chat NPC but trying to make it so the NPC...
  8. C

    Compiling (SOLVED) [Warning - Spawns::startup]

    The problem: While they were not showing up in the spawns xml they did show up in the map editor. Some monsters were being spawned into walls or safe zone. The Solution: Open the map editor and go to the spawns with CTRL+G and take a good look in walls or protection zones. If a monster is in...
  9. C

    Compiling (SOLVED) [Warning - Spawns::startup]

    Im having a problem where the server is giving me errors when loading. It is saying that it can not load these few monsters. I have cleaned everything out of the spawn XML that was not relevant but these monster and locations do not show up in the XML. Is there somewhere else that I can find...
  10. C

    Lua [tfs1.4] Call method addGreetMessage and index global 'Storage' failing

    I have been working on this for DAYS and was going to release it when done lol. You beat me to it man thank you so much
  11. C

    Lua [tfs1.4] Call method addGreetMessage and index global 'Storage' failing

    It may be based on that but I can't remember exactly where I got it. Once I finish fixing the wife's car I'll give the fix a go and see what happens
  12. C

    Lua [tfs1.4] Call method addGreetMessage and index global 'Storage' failing

    I am working on converting a data pack to work with TFS 1.4 I am getting a few errors that I have not be able to solve. I understand that the NPC scripts are trying to call functions but not returning the values they need. Error 1 Lua Script Error: [Npc interface] data/npc/scripts/Chondur.lua...
  13. C

    Lua SOLVED [TFS 1.4] attempt to call method 'titleCase' (a nil value)

    SOLVED On lined 24-30 of data/npc/lib/keywordhandler.lua I added the following. function titleCase(str) local result = string.gsub(str, '(%a)([%w_\']*)', function(first, rest) return first:upper() .. rest:lower() end) return result end
  14. C

    Lua SOLVED [TFS 1.4] attempt to call method 'titleCase' (a nil value)

    First off thank you for taking the time to respond! Im kind of understanding but not 100% Your saying its calling a function but but returning nothing? I was able to track down where title case was defined. Its in string.lua Here is the Function? string.titleCase = function(str) return...
Back
Top