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

Quest NPC... Will give REP++

skrm

New Member
Joined
Mar 15, 2008
Messages
67
Reaction score
0
hey,
I need to make a Brotherhood/Knightmare npc.
You talk to this npc, and surrender 3000 essence, and you receive the outfit of choice with both addons, + ability to make documents for other players (as in rl tibia).

Ive tried doing it myself, and ive come across this problem in the script:
Code:
local outfit_node = keywordHandler:addKeyword({'brotherhood'}, playerBuyAddonNPC, {premium = true, cost = 0, items = {{6500,3000}}, outfit_female = 279, outfit_male = 278, addon = 1, addon = 2, storageID = 10052, storageID = 10039, storageID = 10040, storageID = 10049})
    outfit_node:addChildKeywordNode(yesNode)
    outfit_node:addChildKeywordNode(noNode)

It wont let me set multiple storage id's, or let me get both addons. it takes the later of the addon or storage id's and leaves the rest out, so for this the only pieces getting used are "addon = 2" and "storageID = 10049", while all other storage and addon's arnt getting done.

anyone know how to fix this?


Many many thanks to whoever can make this script
 
Last edited:
Back
Top