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 06:12

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

Advertisement



[RELEASE] Fullversion: Kostümsystem .Minton™

Discussion on [RELEASE] Fullversion: Kostümsystem .Minton™ within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Reply
 
Old 03/01/2013, 10:46   #46
 
elite*gold: 0
Join Date: Feb 2013
Posts: 268
Received Thanks: 425
Quote:
Originally Posted by TheSonny View Post
Danke fürs Releasen gute arbeit da es sich keiner traute es zu releasen hast nen guten job gemacht
Hier dran sieht man wie dumm Menschen sein können .
Das ist nicht das Full Kostüm System !
Baum' is offline  
Thanks
1 User
Old 03/01/2013, 10:49   #47
 
clad3815's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 290
Received Thanks: 227
Full version isn't possible without game modifications
clad3815 is offline  
Old 03/01/2013, 10:57   #48
 
elite*gold: 0
Join Date: Feb 2013
Posts: 268
Received Thanks: 425
Quote:
Originally Posted by clad3815 View Post
Full version isn't possible without game modifications
Yes,
#Closereuqest wegen :
Fake Release,Release von anderen Leuten & es wird hier nur gespammt !
Baum' is offline  
Thanks
1 User
Old 03/01/2013, 12:31   #49
 
elite*gold: 0
The Black Market: 126/1/5
Join Date: Sep 2012
Posts: 3,454
Received Thanks: 398
Das Kostümsystem ist der reinste Dreck, um das mal auf gut Deutsch zu sagen.

Da könnt ihr gleich verbuggte Rüssis reinhauen, die man nicht handeln kann & die sich nach jedem Teleport immer aus und anziehen, beim Gaul auf und absteigen und sogar beim Seeli lesen geht die scheiße nicht.

#Fail
DΛDΞX is offline  
Old 03/01/2013, 12:57   #50
 
MarcosCC's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 600
Received Thanks: 765
Its full version...just need diff for game
MarcosCC is offline  
Old 03/01/2013, 13:13   #51
 
sema1995's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 254
Received Thanks: 68
Game? or Metin2.bin xD

You need disblock the slots in metin2.bin not game xd

and need fuctions to types 28 + subtypes 0 and 1
sema1995 is offline  
Old 03/01/2013, 13:38   #52


 
Mr. 'Avenue™'s Avatar
 
elite*gold: 222
The Black Market: 101/0/0
Join Date: Oct 2012
Posts: 2,361
Received Thanks: 3,388
Lol.. :O ich ging grad auf Seite 5 vom Thread..
Dann:
Quote:
Achtung: Malware!
Google Chrome hat Zugriff auf diese Seite auf blockiert.
Auf dieser Webseite wurden Inhalte von eingefügt, einem bekannten Verbreiter von Malware. Beim Besuch dieser Seite besteht jetzt die Gefahr, dass Sie Ihren Computer mit Malware infizieren.
Malware ist Schadsoftware, die unter anderem zu Identitätsdiebstahl, finanziellen Verlusten und zum dauerhaften Löschen von Dateien führen kann.
Mr. 'Avenue™ is offline  
Old 03/01/2013, 13:40   #53
 
elite*gold: 0
Join Date: Feb 2013
Posts: 268
Received Thanks: 425
Quote:
Originally Posted by .Avenue™ View Post
Lol.. :O ich ging grad auf Seite 5 vom Thread..
Dann:
Habe es längst Andi gemeldet
Baum' is offline  
Thanks
3 Users
Old 03/01/2013, 15:12   #54
 
clad3815's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 290
Received Thanks: 227
Quote:
Originally Posted by sema1995 View Post
Game? or Metin2.bin xD

You need disblock the slots in metin2.bin not game xd

and need fuctions to types 28 + subtypes 0 and 1
This depend how you want do, many solutions are possible. If you disblock slot on metin2.bin (Actually slot max is 101 on bin) you need disblock on game too.

But you need a quest too, I mean this style

Code:
quest costume_system begin
	state start begin
		function get_real_hair_id(id)
		    return ({
				[45001] = 5001,
				[45002] = 5001,
				[45003] = 5002,
				[45004] = 5002,
				[45005] = 5003,
				[45006] = 5003,
				[45007] = 5004,
				[45008] = 5004,
				[45009] = 5005,
				[45010] = 5005
		    })[id] or 0
		end
		
		when login begin
			loop_timer('costume_system_check', 0.3)
		end
		function real_real_hair_id(vnum)
			if costume_system.get_real_hair_id(vnum) == 0 then
				return vnum
			else
				return costume_system.get_real_hair_id(vnum)
			end
		
		end
		function check_have_costume(slot)
			item.select_cell(slot)
			if item.get_cell() == slot then
				return true
			else
				return false
			end
		end
		function get_real_armor()
			item.select_cell(90)
			if item.get_cell() != 90 then
				return 0
			else
				return item.get_vnum()
			end
		end
		function check_costume(slot)
			item.select_cell(slot)
			if pc.get_part(PART_MAIN) != item.get_vnum() then
				return false
			else
				if item.get_cell() != slot then
					return false
				else
					return true
				end
			end
		end
		function empty_player()
			if pc.get_armor() == pc.get_part(PART_MAIN) then
				return true
			else
				return false
			end
		end
		function equip_costume(slot)
			item.select_cell(slot)
			pc.set_part(PART_MAIN,item.get_vnum())
		end
		function check_hair()
			item.select_cell(102)
			if item.get_cell() == 102 then
				return true
			else
				return false
			end
		end
		function put_hair()
			item.select_cell(102)
			local vnum = costume_system.real_real_hair_id(item.get_vnum())
			pc.setf("costume_system","old_hair_vnum",pc.get_part(PART_HAIR))
			pc.set_part(PART_HAIR, vnum)
		end
		function restore_hair()
			pc.setf("costume_system","old_hair_vnum",pc.get_part(PART_HAIR))
			pc.set_part(PART_HAIR, pc.getf("costume_system","old_hair_vnum"))
		end
		function check_real_hair()
			item.select_cell(102)
			if costume_system.check_hair() == true and pc.get_part(PART_HAIR) == costume_system.real_real_hair_id(item.get_vnum()) then
				return true
			elseif costume_system.check_hair() == false and pc.get_part(PART_HAIR) == pc.getf("costume_system","old_hair_vnum") then
				return true
			elseif pc.getf("costume_system","old_hair_vnum") == 0 then
				return true
			else
				return false
			end
		end
		when costume_system_check.timer begin
			-- Code quest
		end		
	end
end
clad3815 is offline  
Thanks
1 User
Old 03/01/2013, 19:47   #55
 
elite*gold: 0
Join Date: Nov 2011
Posts: 84
Received Thanks: 2
pls say me for install this system....
Sorry for me english =((
MakkeNN is offline  
Old 03/01/2013, 21:10   #56
 
NaOiZ's Avatar
 
elite*gold: 0
Join Date: Jun 2011
Posts: 738
Received Thanks: 499
For all this is not the full version all become kicks pls deleate this thread Weil Fake release u know ? ,


ICh mag Kekse <3
NaOiZ is offline  
Old 03/01/2013, 23:58   #57
 
Erycon's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 94
Received Thanks: 44
Aha, the dif add name_string without function
Erycon is offline  
Reply


Similar Threads Similar Threads
[RELEASE] Liteversion: Kostümsystem
05/05/2014 - Metin2 PServer Guides & Strategies - 717 Replies
Aktuelle Liteversion: 1.0.0.0 Guten Tag, ich veröffentliche hier die offizielle Liteversion des Kostümsystems ohne Fehler, die jetzige ist ja leider geklaut worden und hat noch die ein und anderen Fehler, zum Beispiel das es verschwindet wenn die "GAME" Informationen zurücksendet mit der "ARMOR-ID", dies passiert wenn man auf ein Pferd raufgeht, Status- oder Fertigkeitenpunkte verteilt und das automatische Tränke verwenden deaktiviert. In dieser Version, die hier veröffentlicht...
[Release] Official Pets + Quest By .Minton™
01/28/2013 - Metin2 PServer Guides & Strategies - 14 Replies
[Release] Kostümsystem mit Download!
09/09/2012 - Metin2 PServer Guides & Strategies - 66 Replies
Gelöscht! Verbesserte Version nun von Paylasici ! http://www.elitepvpers.com/forum/metin2-pserver-g uides-strategies/2112444-release-kost-msystem.html #post18644669
[Release]Kostümsystem
09/09/2012 - Metin2 PServer Guides & Strategies - 60 Replies
Sers, hier release ich euch jetzt mal das tolle Kostümsystem. Kostümsystem by .Awesoome' - YouTube Downloadlink gibts per PN,



All times are GMT +2. The time now is 06:12.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.