Register for your free account! | Forgot your password?

You last visited: Today at 10:41

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

Advertisement



anti exp

Discussion on anti exp within the Metin2 Private Server forum part of the Metin2 category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2013
Posts: 145
Received Thanks: 1
anti exp

hallo leute ich habe eine frage ich möchte ein anti expring ein bauen aber egal was ich versuche die leute bekommen denn noch mehr exp

40k fieles
Antara-mt2 is offline  
Old 07/24/2015, 18:55   #2
 
Maasch's Avatar
 
elite*gold: 2
Join Date: Feb 2014
Posts: 273
Received Thanks: 85
Viel Spaß damit


Maasch is offline  
Thanks
1 User
Old 07/24/2015, 19:38   #3
 
elite*gold: 0
Join Date: Aug 2013
Posts: 145
Received Thanks: 1
danke

Quote:
Originally Posted by Maasch View Post
Viel Spaß damit


hat nicht geklappt
Antara-mt2 is offline  
Old 07/24/2015, 19:41   #4

 
elite*gold: 83
Join Date: Nov 2013
Posts: 2,891
Received Thanks: 2,764
Quote:
Originally Posted by Antara-mt2 View Post
hat nicht geklappt
Bei 40k Files funktioniert die Methode mit - exp geben nicht mehr.
Du musst eine Funktion im gamecore hinzufügen um das erhalten von exp zu blockieren.
Der vanilla core hat diese Funktion bereits:
pc.block_exp()
rollback is offline  
Old 07/24/2015, 19:44   #5
 
elite*gold: 0
Join Date: Aug 2013
Posts: 145
Received Thanks: 1
danke

Quote:
Originally Posted by Seחsi View Post
Bei 40k Files funktioniert die Methode mit - exp geben nicht mehr.
Du musst eine Funktion im gamecore hinzufügen um das erhalten von exp zu blockieren.
Der vanilla core hat diese Funktion bereits:
pc.block_exp()
sensi wie mache ich das sorry für die dumme frage

habe die die server files von viruz
Antara-mt2 is offline  
Old 07/24/2015, 23:02   #6
 
Zaturix's Avatar
 
elite*gold: 0
Join Date: Oct 2014
Posts: 408
Received Thanks: 208
Ich denke mal du hast den Source von den Viruz Files nicht,also kannst du es nicht eintragen.
Zaturix is offline  
Old 07/24/2015, 23:04   #7
 
.CяιMe™'s Avatar
 
elite*gold: 0
The Black Market: 106/0/0
Join Date: Oct 2011
Posts: 3,872
Received Thanks: 1,163
Antara Mt2 wird fail.

Du brauchst den Source
.CяιMe™ is offline  
Old 07/24/2015, 23:06   #8

 
elite*gold: 83
Join Date: Nov 2013
Posts: 2,891
Received Thanks: 2,764
Die viruz files haben den vanilla core, also kann er das sehr wohl benutzen.
rollback is offline  
Old 07/25/2015, 07:41   #9


 
elite*gold: 1810
Join Date: Jan 2012
Posts: 2,180
Received Thanks: 1,617
Quote:
Originally Posted by Seחsi View Post
Bei 40k Files funktioniert die Methode mit - exp geben nicht mehr.
Du musst eine Funktion im gamecore hinzufügen um das erhalten von exp zu blockieren.
Der vanilla core hat diese Funktion bereits:
pc.block_exp()
Und wieso baut man so eine Methode aus? Ich check die Metin2 Developer einfach nicht... Die machen nur Mist
MaxChri is offline  
Old 07/25/2015, 11:48   #10
 
elite*gold: 0
Join Date: Aug 2013
Posts: 145
Received Thanks: 1
hmm

ja aber wer kann mir denn jetzt bitte helfen ich habe vieles versucht und nichts klappt

ich zahle auch was per paypal gerne
Antara-mt2 is offline  
Old 07/25/2015, 12:07   #11

 
elite*gold: 83
Join Date: Nov 2013
Posts: 2,891
Received Thanks: 2,764
Code:
quest antiexpring begin
	state start begin
		when 72501.use begin
			local is_active = pc.getf("antiexp", "active") == 1
			local state = ""
			if not is_active then
				pc.block_exp()
				state = "aktiv"
			else
				pc.unblock_exp()
				state = "nicht mehr aktiv"
			end
			syschat("Der Antiexp-Ring ist jetzt "..state.."!")
		end
	end
end
(vnum evtl. anpassen)
rollback is offline  
Thanks
1 User
Old 07/25/2015, 12:24   #12
 
elite*gold: 0
Join Date: Aug 2013
Posts: 145
Received Thanks: 1
bekomme ich eine fehler meldung

Quote:
Originally Posted by Seחsi View Post
Code:
quest antiexpring begin
	state start begin
		when 72501.use begin
			local is_active = pc.getf("antiexp", "active") == 1
			local state = ""
			if not is_active then
				pc.block_exp()
				state = "aktiv"
			else
				pc.unblock_exp()
				state = "nicht mehr aktiv"
			end
			syschat("Der Antiexp-Ring ist jetzt "..state.."!")
		end
	end
end
(vnum evtl. anpassen)
geht nicht leider fehler meldung

Antara-mt2 is offline  
Old 07/25/2015, 12:31   #13

 
elite*gold: 83
Join Date: Nov 2013
Posts: 2,891
Received Thanks: 2,764
Code:
quest antiexpring begin
	state start begin
		when 72501.use begin
			local is_active = pc.getf("antiexp", "active") == 1
			local status = ""
			if not is_active then
				pc.block_exp()
				status = "aktiv"
			else
				pc.unblock_exp()
				status = "nicht mehr aktiv"
			end
			syschat("Der Antiexp-Ring ist jetzt "..status.."!")
		end
	end
end
So müsste es klappen, ich denke mal state ist ein Keyword vom qc
rollback is offline  
Thanks
1 User
Old 07/25/2015, 12:39   #14
 
elite*gold: 0
Join Date: Aug 2013
Posts: 145
Received Thanks: 1
ja

Quote:
Originally Posted by Seחsi View Post
Code:
quest antiexpring begin
	state start begin
		when 72501.use begin
			local is_active = pc.getf("antiexp", "active") == 1
			local status = ""
			if not is_active then
				pc.block_exp()
				status = "aktiv"
			else
				pc.unblock_exp()
				status = "nicht mehr aktiv"
			end
			syschat("Der Antiexp-Ring ist jetzt "..status.."!")
		end
	end
end
So müsste es klappen, ich denke mal state ist ein Keyword vom qc

tausend dank es hat geklappt kann geclosed werden
Antara-mt2 is offline  
Old 07/25/2015, 17:14   #15
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,830
Received Thanks: 3,369
Quote:
Originally Posted by Antara-mt2 View Post
tausend dank es hat geklappt kann geclosed werden
Künftig bitte in erster Linie auf die nachfolgenden Sammelthemen zurückgreifen. (closerequested)

->
->

lg
Nick is offline  
Closed Thread


Similar Threads Similar Threads
Anti Recoil+Anti flash+anti smoke+Clear scope
03/07/2010 - Soldier Front Hacks, Bots, Cheats & Exploits - 12 Replies
Hi guys my brother making hack new not me image program 1. open the program 2.select all 3.open soldier front virus scan
Anti Recoil+Anti flash+anti smoke+Clear scope
03/06/2010 - Soldier Front - 2 Replies
Hi guys my brother making hack new not me image program http://img519.imageshack.us/img519/1492/wwwwo.jpg 1. open the program 2.select all 3.open soldier front virus scan



All times are GMT +2. The time now is 10:41.


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.