Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Metin2 > Metin2 Private Server
You last visited: Today at 15:26

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

Advertisement



Help for Wiki Ingame by .Kory

Discussion on Help for Wiki Ingame by .Kory within the Metin2 Private Server forum part of the Metin2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2014
Posts: 6
Received Thanks: 0
Help for Wiki Ingame by .Kory

Hello people, I'm Italian, sorry for my bad English.
I'm new in this area and I would like to implement the wiki ingame by Kory. There is someone willing to help me? thanks in advance.

Bye
DanieleGalmax is offline  
Old 02/15/2015, 21:56   #2
 
gerald500's Avatar
 
elite*gold: 150
Join Date: Sep 2010
Posts: 1,049
Received Thanks: 275
in the release from the wiki system is defined how to add this on your server
gerald500 is offline  
Old 02/16/2015, 15:28   #3
 
elite*gold: 0
Join Date: May 2014
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by gerald500 View Post
in the release from the wiki system is defined how to add this on your server


Maybe I am blind but I see howto here
DanieleGalmax is offline  
Old 02/16/2015, 20:17   #4
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,830
Received Thanks: 3,369
should help.

Greetings
Nick is offline  
Old 02/16/2015, 23:12   #5
 
elite*gold: 0
Join Date: May 2014
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by .JayZoN View Post
should help.

Greetings
I have follow the tutorial step by step; I have put the files: uiwiki.py and wiki.py in root.eix .. it's correct?

This is my syserr:


0216 23:05:36496 ::
networkModule.py(line:194) SetSelectCharacterPhase
system.py(line:130) __pack_import
system.py(line:110) _process_result
introSelect.py(line:28) ?
system.py(line:130) __pack_import

networkModule.SetSelectCharacterPhase - exceptions.IndentationError:expected an indented block (line 131)

0216 23:05:36496 :: ================================================== ================================================== ========
0216 23:05:36496 :: Abort!!!!

Bye
DanieleGalmax is offline  
Old 02/16/2015, 23:32   #6
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,830
Received Thanks: 3,369
Quote:
Originally Posted by DanieleGalmax View Post
expected an indented block (line 131)
Please upload your edited files.

Greetings
Nick is offline  
Old 02/17/2015, 19:44   #7
 
elite*gold: 0
Join Date: May 2014
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by .JayZoN View Post
Please upload your edited files.

Greetings
This is my locale_it-->ui-->taskbar.py

Code:
{
							"name" : "QuickPageDownButton",
							"type" : "button",
							"tooltip_text" : uiScriptLocale.TASKBAR_NEXT_QUICKSLOT,

							"x" : 1,
							"y" : 24,

							"default_image" : ROOT + "TaskBar/QuickSlot_DownButton_01.sub",
							"over_image" : ROOT + "TaskBar/QuickSlot_DownButton_02.sub",
							"down_image" : ROOT + "TaskBar/QuickSlot_DownButton_03.sub",
						},
						{
							"name" : "WikkiButton",
							"type" : "button",

							"x" : SCREEN_WIDTH - 208,
							"y" : 3 + Y_ADD_POSITION,

							"tooltip_text" : uiScriptLocale.TASKBAR_WIKKI,

							"default_image" : ROOT + "TaskBar/System_Button_01.sub",
							"over_image" : ROOT + "TaskBar/System_Button_02.sub",
							"down_image" : ROOT + "TaskBar/System_Button_03.sub",
						}, 
					),
				},
			),
		},

	),
}
This is my root-->uitaskbar.py

Code:
toggleButtonDict = {}
		toggleButtonDict[TaskBar.BUTTON_CHARACTER]=self.GetChild("CharacterButton")
		toggleButtonDict[TaskBar.BUTTON_INVENTORY]=self.GetChild("InventoryButton")
		toggleButtonDict[TaskBar.BUTTON_MESSENGER]=self.GetChild("MessengerButton")
		toggleButtonDict[TaskBar.BUTTON_SYSTEM]=self.GetChild("SystemButton")
		toggleButtonDict[TaskBar.BUTTON_CHAT]=self.GetChild("ChatButton")
		toggleButtonDict[TaskBar.BUTTON_WIKKI]=self.GetChild("WikkiButton")
And


Code:
class TaskBar(ui.ScriptWindow):

	BUTTON_CHARACTER = 0
	BUTTON_INVENTORY = 1
	BUTTON_MESSENGER = 2
	BUTTON_SYSTEM = 3
	BUTTON_CHAT = 4
	BUTTON_WIKKI = 5

This is my interfacemodule.py

Code:
	def __MakeTaskBar(self):
		wndTaskBar = uiTaskBar.TaskBar()
		wndTaskBar.LoadWindow()
		self.wndTaskBar = wndTaskBar
		self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_CHARACTER, ui.__mem_func__(self.ToggleCharacterWindowStatusPage))
		self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_INVENTORY, ui.__mem_func__(self.ToggleInventoryWindow))
		self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_MESSENGER, ui.__mem_func__(self.ToggleMessenger))
		self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_SYSTEM, ui.__mem_func__(self.ToggleSystemDialog))
		self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_CHAT, ui.__mem_func__(self.ToggleChat))
		self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_WIKKI, ui.__mem_func__(self.OnWiki))
	def __OnWiki(self):
        import wiki
        import uiwiki
        self.wiki = uiwiki.AgeofPlatonWiki()
        self.wiki.Show()
And in locale_interface.txt I have put this:
Code:
TASKBAR_WIKKI    Wikkisystem
at the end of the page.

The files uiwiki.py and wiki.py are in root, it's correct?


Greetings.
DanieleGalmax is offline  
Old 02/17/2015, 21:13   #8
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,830
Received Thanks: 3,369
There is an issue with the tabs (= indentation) so it's highly recommended to upload your edited files, snippets are not really helpful here.
Nick is offline  
Old 02/17/2015, 22:31   #9
 
elite*gold: 0
Join Date: May 2014
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by .JayZoN View Post
There is an issue with the tabs (= indentation) so it's highly recommended to upload your edited files, snippets are not really helpful here.

Oh sorry.

Attached Files
File Type: rar file.rar (16.8 KB, 3 views)
DanieleGalmax is offline  
Old 02/18/2015, 22:06   #10
 
elite*gold: 0
Join Date: May 2014
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by .JayZoN View Post
There is an issue with the tabs (= indentation) so it's highly recommended to upload your edited files, snippets are not really helpful here.


Can you help me please?
DanieleGalmax is offline  
Old 02/18/2015, 22:40   #11
wild wild son




 
Nick's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 5,830
Received Thanks: 3,369
Quote:
Originally Posted by DanieleGalmax View Post
@.JayZoN

Can you help me please?
Should be fixed now, download in attachment.

Greetings
Attached Files
File Type: rar interfacemodule.rar (8.6 KB, 4 views)
Nick is offline  
Reply


Similar Threads Similar Threads
[Release]Ingame Wiki by .Kori
02/28/2018 - Metin2 PServer Guides & Strategies - 133 Replies
Hallo Metin2 Com, Da ich eine Ausbildung angefangen habe und wirklich keine Zeit mehr habe um es weiter zu Entwickeln habe ich mir gedacht ich Teile ich das Wiki mit euch. Es fällt mir ehrlich gesagt sehr schwer das Projekt aufzugeben aber mir bleibt ehrlich gesagt nichts anderes übrig. Wie man das ganze einbaut und benuzt werde ich jezt nicht erklären ihr solltet es schon selber wissen oder einer von euch erklärt es den anfängern unter uns. Was ich mir wünsche von euch, das ihr...
[Preview] Ingame Wiki by .Kori (v0.1)
03/07/2015 - Metin2 Private Server - 27 Replies
Hallo Elitepvpers, Erstmal ein Statement zu meinem alten Account. Ich wurde wegen jemand gebannt der meinte alles von mir zu "Thanks/en". Multiaccounting war auch dabei aber lag darann das mein Bruder auch Elitepvpers nutzt. So jetzt mal zu dem eigentlichen Thema. Ich habe mich entschlossen mein Wiki weiter zu gestalten und zu entwickeln. Es sind einige Sachen gefixxt wurden die bei der releasten Version noch stark verbuggt wahren. Dazu ist ein neues Menü dazu gekommen nur für...
Einfügen vom InGame Wiki von .Kori
11/16/2014 - Metin2 Private Server - 6 Replies
Hey Com... Sobald ich mich einlogge ladet es und bleibt dann stehen... Syserr 1114 19:32:16659 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010). Automatic conversion will be attempted. 1114 19:33:28390 :: Traceback (most recent call last): 1114 19:33:28390 :: File "networkModule.py", line 239, in SetGamePhase
[Release]Ingame Wiki by .Kori
09/07/2014 - Metin2 Private Server - 1 Replies
Bitte löschen falsche section :D
[Preview] Ingame Wiki by .Kori
07/28/2014 - Metin2 Private Server - 81 Replies
Hallo Metin2 Com, Da ich gerade an einem Ingame Wiki arbeite und schon einiges geschafft habe. Wollte ich es euch zeigen. Was ist der Sinn hinter dem ganzen, dass ich es euch Zeige? Ich erhoffe mir Weitere vorschläge was man noch machen kann und natürlich Verbesserungsvorschläge. Wenn ich mit dem Grundbau fertig bin überlege ich mir es zu Releasen also den Grundbau ;) nicht das End board im fertigen. Ihr sollt ja natürlich auch was machen und es wäre für euch ehrlich gesagt zu...



All times are GMT +2. The time now is 15:26.


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.