• 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 for query: reward chest

  1. Simonalina

    Scripter looking for scripter to boss reward system TFS 1.3

    ...loot. (if the party has most EXP taken from it) and if you are NOT in party and get most exp ofcourse you get it. (i tried this "Reward Chest System" but didnt get it to work on my TFS 1.3) so im thinking if there is a way to do like this instead.. (if you can help me with out with...
  2. Mateus Robeerto

    [TFS 1.4.2] Reward Chest System with Common, Uncommon, Rare, Very Rare, Always Available Rarities

    Mateus Robeerto submitted a new resource: [TFS 1.4.2] Reward Chest System with Common, Uncommon, Rare, Very Rare, Always Available Rarities - reward chest Read more about this resource...
  3. mirak sebata

    chest making

    hi all, i have a question i need to make a reward chest for quests, how can i do this i putted action id and unique id and it doesnt work, i want to recieve equipment or anything, pls help thanks
  4. silveralol

    Lua Reward Chest creaturescript

    hello folks, I want make a real reward chest system, I have the c++ stuff... now I need make the creaturescript how I can start? function onKill or onDeath ? I need to check if are in the array of the bosses my idea to create the loot and send to player is: target:setDropLoot(false) then I'll...
  5. Thinkey

    TFS 0.3.6 Chest/quest problem

    Hello, I got a issue on my server that when i add a unique id in a chest in RME and start server i dont get any reward when i click the chest ingame.... Sry if that wasnt understandable. Regards, Chris
  6. Sigoles

    TFS 1.X+ Clean Reward

    This code dont store items in reward chest if you have an item that is there for 7 days or more, however it is don't storing all the others new items as well. It was for him to just not store the old items and save the new ones. does anyone know how to fix it? tfs 1.2 if (!rewardList.empty())...
  7. cbrm

    Feature Reward Chest & Boss Reward [TFS 1.2]

    ...openContainer = myDepotLocker; player->setLastDepotId(depot->getDepotId()); } else { openContainer = container; } For: //reward chest and depot container if (item->getID() == ITEM_REWARD_CHEST) { DepotLocker* myRewardChest = player->getRewardChest()...
  8. Nigtwisj

    Quest chest problems

    So i have these chests that i want to give items. But when i open them it opens the chest and gives me the items basicly duplicating the rewards This is how my chests are set up. And this is what happens when i open them ingame
  9. V

    Reward Chest 1.2tfs

    Hello I have problem with my reward system, when i kill a monster i cant open it, just says "you are not owner" somebody can help me ? :)
  10. L

    Chest Quests BUG

    Hello, I've have got a BIG problem. Started my server a while ago, and today ill found a BIIIG problem: The first day on the OT when you did quests you earned the reward that's you edited in the chest. BUT today when someone did the quest he got a "Chest" insteed of a item:S Here you have...
  11. N

    QuestLog - How to add to chest?

    ...nothing on that list. <quest name="Desert Dungeon Quest" startstorageid="3901" startstoragevalue="1"> <mission name="Reward Chest" storageid="9159" startvalue="1" endvalue="1"> <missionstate id="1" description="You were rewarded with Ankh, Magic Light Wand, Ring...
  12. V

    Standing on Quest Chests!!!

    Hey guys, People are able to stand on top of a few quest boxes on my server in the Svargrond Arena reward room. At first I thought there was an issue with my "walkback.lua" however every other chestbox is fine and people can't walk ontop of them. Even teh chest reward boxes for the warlord...
  13. Tbol

    Chest that gives premium account

    Hello, im using this chest so im thinking it would be nice to add like instead if items toit give premium x days. Im using this chest code local storage_id = 2550 local rewards = { [1] = {chest_uid = 1587, reward_id = 1536, reward_count = 1}, [2] = {chest_uid = 1588, reward_id = 1531...
  14. N

    Chests don't give me what I put in...

    Hey, my chests won't give me what I put the reward to be, for example... one of my chests has a spoon in it... and when you (use) the chest, it gives a small amethyst. The action ID is 2000 like the guides I have read said, and the unique ID is random number Why is this? It also happens...
  15. Itutorial

    Action Quest Chests on Steroids TFS 1.2

    Strutz made a good script for this but I noticed there were some things people wanted implemented that he never got around to. What you can do with this: -Anni like chests -Quest required chests -Level required chests -Item rewards -Random item rewards -Exp rewards -Outfit/addon rewards -Mount...
  16. SlayingWorld

    Solved About quest chest using TFS 1.2 system!

    Okay so yes, i have searched first before asking. But whenever i add a chest and use the UID and insert the items i want to reward, the chest is moveable. What id do you guys use on chests so they wont be moveable. Or am i doing something wrong?
  17. E

    Simple Daily Reward Chest

    I have taken this script from @alexv45 Hellgrave release, I don't know who made it. It works well on canary/otx local DailyChest = Action() local config = { storage = 45392, exstorage = 40822, days = { ["Monday"] = { {itemid = XXXX, count = {1, 2}} --...
  18. XaTaR

    [Request] Chest[Quest] how to add tutorial!

    i have made a quest and then reward the chests... how i can put items there??? unique id action id etc... [its my custom quest]
  19. BulawOw

    quest chest question

    how can u check free unique id cause when i try action id 2000 and random unique id always i get ground pile of wood or something not the reward from chest so there is the question how to check all used unique id's
  20. adrianootavares

    Random Chest how to put StorageValue

    local rewards = { { item = 9019, count = 1 }, { item = 5809, count = 1 }, { item = 8982, count = 1 } } function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) local random = math.random(1, #rewards) player:addItem(rewards[random].item, rewards[random].count)...
Back
Top