Advertisement
Guest User

NPC

a guest
Feb 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.30 KB | None | 0 0
  1. local hannaConf = {
  2.     [1] = {
  3.         words = {"addon", "outfit"},
  4.         bigSVF = {[1045] = 1},
  5.         say = {"Pretty, isn't it? My friend Amber taught me how to make it, but I could help you with one if you like. What do you say?"},
  6.         setTopic = 1,
  7.     },
  8.     [2] = {
  9.         words = {"hat"},
  10.         allSV = {[1045] = 1},
  11.         say = {"Oh, you're back already? Did you bring a legion helmet, 100 chicken feathers and 50 honeycombs?"},
  12.         setTopic = 2,
  13.     },
  14.     [3] = {
  15.         getTopic = 1,
  16.         words = {"yes"},
  17.         say = {
  18.             "Okay, here we go, listen closely! I need a few things...",
  19.             "a basic hat of course, maybe a legion helmet would do. Then about 100 chicken feathers...",
  20.             "and 50 honeycombs as glue. That's it, come back to me once you gathered it!",
  21.         },
  22.         setSV = {[1045] = 1, [1033] = 1},
  23.         setTopic = 0,
  24.     },
  25.     [4] = {
  26.         getTopic = 2,
  27.         words = {"yes"},
  28.         removeItems = {
  29.             {itemID = 5890, count = 100},
  30.             {itemID = 5902, count = 50},
  31.             {itemID = 2480, count = 1},
  32.         },
  33.         say = {"Great job! That must have taken a lot of work. Okay, you put it like this... then glue like this... here!"},
  34.         setSV = {[1045] = 2},
  35.         addOutfitAddon = {[136] = 2, [128] = 2},
  36.         magicEffectsOnPlayer = {CONST_ME_MAGIC_BLUE},
  37.         setTopic = 0,
  38.     },
  39.     [5] = {
  40.         getTopic = {1, 2},
  41.         words = {"na", "no"},
  42.         say = "Then no.",
  43.         setTopic = 0,
  44.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement