• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.
Resource icon

TFS 1.3 Quest Chest with item and level and vocation check

Paxiz

Member
Joined
Mar 21, 2024
Messages
48
Solutions
1
Reaction score
24
Location
~pl /opt
Paxiz submitted a new resource:

TFS 1.3 Quest Chest with item and level and vocation check - advanced quest chest

Script vocationChest_with_addLevel.lua in your actions.
Code:
local AID = 59996 -- action to your chest
local STORAGE_ID = 93930593 -- storage id your chest

local rewards = {
    [SORCERER] =  {items = {itemid, itemid, itemid}, count = 10, extra = itemid},
-- count for extra itemid
    [DRUID]     = {items = {itemid}, count = 10, extra = itemid},
    [PALADIN]   = {items = {itemid}, count = 10, extra = itemid},
    [KNIGHT]    = {items = {itemid}, count = 10, extra = itemid},
}

function...

Read more about this resource...
 
Back
Top