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

    NPC Grizzly Adams (Killing in the name of... Quest) All tasks, more real-tibia

    Any thoughts on getting this to work? Thanks :D
  2. T

    Doors with 3 second timer?

    Is there a way to give doors a cooldown timer much like stairs? So when a player opens or closes a door they can not open or close for a certain number of seconds? I have rooms with harder monsters that are being abused via doors... this should counter that problem :P Thanks -Tys
  3. T

    NPC Reset System

    The reset name works awesome! Thanks so much! Another question. Should this not reset the capacity of a player? --[[Script made 100% by Nogard, Night Wolf and Linus. You can feel free to edit anything you want, but don't remove the credits]] config = { minlevel = 0, --- Level needed to...
  4. T

    NPC Grizzly Adams (Killing in the name of... Quest) All tasks, more real-tibia

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:OnCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:OnCreatureDisappear(cid) end...
  5. T

    NPC Grizzly Adams (Killing in the name of... Quest) All tasks, more real-tibia

    hmmm, im not sure how to do that or what it is really :P
  6. T

    NPC Grizzly Adams (Killing in the name of... Quest) All tasks, more real-tibia

    Hey there, im having some trouble getting this script to work :P Here is there error: Lua Script Error: [Npc interface] data/npc/scripts/brynhild.lua:onCreatureAppear data/npc/scripts/brynhild.lua:6: attempt to call...
  7. T

    TFS 1.1 Party Exp

    Update: Here is the working script :D Thanks to Codex NG and MatheusMkalo! TFS 1.1 Place this in data/event/scripts/player.lua -- Party Experience Bonus local membersList = getPartyMembers(self:getId()) if(membersList == nil or type(membersList) ~= 'table' or #membersList <=...
  8. T

    TFS 1.1 Party Exp

    I'm studying videos now, starting at the beginning lol. I should be able to contribute rather than leech from this community haha. OK, I have changed the "return exp" In the mean time I modified the script to bypass the two lower "locals" and just ran this local membersList =...
  9. T

    TFS 1.1 Party Exp

    Thanks i've tried this out: -- Apply experience stage multiplier exp = exp * Game.getExperienceStage(self:getLevel()) -- Party Experience Bonus local membersList = getPartyMembers(self:getId()) if(membersList == nil or type(membersList) ~= 'table' or #membersList <=...
  10. T

    TFS 1.1 Party Exp

    Hmmm, I have this: -- Party Experience Bonus local membersList = getPartyMembers(cid) if(membersList == nil or type(membersList) ~= 'table' or #membersList <= 1) then doPlayerSendCancel(cid, "No party members in range.") return false end local affectedList =...
  11. T

    TFS 1.1 Party Exp

    :/ How does this look? function Player:onGainExperience(source, exp, rawExp) if not source or source:isPlayer() then return exp end -- Soul regeneration local vocation = self:getVocation() if self:getSoul() < vocation:getMaxSoul() and exp >= self:getLevel() then...
  12. T

    TFS 1.1 Party Exp

    Hi there, I am trying to modify the amount of exp gain based on the # of players in a party, to promote group hunting, so the higher the # of players in a party the higher the exp. Can anyone help me find this in TFS 1.1?
  13. T

    Shop NPC with Dynamic Pricing?

    Hi there! I am pretty bad at the installation process. Can anyone tell me how I can put this into the game? Whats an example of how it would work with an npc? Thanks -Tys
  14. T

    Bonus exp based on party size?

    Hmm I am having some trouble finding this is TFS 1.1 can anyone point me in the right direction?
  15. T

    Bonus exp based on party size?

    Hi there, Does anyone know of a way to give bonus exp based on the number of players in a party? Thanks -Tys
  16. T

    NPC Reset System

    Correction. It does work. The problem I was having was only because I hadn't fully left my account. (the character display was still up). When I logged in today my character, with the altered name was on the list and able to log in. However, there is a slight problem! When getting reset for...
  17. T

    NPC Reset System

    Holy shit man! Something definitely changed something haha, and I think it changed the thing we wanted it to :P I tested it with the same character and it went to the "you will be logged out in 3 seconds" screen. Then when I go to log back into that same character it says "The user name or...
  18. T

    NPC Reset System

    Much the same i'm afraid! Dash has logged in. Dash has logged out. [Error - mysql_real_query] Query: UPDATE `players` SET `name` = Dash VIII WHERE `players`.`id`= 14; Message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right...
  19. T

    Adding soul points on level gain.

    I am trying to make soul points another resource much like HP or MANA, This doesnt seem to be working when I gain levels. Any ideas? <vocation id="0" clientid="0" name="none" description="none" gaincap="0" gainhp="5" gainmana="5" gainhpticks="5" gainhpamount="5" gainmanaticks="6"...
  20. T

    NPC Reset System

    Sorry for the double post, This is interesting though, when i tried to reset with another character ive tested with before i cam across this: Dash has logged in. Dash has logged out. [Error - mysql_real_query] Query: UPDATE `players` SET `name` = Dash VII WHERE ` players`.`id`= 14; Message...
Back
Top