Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Metin2 > Metin2 Private Server > Metin2 PServer Guides & Strategies
You last visited: Today at 10:47

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

Advertisement



[RELEASE] MobDropItemCreator v1.0.1 - MHLab

Discussion on [RELEASE] MobDropItemCreator v1.0.1 - MHLab within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2009
Posts: 63
Received Thanks: 243
[RELEASE] MobDropItemCreator v1.0.1 - MHLab

Hi community,
today I share with you my new tool: it's a mob_drop_item Creator. It's useful to compose a new "mob_drop_item.txt". The program source is simple...

Screen:



Antivirus Scan:


Download:



Here is C# source code. If you want use it, please don't remove the link at my website:

Code:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
	
namespace MobDropItem
{
	/// <summary>
	/// Description of MainForm.
	/// </summary>
	public partial class MainForm : Form
	{
		public MainForm()
		{
			//
			// The InitializeComponent() call is required for Windows Forms designer support.
			//
			InitializeComponent();
			
			//
			// TODO: Add constructor code after the InitializeComponent() call.
			//
		}
		
		void ComboBox1SelectedIndexChanged(object sender, EventArgs e)
		{
			if( comboBox1.SelectedIndex == 2 ){
				numericUpDown7.Enabled = true;
				numericUpDown2.Enabled = false;
			}
			if( comboBox1.SelectedIndex == 0 ){
				numericUpDown2.Enabled = true;
				numericUpDown7.Enabled = false;
			}
			if( comboBox1.SelectedIndex == 1 ){
				numericUpDown2.Enabled = false;
				numericUpDown7.Enabled = false;
			}
				
				
		}
		
		void Button1Click(object sender, EventArgs e)
		{
			richTextBox1.Text += "Group " + textBox1.Text + '\n' + '{' + '\n' + '\t' + "Type " + comboBox1.Text + '\n';
			richTextBox1.Text += "\tMob " + numericUpDown1.Text + '\n';
			if( numericUpDown2.Enabled )
				richTextBox1.Text += "\tkill_drop " + numericUpDown2.Text + '\n';
			if( numericUpDown7.Enabled )
				richTextBox1.Text += "\tlevel_limit " + numericUpDown7.Text + '\n';
			
			numericUpDown2.Enabled = false;
			numericUpDown7.Enabled = false;
			textBox1.Enabled = false;
			comboBox1.Enabled = false;
			numericUpDown1.Enabled = false;
			button1.Enabled = false;
			numericUpDown3.Enabled = true;
			numericUpDown4.Enabled = true;
			numericUpDown5.Enabled = true;
			numericUpDown6.Enabled = true;
			button2.Enabled = true;
			button3.Enabled = true;
			
		
			
		}
		
		void Button5Click(object sender, EventArgs e)
		{
			this.Close();
		}
		
		void Button2Click(object sender, EventArgs e)
		{
			richTextBox1.Text += '\t' + numericUpDown3.Text + '\t' + numericUpDown4.Text + '\t' + numericUpDown5.Text + '\t' + numericUpDown6.Text + '\n';
			numericUpDown3.Value += 1;
		}
		
		void Button3Click(object sender, EventArgs e)
		{
			richTextBox1.Text += '}' + '\n';
			numericUpDown2.Enabled = false;
			numericUpDown7.Enabled = true;
			textBox1.Enabled = true;
			comboBox1.Enabled = true;
			numericUpDown1.Enabled = true;
			button1.Enabled = true;
			numericUpDown3.Enabled = false;
			numericUpDown4.Enabled = false;
			numericUpDown5.Enabled = false;
			numericUpDown6.Enabled = false;
			button2.Enabled = false;
			button3.Enabled = false;
		}
		
		void Button4Click(object sender, EventArgs e)
		{
			System.IO.File.AppendAllText( "mob_drop_item.txt", "//File created by ManHunter - MHLab" + richTextBox1.Text );
			richTextBox1.Text = null;
		}
		
[COLOR="Red"]//-----------------MHLab References-------------------------
//---------------Please, do not remove-----------------------
		void Button6Click(object sender, EventArgs e)
		{
			System.Diagnostics.Process.Start("http://mhlab.altervista.org");
		}

//-----------------------------------------------------------
	[/COLOR]}

}


Bye!
ManHunterITA is offline  
Thanks
17 Users
Old 07/14/2011, 12:29   #2
 
elite*gold: 0
Join Date: Mar 2010
Posts: 313
Received Thanks: 48
Virustest?
fiftyx is offline  
Old 07/14/2011, 12:32   #3
 
elite*gold: 5575
The Black Market: 120/0/0
Join Date: Apr 2011
Posts: 5,569
Received Thanks: 581



danke (thanks)
FbFunnY is offline  
Old 07/14/2011, 12:37   #4
 
elite*gold: 0
Join Date: Dec 2009
Posts: 63
Received Thanks: 243
I forgot the virus scan, sorry!
I add it on first post.
ManHunterITA is offline  
Old 07/14/2011, 12:59   #5
 
elite*gold: 0
Join Date: Jun 2011
Posts: 97
Received Thanks: 650
Thanks
xLikeShinn is offline  
Thanks
5 Users
Old 07/14/2011, 13:02   #6
 
Papa Kobe's Avatar
 
elite*gold: 5
Join Date: Apr 2011
Posts: 1,960
Received Thanks: 1,483
Nice

LG
KS
Papa Kobe is offline  
Old 07/14/2011, 14:19   #7
 
elite*gold: 600
Join Date: Dec 2010
Posts: 1,625
Received Thanks: 1,866
sehr geil danke
wenn er auch noch funtz dann perfekt

werde heute dann mal testen
Bataleon is offline  
Old 07/14/2011, 14:27   #8
 
Howaner's Avatar
 
elite*gold: 132
Join Date: Apr 2010
Posts: 2,864
Received Thanks: 2,008
gabs das nicht schon mal von .Infinity?
oder irre ich mich
Howaner is offline  
Old 07/14/2011, 17:12   #9
 
markooom2's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 297
Received Thanks: 241
Hmm.. ich finde diese Item drop generatoren ziemlich sinnlos ich mach das von hand schneller...
markooom2 is offline  
Old 07/15/2011, 02:52   #10
 
elite*gold: 0
Join Date: Jan 2010
Posts: 1,916
Received Thanks: 538
nice aber mit hand gehts doch schneller, oder?
'oShet is offline  
Old 07/15/2011, 19:12   #11
 
elite*gold: 0
Join Date: Aug 2010
Posts: 115
Received Thanks: 50
dankeschön gut thread
JoinClup is offline  
Old 07/16/2011, 05:15   #12
 
¡vamos!'s Avatar
 
elite*gold: 1000
The Black Market: 122/0/0
Join Date: Dec 2009
Posts: 2,000
Received Thanks: 1,777
Ist wirklich hilfreich!

lg
¡vamos! is offline  
Old 07/16/2011, 13:34   #13
 
elite*gold: 0
Join Date: Dec 2009
Posts: 63
Received Thanks: 243
Thank you!

ManHunterITA is offline  
Old 07/18/2011, 00:18   #14
 
elite*gold: 0
Join Date: Sep 2009
Posts: 70
Received Thanks: 5
Thx

Verry Nice !!
hsu59 is offline  
Old 07/18/2011, 13:33   #15
 
elite*gold: 0
Join Date: Dec 2009
Posts: 63
Received Thanks: 243
I add C# source code in the first post...

Bye!
ManHunterITA is offline  
Reply


Similar Threads Similar Threads
[RELEASE] Auron's Masamune - MHLab
11/13/2011 - Metin2 PServer Guides & Strategies - 15 Replies
Hi community, tonight I created a new 3D model: it's Auron's Masamune, a sword that appears in Final Fantasy (FF fans, don't kill me for inaccurate information :P). Screen: http://oi55.tinypic.com/4t7rzp.jpg Here is download: Auron's Masamune
[RELEASE] Crystal Sword - MHLab
07/06/2011 - Metin2 PServer Guides & Strategies - 6 Replies
Hi community, today I want to share with you my new work: the Crystal Sword. Screen: http://oi52.tinypic.com/16ar2wl.jpg Download: MEGAUPLOAD - The leading online storage and file delivery service
[RELEASE] Weapon set by MHLab
07/01/2011 - Metin2 PServer Guides & Strategies - 9 Replies
Hi people, tonight I decided to share with you my free weapon set... Ok, let's go! - Axe 1 http://oi52.tinypic.com/2m26mq8.jpg Download - Mace 1



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


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.