Register for your free account! | Forgot your password?

You last visited: Today at 10:17

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Quest Ingots - Yang

Discussion on Quest Ingots - Yang within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Reply
 
Old   #1
 
qAleXso's Avatar
 
elite*gold: 0
Join Date: Feb 2012
Posts: 185
Received Thanks: 127
Quest Ingots - Yang

Hi, I created a quest for you:
This quest change your ingot Yang and vice versa.
Code:
---------------------------------
------Quest by C. Alexandru Sorin
------http://tgc-team.com--------
------TGC-Team.Com---------------
------Translator: RatedR203------
quest system_banca begin
	state start begin
		when login begin
			send_letter("Ingots - Yang")
		end
		
		when info or button begin
			say_title("Informations")
			say("Hello, we deal with change")
			say("of yang in ingot . Anyone who want to ")
			say("change yang in ingot is waited at us.")
			say("Change amount of 100 millions, 500 millions,")
			say("1 billion and 1.5 billions.")
			say("")
			say("So, what you want ?")
			local a = select("Change yang in ingot","Change ingot in yang", "Cancel")
			
			if a == 3 then
				send_letter("Ingots - Yang")
				return
			end
			
			if a == 1 then
				say_title("Change in ingots")
				say("What amount you want to change in ingot ?")
				local v = select("100.000.000 Yang","500.000.000 Yang","1 Billion","1.5 Billions","No one")
				if v == 5 then
					send_letter("Ingots - Yang")
					return
				elseif v == 1 then
					say_title("Confirm")
					say("Do you really want to change")
					say("100.000.000 Yang in a ingot ?")
					local q = select("Yes", "No")
					if q == 2 then
						send_letter("Ingots - Yang")
						return
						
					elseif pc.get_gold()<100000000 then
						say_title("Change 100.000.000")
						say("Nu ai 100.000.000 Yang.")
						send_letter("Ingots - Yang")
						return
					end
						say_title("Congratulations")
						say("Congratulations, transaction had successful.")
						say("Verify in inventar.")
						say("If appear problems, don't hesitate")
						say("to contact us on forum")
						pc.give_item2(80003, 1)
						pc.change_gold(-100000000)
						send_letter("Ingots - Yang")
				elseif v == 2 then
					say_title("Confirm")
					say("Do you really want to change")
					say("500.000.000 Yang in a  ingot ?")
					local q = select("Yes", "No")
					if q == 2 then
						send_letter("Ingots - Yang")
						return
						
					elseif pc.get_gold()<500000000 then
						say_title("Change 500.000.000")
						say("You don't have 500.000.000 Yang.")
						send_letter("Ingots - Yang")
						return
					end
						say_title("Congratulations")
						say("Congratulations, transaction had successful.")
						say("Verify in inventar.")
						say("If appear problems, don't hesitate")
						say("to contact us on forum")
						pc.give_item2(80004, 1)
						pc.change_gold(-500000000)
						send_letter("Ingots - Yang")
				elseif v == 3 then
					say_title("Confirm")
					say("Do you really want to change")
					say("1.000.000.000 Yang in a ingot ?")
					local q = select("Yes", "No")
					if q == 2 then
						send_letter("Ingots - Yang")
						return
						
					elseif pc.get_gold()<1000000000 then
						say_title("Change 1.000.000.000")
						say("You don't have 1.000.000.000 Yang.")
						send_letter("Ingots - Yang")
						return
					end
						say_title("Congratulations")
						say("Congratulations, transaction had successful.")
						say("Verify in inventar.")
						say("If appear problems, don't hesitate")
						say("to contact us on forum")
						pc.give_item2(80005, 1)
						pc.change_gold(-1000000000)
						send_letter("Ingots - Yang")
				elseif v == 4 then
					say_title("Confirm")
					say("Do you really want to change")
					say("1.500.000.000 Yang in a ingot ?")
					local q = select("Yes", "No")
					if q == 2 then
						send_letter("Ingots - Yang")
						return
						
					elseif pc.get_gold()<1500000000 then
						say_title("Change 1.500.000.000")
						say("You don't have 1.500.000.000 Yang.")
						send_letter("Ingots - Yang")
						return
					end
						say_title("Congratulations")
						say("Congratulations, transaction had successful.")
						say("Verify in inventar.")
						say("If appear problems, don't hesitate")
						say("to contact us on forum")
						pc.give_item2(80006, 1)
						pc.change_gold(-1500000000)
						send_letter("Ingots - Yang")
				end
			elseif a == 2 then
				say_title("Change in yang")
				say("How much you want to change in yang ?")
				local l = select("100.000.000 Yang","500.000.000 Yang","1 Billion","1.5 Billions","Nothing")
					if l == 5 then
						send_letter("Ingots - Yang")
						return
					elseif l == 1 then
						say_title("Confirm")
						say("Do you really want to change a ingot")
						say("in value of 100.000.000 of Yang in")
						say("100.000.000 Yang ?")
						local q = select("Yes", "No")
							if q == 2 then
								send_letter("Ingots - Yang")
								return
						elseif pc.count_item(80003) < 1 then
							say_title("Change a ingot")
							say("You don't have a ingot in value of 100.000.000 yang.")
							send_letter("Ingot - Yang")
							return
						elseif pc.get_gold()>1900000000 then
							say_title("Change in ingot")
							say("I'm sorry, but you don't have enough space")
							say("in pocket. Amount must to don't exceed ")
							say("2.000.000.000 Yang!")
							send_letter("Ingots - Yang")
							return
						end
							say_title("Congratulations")
							say("Congratulations, transcation had successful.")
							say("Verify in invetar.")
							say("If problems appear, don't hesitate")
							say("to contact us on forum")
							pc.remove_item(80003,1)
							pc.give_gold(100000000)
							send_letter("Ingots - Yang")
					elseif l == 2 then
						say_title("Confirmare")
						say("Do you really want to change a ingot")
						say("in value of 500.000.000 of Yang in")
						say("500.000.000 Yang ?")
						local q = select("Yes", "No")
							if q == 2 then
							send_letter("Ingots - Yang")
						return

						elseif pc.count_item(80004) < 1 then
							say_title("Change a ingot")
							say("You don't have a ingot in value of 500.000.000 yang.")
							return
						elseif pc.get_gold()>1500000000 then
							say_title("Change in ingot")
							say("I'm sorry, but you don't have enough space")
							say("in pocket. Amount must to don't exceed")
							say("2.000.000.000 Yang!")
							send_letter("Ingots - Yang")
							return
						end
							say_title("Congratulations")
							say("Congratulations, transcation had successful.")
							say("Verify in invetar.")
							say("If problems appear, don't hesitate")
							say("to contact us on forum")
							pc.remove_item(80004,1)
							pc.give_gold(500000000)
							send_letter("Lingouri - Yang")
					elseif l == 3 then
						say_title("Confirm")
						say("Do you really want to change a ingot")
						say("in value of 1.000.000.000 of Yang in")
						say("1.000.000.000 Yang ?")
						local q = select("Yes", "No")
							if q == 2 then
							send_letter("Ingots - Yang")
						return

						elseif pc.count_item(80005) < 1 then
							say_title("Change a ingot")
							say("You don't have a ingot in value of 1.000.000.000 yang.")
							send_letter("Ingots - Yang")
							return
						elseif pc.get_gold()>1000000000 then
							say_title("Change in ingot")
							say("I'm sorry, but you don't have enough space")
							say("in pocket. Amount must to don't exceed")
							say("2.000.000.000 Yang!")
							send_letter("Ingots - Yang")
							return
						end
							say_title("Congratulations")
							say("Congratulations, transcation had successful.")
							say("Verify in invetar.")
							say("If problems appear, don't hesitate")
							say("to contact us on forum")
							pc.remove_item(80005,1)
							pc.give_gold(1000000000)
							send_letter("Ingots - Yang")
					elseif l == 3 then
						say_title("Confirm")
						say("Do you really want to change a ingot")
						say("in valoare de 1.500.000.000 of Yang in")
						say("1.500.000.000 Yang ?")
						local q = select("Yes", "No")
							if q == 2 then
							send_letter("Ingots - Yang")
						return

						elseif pc.count_item(80006) < 1 then
							say_title("Change a ingot")
							say("You don't have a ingot in value of 1.500.000.000 yang.")
							send_letter("Ingots - Yang")
							return
						elseif pc.get_gold()>500000000 then
							say_title("Change in ingot")
							say("I'm sorry, but you don't have enough space")
							say("in pocket. Amount must to don't exceed")
							say("2.000.000.000 Yang!")
							send_letter("Ingots - Yang")
							return
						end
							say_title("Congratulations")
							say("Congratulations, transcation had successful.")
							say("Verify in invetar.")
							say("If problems appear, don't hesitate")
							say("to contact us on forum")
							pc.remove_item(80006,1)
							pc.give_gold(1500000000)
							send_letter("Ingots - Yang")
					end
			end
		end
	end
end
If you any questions or problems, just ask me!
qAleXso is offline  
Thanks
3 Users
Old 11/11/2013, 17:40   #2
 
elite*gold: 20
Join Date: Jan 2012
Posts: 258
Received Thanks: 326
Good job brotha!
roland94new is offline  
Old 11/11/2013, 20:08   #3
 
elite*gold: 0
Join Date: Dec 2012
Posts: 64
Received Thanks: 17
TABLEEEEEEEE
.Bloddy is offline  
Old 11/11/2013, 20:22   #4
 
qAleXso's Avatar
 
elite*gold: 0
Join Date: Feb 2012
Posts: 185
Received Thanks: 127
Quote:
Originally Posted by .Bloddy View Post
TABLEEEEEEEE
hah
qAleXso is offline  
Reply

Tags
ingots, quest, yang


Similar Threads Similar Threads
[Selling] 160 MM 160 DE 25k gold ingots on Bophomet With 3 R7 Buffslaves accounts
08/16/2013 - Rappelz Trading - 0 Replies
Hello everyone , I'm attempting to sell my account and everything i got I've got: 160+ MarksMan 160+ Deadeye And some more low R7s With fortune could reach up to 3 trillion rupees ( 25k to 30k gold ingots ) The currently pure gold i have is about 15k gold ingots which is ( 1tril and 500b ) The 160 charcs are fully feral geard with fully belt sets and bet pets etc everything you ever wanted to be one of most pro characters in the server Here's the chance to get rid of all that suffering...
Get infinite gold ingots
06/29/2012 - Rappelz Private Server - 5 Replies
Want infinite gold ingots? on any pserver (only dkfight not) pm me ill tell you i dont wana say it in public because some admins will get the crap outa me :P
[S]Quest (Hat was mit Yang zu tun)
06/18/2012 - Metin2 Private Server - 3 Replies
Hallo epvp. Ich suche eine quest die dir sobald du 1.999.999.999 Yang hast eine weiße Perle gibt und 500.000.000 Yang weg nimmt.
Compile all quest without quest's files list // Kompilieren Sie alle Quest ohne Quest
07/17/2011 - Metin2 PServer Guides & Strategies - 3 Replies
ENGLISH Hello dear community, this is a very simple guide but at the same time useful. How to compile ALL quest in the folder "quest" without the files list in the file "locale_list"? Easy! Open the file "make" and replace the content of the file with this: for f in *.quest; do ./qc $f; done Oki. Now set the 0777 permission to the file. Finally open a SSH client and sign in. Write the command: cd /game_file_folder



All times are GMT +1. The time now is 10:23.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.