Jump to content

.SchneeFlocke'

Inactive Member
  • Posts

    40
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by .SchneeFlocke'

  1. Am 26.1.2019 um 10:58 schrieb LordZiege:

    can someone reup?

    you find this map in the client from (dark-fusion) or (fusion-network) somenthing like that its not encryptet so you can easily extract it from there ?
    and maybe if u done with that u can reupload it if u want.

    • Love 1
  2. vor 7 Minuten schrieb xLoGaN:

    check the conf.txt in your db folder

     it's possible that  proto are reading from the db , to disable reading the proto from db you must change 

    PROTO_FROM_DB = 1


    to

    PROTO_FROM_DB = 0

    1 means yes and 0 means no 

     

     

    no its allready reading from the txt data thats working like a charm but i solve it now it was somenthing stupid from me
    so thank you ^^

  3. Hey buddys !

    i have a little problem with my sash absorb window and combination window
    it always open like this

    85fce407b652075bf20866715ce5e2ff.jpg

    but i want that it open in the middle like on the official but every changes i made the window dont change the position and thats weird.


    my sash_absorbwindow.py
     

    import app
    import item
    import uiScriptLocale
    
    window = {
    	"name" : "Sash_AbsorbtionWindow",
    	"x" : 0,
    	"y" : 0,
    	"style" : ("movable", "float",),
    	"width" : 205,
    	"height" : 270,
    	"children" :
    	(
    		{
    			"name" : "board",
    			"type" : "board",
    			"style" : ("attach",),
    			"x" : 0,
    			"y" : 0,
    			"width" : 205,
    			"height" : 270,
    			"children" :
    			(
    				{
    					"name" : "TitleBar",
    					"type" : "titlebar",
    					"style" : ("attach",),
    					"x" : 6,
    					"y" : 6,
    					"width" : 190,
    					"color" : "yellow",
    					"children" :
    					(
    						{
    							"name":"TitleName",
    							"type":"text",
    							"x":95,
    							"y":3,
    							"text":uiScriptLocale.SASH_ABSORB,
    							"text_horizontal_align":"center"
    						},
    					),
    				},
    				{
    					"name" : "Sash_Combine",
    					"type" : "image",
    					"x" : 9,
    					"y" : 35,
    					"image" : uiScriptLocale.LOCALE_UISCRIPT_PATH + "Acce/Acce_absorb.tga",
    					"children" :
    					(
    						{
    							"name" : "SashSlot",
    							"type" : "slot",
    							"x" : 3,
    							"y" : 3,
    							"width" : 190,
    							"height" : 200,
    							"slot" : (
    										{
    											"index" : 0,
    											"x" : 26,
    											"y" : 41,
    											"width" : 31,
    											"height" : 31
    										},
    										{
    											"index" : 1,
    											"x" : 125,
    											"y" : 8,
    											"width" : 31,
    											"height" : 96
    										},
    										{
    											"index" : 2,
    											"x" : 75,
    											"y" : 126,
    											"width" : 31,
    											"height" : 31
    										},
    							),
    						},
    					),
    				},
    				{
    					"name" : "AcceptButton",
    					"type" : "button",
    					"x" : 40,
    					"y" : 235,
    					"text" : uiScriptLocale.OK,
    					"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
    					"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
    					"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
    				},
    				{
    					"name" : "CancelButton",
    					"type" : "button",
    					"x" : 114,
    					"y" : 235,
    					"text" : uiScriptLocale.CANCEL,
    					"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
    					"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
    					"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
    				},				
    			),
    		},
    	),
    }


    my sash_combinewindow.py

     

    import app
    import item
    import uiScriptLocale
    
    COSTUME_START_INDEX = item.COSTUME_SLOT_START
    
    window = {
    	"name" : "Sash_CombineWindow",
    	"x" : 0,
    	"y" : 0,
    	"style" : ("movable", "float",),
    	"width" : 215,
    	"height" : 270,
    	"children" :
    	(
    		{
    			"name" : "board",
    			"type" : "board",
    			"style" : ("attach",),
    			"x" : 0,
    			"y" : 0,
    			"width" : 215,
    			"height" : 270,
    			"children" :
    			(
    				{
    					"name" : "TitleBar",
    					"type" : "titlebar",
    					"style" : ("attach",),
    					"x" : 6,
    					"y" : 6,
    					"width" : 200,
    					"color" : "yellow",
    					"children" :
    					(
    						{
    							"name" : "TitleName",
    							"type" : "text",
    							"x" : 95,
    							"y" : 3,
    							"text" : uiScriptLocale.SASH_COMBINE,
    							"text_horizontal_align" : "center"
    						},
    					),
    				},
    				{
    					"name" : "Sash_Combine",
    					"type" : "image",
    					"x" : 9,
    					"y" : 35,
    					"image" : uiScriptLocale.LOCALE_UISCRIPT_PATH + "acce/acce_combine.tga",
    					"children" :
    					(
    						{
    							"name" : "SashSlot",
    							"type" : "slot",
    							"x" : 3,
    							"y" : 3,
    							"width" : 200,
    							"height" : 150,
    							"slot" : (
    										{
    											"index":0,
    											"x":78,
    											"y":7,
    											"width":32,
    											"height":32
    										},
    										{
    											"index":1,
    											"x":78,
    											"y":60,
    											"width":32,
    											"height":32
    										},
    										{
    											"index":2,
    											"x":78,
    											"y":115,
    											"width":32,
    											"height":32
    										},
    							),
    						},
    						{
    							"name" : "Main",
    							"type" : "text",
    							"text" : uiScriptLocale.SASH_MAIN,
    							"text_horizontal_align":"center",
    							"x" : 85 + 12,
    							"y" : 7 + 36,
    						},
    						{
    							"name" : "serve",
    							"type" : "text",
    							"text" : uiScriptLocale.SASH_SERVE,
    							"text_horizontal_align" : "center",
    							"x" : 85 + 12,
    							"y" : 60 + 38,
    						},
    						{
    							"name" : "Result",
    							"type" : "text", 
    							"text" : uiScriptLocale.SASH_RESULT,
    							"text_horizontal_align":"center",
    							"x" : 85 + 12,
    							"y" : 115 + 40
    						},
    					),
    				},
    				{
    					"name" : "NeedMoney",
    					"type" : "text",
    					"text" : "",
    					"text_horizontal_align" : "center",
    					"x" : 105,
    					"y" : 215,
    				},
    				{
    					"name" : "AcceptButton",
    					"type" : "button",
    					"x" : 40,
    					"y" : 235,
    					"text" : uiScriptLocale.OK,
    					"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
    					"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
    					"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
    				},
    				{
    					"name" : "CancelButton",
    					"type" : "button",
    					"x" : 114,
    					"y" : 235,
    					"text" : uiScriptLocale.CANCEL,
    					"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
    					"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
    					"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
    				},			
    			),
    		},
    	),
    }

     

  4. Hey everyone !


    First im Sorry for my bad english but i hope u understand me
    so after i update my old item_proto to the newest struct from the Official Client and all is working like a charm
    i have the newest costumes , weapons , armores , items etc..

    51861db3542769eb1e2c13caae02b8b6.jpg

     

    i want to update my mob_proto now too but the problem is here my client accept the new mob_proto
    but if i put the new mob_names.txt and mob_proto.txt into my db folder of my serverfiles the server wont start anymore and dont give any syserr logs.
    maybe you know whats the problem here is i upload my old mob proto and the new one that i wanna use for the community here.


    my old mob_proto:

    This is the hidden content, please



    and the new one that i wanna use :
    This is the hidden content, please

     

    what can be the problem here ? i would be very thankfully if someone can help me out by that.

    • Metin2 Dev 5
    • Dislove 1
    • Confused 1
    • Good 2
    • Love 1
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.