Jump to content

Quest - Level UP Give Item


ZacqooLeaven

Recommended Posts

  • Premium

quest itemmoney begin   
    state start begin
        when levelup with pc.get_level() == 90 begin
            chat(" You have 90 level ! ")
            pc.change_money(100000)
            pc.give_item2(19, 1)
        end
    end
end

If you're going to do something, then do it right.

Link to comment
Share on other sites

  • Premium

u can do it in your source :D

~~ Mein System ~~

Prozessor: Intel® Core™ i7-4790K
Mailboard: Gigabyte GA-Z97X-Gaming 3
Arbeitsspeicher: G.Skill 8GB KIT PC3-17000 DDR3-2133 CL10 Sniper
Festplatte/n: 512GB SSD / 1TB HDD
Grafikkarten: 2x Gigabyte Radeon HD 6970 OC

Kühlung: EKWB Wasserkühlung

 

 

Link to comment
Share on other sites

My version :D

 

Checking level + race + other items

 

https://metin2.download/picture/XnGNYPCTq3Wtm2TmqhtLh1UpRM1quI4m/.png

 

quest item_give begin
	state start begin
		when levelup begin
			local table_vegas =
				{   --Level -- Warrior -- Ninja -- Sura -- Shaman 
				   [9] = {11219, 11419, 11619, 11819},
					[18] = {11229, 11429, 11629, 11829},
					[26] = {11239, 11439, 11639, 11839},
					[34] = {11249, 11449, 11649, 11849},
					[42] = {11259, 11459, 11659, 11859},
					[48] = {11269, 11469, 11669, 11869},
					[54] = {11279, 11479, 11679, 11879},
					[61] = {11289, 11489, 11689, 11889},
				}
			pc.give_item2(table_vegas[pc.get_level()][pc.get_job()+1])
		end
	end
end

 

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

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.