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

  1. D

    TFS 1.X+ Solo player unable to get credit for kill tasks.

    It isn't perfect, but I got it working well enough. It sometimes gives double credit to a party member and I haven't worked out how to fix it, but it works for solo or party. local function getKillers(creature, player) local killers = {} local timeNow = os.mtime() local...
  2. D

    Feature Reward Chest & Boss Reward [TFS 1.2]

    @Sopago I'm also experiencing the crashing after killing a boss and then a normal mob. Did you ever figure that out? TFS 1.3 followed all the directions for upgrading it to 1.3 and it is working. Generates loot in the chest, just crashes the server if you kill a mob, then a boss, or a boss then...
  3. D

    TFS 1.X+ Solo player unable to get credit for kill tasks.

    Hello all, I'm running a TFS 1.3 10.98 server. I was trying to figure out how to get onkill task credit to players in a party and found this thread where Sarah Wesker solved the problem. Using Sarah Wesker's script I was able to configure party task credit sharing for my killing in the name of...
  4. D

    Solved Talkaction dice roller scripting help

    Happens to us all! :D Tested the code and it is working great! Thanks so much Xikini! I was struggling trying to figure out how to rope some string.find together.
  5. D

    Solved Talkaction dice roller scripting help

    No alterations were made, I just copied it into notepad ++, saved as roll_dice.lua and edited the talkactions.xml with <talkaction words="/roll" script="roll_dice.lua" /> Did I make a mistake somewhere?
  6. D

    Solved Talkaction dice roller scripting help

    Getting an error in the server console while it is loading. [Warning - Event : : checkScript] Can not load script: scripts/roll_dice.lua data/talkactions/scripts/roll_dice.lua:17: '<name>' expected near '1'.
  7. D

    Solved Talkaction dice roller scripting help

    Testing now, thanks!
  8. D

    Solved Talkaction dice roller scripting help

    Hello all! I am attempting to run a D&D campaign using TFS 1.1 and have a talk action that can roll dice. I've managed to code together a simple dice roller that broadcasts the results of rolling a d20. function onSay(player, words, param) local value = math.random(1, 20) do...
Back
Top