Hello community , i have encountered this small problem while creating a smiple quest . I'm using say_item_vnum(***) function but when i place it two times , the items are not next to each other.
Here is my code : quest herowep begin
state start begin
when letter begin
send_letter("Hero Weapon")
end
when info or button begin
say("This quest will give you a")
say("starting weapon to help you")
say("level up quickly, it is not the best")
say("but it's something for now..")
say("Choose wisely.")
say_item_vnum(269)
say_item_vnum(3009)
local event = select("One hand weapon","Two Hand Weapon","Close")
if event == 1 then
pc.give_item2("269", 1)
elseif event == 2 then
pc.give_item2("3009",1)
elseif event == 3 then
return
end
send_letter("Hero weapon")
end
end
end
I want the function " say_item_vnum" to be next to each other , how can i do that?