Jump to content

Simple help


Go to solution Solved by Anyone,

Recommended Posts

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. hryhnq.png

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?

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Replies 9
  • Created
  • Last Reply

Top Posters In This Topic

  • Bronze
7 hours ago, Constantinos said:

What does that have to do with the way that the weapons will be shown? What i wanted to say is , i want the weapons in the quest , to show themselves horizontally  (next to each other) , not vertically ( like shown in the picture) 

From the client you change them not from the server ..

Link to comment
Share on other sites

  • 9 months later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.