Jump to content

How can I change quest?


Recommended Posts

  • Active Member

quest start_quest begin
    state start begin
        when 15051.chat."Try  " begin
            say_title("NPC:")
            say("")
            say("You need these items.")
            say_item_vnum(50419)
            say_item_vnum(50402)
        end
    end
end

Edited by ReFresh

I'll be always helpful! ? 

Link to comment
Share on other sites

add this function in questlib.lua

Spoiler

function say_show_item_haies(vnum1,vnum2)
    say("[INSERT_IMAGE image_type;item|idx;"..vnum1.."|index;".. 0 .."|total;".. 1 .."]".."[INSERT_IMAGE image_type;item|idx;"..vnum2.."|index;".. 0 .."|total;".. 1 .."]")
end

add this word

Spoiler

say_show_item_haies

in quest_function

 

and edit your quest to

Spoiler

quest start_quest begin
    state start begin
        when 15051.chat." Try  " begin
            say_title(" NPC:")
            say("")
            say(" Postoupíme v trénování zručnosti. ")
            say("Dones mi tedy nepoškozené tyto předměty:")
            say_show_item_haies(50419,50402)
            say(" Máš čas do dnešní půlnoci.Doufám, že to do té doby zvládneš. ")
        end
    end
end

 

Link to comment
Share on other sites

  • Active Member
36 minutes ago, ahmedhaies said:

add this function in questlib.lua

  Hide contents

function say_show_item_haies(vnum1,vnum2)
    say("[INSERT_IMAGE image_type;item|idx;"..vnum1.."|index;".. 0 .."|total;".. 1 .."]".."[INSERT_IMAGE image_type;item|idx;"..vnum2.."|index;".. 0 .."|total;".. 1 .."]")
end

add this word

  Hide contents

say_show_item_haies

in quest_function

 

and edit your quest to

  Hide contents

quest start_quest begin
    state start begin
        when 15051.chat." Try  " begin
            say_title(" NPC:")
            say("")
            say(" Postoupíme v trénování zručnosti. ")
            say("Dones mi tedy nepoškozené tyto předměty:")
            say_show_item_haies(50419,50402)
            say(" Máš čas do dnešní půlnoci.Doufám, že to do té doby zvládneš. ")
        end
    end
end

 

Thank you very much man. I will try it, when I will be at home.

  • Love 1

I'll be always helpful! ? 

Link to comment
Share on other sites

  • 2 weeks later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.