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

Premium User
Premium User
Joined
Mar 21, 2024
Messages
44
Solutions
1
Reaction score
21
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