Jump to content

.SchneeFlocke'

Inactive Member
  • Posts

    40
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by .SchneeFlocke'

  1. we cannot open this files , please provide us a screen from what happens if you starting the server. and provide us logs inside a "code tag" SchneeFlocke
  2. 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.
  3. Hey everyone First im Sorry about my english but i hope u will understand what im talking about so i search for the newest mob_names.txt and mob_proto.txt BUT without the new types such (SCALE_PCT) if someone have it it would be great if u can upload it for me
  4. oh i forget the password i reupload it here : [Hidden Content] password: snow
  5. thats a archive with lzma compression , just open it with 7zip buddy and extract it.
  6. Here I have uploaded it for you - [Hidden Content]
  7. 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 ^^
  8. Hey buddys ! i have a little problem with my sash absorb window and combination window it always open like this 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", }, ), }, ), }
  9. 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.. 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: [Hidden Content] and the new one that i wanna use : [Hidden Content] what can be the problem here ? i would be very thankfully if someone can help me out by that.
  10. i search the mani and manu granny models i would be very thanfully if someone upload it for me thanks.
  11. which client version was released on 06.03.2017 ? 16.0-1-2,3 or 17.0 ?
  12. im source sind sie ja bereits als COSTUME_SASH definiert genauso wie im dump_proto source das ist ja das komische ? ;D
×
×
  • 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.