Jump to content

Recommended Posts

hi guys this quest is notice all in chat when 1 player level up.

quest noticianivel begin       
        state start begin
                when levelup begin
                        notice_all(pc.get_name() .. " ha subido al nivel " .. pc.get_level() )
                end
        end
end 

i want same quest but from some level, example; level 90.

as would be?

Link to comment
https://metin2.dev/topic/3277-lvl-up-quest/
Share on other sites

quest noticianivel begin      
	state start begin
		when levelup begin
			local levels = {10,20,30,40,50,60,70,80,90,100}
			for i=1,table.getn(levels) do
				if pc.get_level() == x[i] then
					notice_all(pc.get_name() .. " ha subido al nivel " .. pc.get_level() )
				end
			end
		end
	end
end
  • Love 2
Link to comment
https://metin2.dev/topic/3277-lvl-up-quest/#findComment-21491
Share on other sites

quest noticianivel begin      
	state start begin
		when levelup begin
			local levels = {10,20,30,40,50,60,70,80,90,100}
			for i=1,table.getn(levels) do
				if pc.get_level() == x[i] then
					notice_all(pc.get_name() .. " ha subido al nivel " .. pc.get_level() )
				end
			end
		end
	end
end

Not work, in my server ir output lua error.

 

error.png

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
https://metin2.dev/topic/3277-lvl-up-quest/#findComment-21493
Share on other sites

quest noticianivel begin     
    state start begin
        when levelup begin
            local levels = {10,20,30,40,50,60,70,80,90,100}
            for i=1,table.getn(levels) do
                if pc.get_level() == levels[i] then
                    notice_all(pc.get_name() .. " ha subido al nivel " .. pc.get_level() )
                end
            end
        end
    end
end

Try now

  • Love 2
Link to comment
https://metin2.dev/topic/3277-lvl-up-quest/#findComment-21499
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

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.