Register for your free account! | Forgot your password?

You last visited: Today at 04:38

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

Advertisement



[Release]Gescheites Bonusboard

Discussion on [Release]Gescheites Bonusboard within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Closed Thread
 
Old 07/07/2012, 21:33   #16


 
elite*gold: 0
Join Date: Feb 2010
Posts: 7,221
Received Thanks: 6,758
Quote:
Originally Posted by DaRealFreak View Post
Unterschiede zu den anderen:
- Es sind die kompletten Enums aufgelistet
- Maximale Bonis werden hervorgehoben(goldene Schrift)
- Bonis die nicht als Enum vorhanden sind werden aufgelistet(z.B. max. TP)
- besser aufgebautes Script/bessere Performance/kurz gehalten
- nicht irgendwo als Ergänzung zu einem bisherigen Script

...

Doch ich würde sagen, da sind ein paar erwähnenswerte Unterschiede dabei

MfG DaRealFreak
Tschuldigung Meister, du bist im Recht. Ladet's euch runter, ist hammer krass unso
#SoNiice is offline  
Thanks
1 User
Old 07/07/2012, 21:35   #17
 
CZMadman's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 61
Received Thanks: 3
HI DaRealFreak, when I load it, I have some mystake

CZMadman is offline  
Old 07/07/2012, 22:34   #18
 
dstyl's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 428
Received Thanks: 192
Quote:
Originally Posted by dstyl View Post
I-wie versteh ich das nicht so richtig.. Um welche Datei handelt es sich?
Wo soll man den Import einfügen?
Und vor welchen Command aus welcher .py soll man "uibonuspage." setzen? :S
Habs eingefügt. Hat jmd ne Idee wie ich nen Button dazu im ESC Menü erstellen kann oder einem Knopf wie z.B. F5 zuordnen kann?
Wäre echt nett.
dstyl is offline  
Old 07/07/2012, 22:38   #19
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,829
Received Thanks: 3,369
Quote:
Originally Posted by dstyl View Post
Habs eingefügt. Hat jmd ne Idee wie ich nen Button dazu im ESC Menü erstellen kann oder einem Knopf wie z.B. F5 zuordnen kann?
Wäre echt nett.
Müsstest in der Game bei den Tastenbelegungen schauen & 'ne neue Zeile adden.
Nick is offline  
Old 07/07/2012, 22:55   #20
 
Yiv's Avatar
 
elite*gold: 47
Join Date: Feb 2012
Posts: 2,282
Received Thanks: 2,579
Danke
Yiv is offline  
Old 07/07/2012, 23:50   #21
 
.Hiяo's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 1,712
Received Thanks: 1,075
Quote:
Originally Posted by blackpwnz View Post
Müsstest in der Game bei den Tastenbelegungen schauen & 'ne neue Zeile adden.
Oder man Orientiert sich am GM Online Board und nimmt anstatt F5 halt F6

Dann halt die Funktion vom Online Board mit der der Bonuspage ersetzten.
.Hiяo is offline  
Thanks
1 User
Old 07/07/2012, 23:54   #22
 
elite*gold: 0
Join Date: Dec 2010
Posts: 59
Received Thanks: 5
How can I add it to client?!?!
PLZ English tutorial :P
norrrbi is offline  
Old 07/07/2012, 23:57   #23
 
elite*gold: 198
Join Date: Mar 2011
Posts: 835
Received Thanks: 263
Hasts mir ja schon gezeigt und fand es schon da übel nice und das ist es auch weiterhin :*
ƬheGame is offline  
Old 07/08/2012, 00:33   #24
 
dstyl's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 428
Received Thanks: 192
Quote:
Originally Posted by .Hiro View Post
Oder man Orientiert sich am GM Online Board und nimmt anstatt F5 halt F6

Dann halt die Funktion vom Online Board mit der der Bonuspage ersetzten.
Hätte jmd Lust und Zeit mit mir das zu machen?
Versuche es schon ganze Zeit aber i-was läuft da schief. >.<
dstyl is offline  
Old 07/08/2012, 01:30   #25
 
.BeKiiR#'s Avatar
 
elite*gold: 1
Join Date: Jun 2012
Posts: 1,185
Received Thanks: 198
nice THX Given
.BeKiiR# is offline  
Old 07/08/2012, 06:38   #26
 
elite*gold: 0
Join Date: Dec 2010
Posts: 59
Received Thanks: 5
Please, give me an anglish tutorial about how to add it to client and how to open that bonusboard ingame
I would pay up to 260 e*gold (10eur.)
norrrbi is offline  
Old 07/08/2012, 08:56   #27
 
elite*gold: 50
Join Date: May 2011
Posts: 269
Received Thanks: 990
Here is my HOW2 add the client with pressing Fx buton.

1.) Open game.py and add this line:
Code:
BPisLoaded = 0
Example:
2.) Now search for 'DIK_F4'.
3.) Add a new line with this:
Code:
		onPressKeyDict[app.DIK_F7]	= lambda : self.__BonusPage()
4.) Then you must add this function:
Code:
	def __BonusPage(self):
		import uiBonusPage
		global BPisLoaded
		try:
			if BPisLoaded != 1:
				exec 'uiBonusPage.BonusBoardDialog().Show()'
			else:
				pass
		except ImportError:
			import dbg,app
			dbg.Trace('uiBonusPage.py Importing error')
			app.Abort()
5.) Now you done the game.py, save&close.
6.) Open uibonuspage.py and write in the first lines this:
Code:
import game
7.) Now replace the __init__ to this:
Code:
	def __init__(self):
		ui.ScriptWindow.__init__(self)
		self.LoadUI()
		game.BPisLoaded = 1
8.) Now replace the __del__ to this:
Code:
	def __del__(self):
		ui.ScriptWindow.__del__(self)
		self.Board.Hide()
		game.BPisLoaded = 0
9. Then search for this and make it to comment with '#':
Code:
#BonusBoardDialog().Show()
10.) Now save&close, then open the ui.py and search for this in ui.py:
Code:
class Button(Window):
11.) And add this function in the class:
Code:
##GM Online Board Extension
	def GetText(self):
		if not self.ButtonText:
			return# ""
		return self.ButtonText.GetText()
Example:
12.) Save&Close. Now you must add the uibonuspage.py in the root_pack.xml and you're done.
Code:
		<File archivedPath="uibonuspage.py" type="2"><![CDATA[Source\uibonuspage.py]]></File>
xP3NG3Rx is offline  
Thanks
39 Users
Old 07/08/2012, 10:20   #28
 
elite*gold: 0
Join Date: Oct 2009
Posts: 382
Received Thanks: 161
Quote:
Originally Posted by xP3NG3Rx View Post
Here is my HOW2 add the client with pressing Fx buton.

1.) Open game.py and add this line:
Code:
BPisLoaded = 0
Example:
2.) Now search for 'DIK_F4'.
3.) Add a new line with this:
Code:
		onPressKeyDict[app.DIK_F7]	= lambda : self.__BonusPage()
4.) Then you must add this function:
Code:
	def __BonusPage(self):
		import uiBonusPage
		global BPisLoaded
		try:
			if BPisLoaded != 1:
				exec 'uiBonusPage.BonusBoardDialog().Show()'
			else:
				pass
		except ImportError:
			import dbg,app
			dbg.Trace('uiBonusPage.py Importing error')
			app.Abort()
5.) Now you done the game.py, save&close.
6.) Open uibonuspage.py and write in the first lines this:
Code:
import game
7.) Now replace the __init__ to this:
Code:
	def __init__(self):
		ui.ScriptWindow.__init__(self)
		self.LoadUI()
		game.BPisLoaded = 1
8.) Now replace the __del__ to this:
Code:
	def __del__(self):
		ui.ScriptWindow.__del__(self)
		self.Board.Hide()
		game.BPisLoaded = 0
9. Then search for this and make it to comment with '#':
Code:
#BonusBoardDialog().Show()
10.) Now save&close, then open the ui.py and search for this in ui.py:
Code:
class Button(Window):
11.) And add this function in the class:
Code:
##GM Online Board Extension
	def GetText(self):
		if not self.ButtonText:
			return# ""
		return self.ButtonText.GetText()
Example:
12.) Save&Close. Now you must add the uibonuspage.py in the root_pack.xml and you're done.
Code:
		<File archivedPath="uibonuspage.py" type="2"><![CDATA[Source\uibonuspage.py]]></File>
You Are The Awesome and can you make how2 GM Board?
vpser is offline  
Old 07/08/2012, 11:52   #29
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,829
Received Thanks: 3,369
Über 'nen Button unten rechts würde es eher auffallen.
Nick is offline  
Old 07/08/2012, 12:48   #30
 
CZMadman's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 61
Received Thanks: 3
when I open bonus board and I press F7 onesmore, bonus board didnt close, how to do it?
This function has inventory for example (key I)
CZMadman is offline  
Closed Thread


Similar Threads Similar Threads
Sponsore 1x VServer für ein gescheites Projekt
04/23/2012 - Last Chaos Private Server - 9 Replies
Ja ich biete einen Vserver/root Server für einen Last Chaos Server. Erstmal nur ein VServer mit 4GB RAM wenn benötigt wird es aber auch mehr. Einfach hier oder per PN bewerben Was ihr haben müsst: -Server files -Website
Suche gescheites online Game
10/26/2009 - Off Topic - 2 Replies
Überschrift sagt es suche ma nen geshceites onlinegame ;) Nach 3 Jahren Mt2 Offi und 2 Jahre P-server metin2 HAB ICH DIE SCHNAUTZE VOLL VON DEM DRECK-.- Naja also bin für eig jedes game offen AUSER: 4Story
Gescheites Schülerforum
07/10/2009 - Main - 3 Replies
Hi, wollte mal fragen ob jemand ein gescheites Schülerforum kennt.....^^ Danke im Vorraus Mfg WerdNetFrech



All times are GMT +2. The time now is 04:38.


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.