Jump to content

Rainbow Stone for lycan


Go to solution Solved by SDlongju2,

Recommended Posts

Hi ,  why is not working this quest with lycan : 

quest perfect begin
	state start begin
		when 50512.use begin
			table.foreachi(special.active_skill_list[pc.get_job()+1][pc.get_skill_group()],function(r,skill) pc.set_skill_level(skill,59) end)
			chat("You have Perfect now")
			item.remove()
		end
	end
end

I mean it works with everything why wolf isnt workig i dont see in the code warrior or ninja defined so it should work for everything

Link to comment
Share on other sites

  • Solution

Solution by : Mihai ( Discord: Mihai#8938 )

Go to : /share/locale/?????/quest/

Open questlib.lua

Line special.active_skill_list = {

After the last :    

{
        {91, 92, 93, 94, 95, 96},
        {106, 107, 108, 109, 110, 111},
    },

You add : 

	{
        {170, 171, 172, 173, 174, 175},
        {170, 171, 172, 173, 174, 175},
    },

And it should be like :

special.active_skill_list = {
    {
        { 1, 2, 3, 4, 5},
        { 16, 17, 18, 19, 20},
    },
    {
        {31, 32, 33, 34, 35},
        {46, 47, 48, 49, 50},
    },
    {
        {61, 62, 63, 64, 65, 66},
        {76, 77, 78, 79, 80, 81},
    },
    {
        {91, 92, 93, 94, 95, 96},
        {106, 107, 108, 109, 110, 111},
    },
	{
        {170, 171, 172, 173, 174, 175},
        {170, 171, 172, 173, 174, 175},
    },
}

 

  • Good 1
Link to comment
Share on other sites

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.