Jump to content

CriticalError

L2Client Developer
  • Posts

    6,519
  • Credits

  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    0%

Everything posted by CriticalError

  1. sorry for double post but lagged web :S some mod delete please
  2. me I found in L2.EXE with hex editor ;)
  3. ok here some steps. 1° 2° 3° 4° 5° File Export
  4. what happens if the member has already VIP won?
  5. so what can I do? because I tryed with l2jserver pack and again same, so don't think is a problem in script
  6. you buy tool from him, have a section for support L2TOOL in forum, try search there, maybe you miss some step.
  7. thanks for reply but I try with version 5.1,5.5 and 6.0 but always same error.
  8. Hello to all, well today I try install in my laptop a CT2.5 pack and always fail, I try with every pack found in the new but nothing worked and always same error. 1° I configure name of db default (l2jdb) and password. 2° mysql connection work good because I tested that and can connnect. 3° I config path of mysql server in database_installer.bat
  9. so what's the problem about this if only what I bring to help others,better worry about yourself before you throw shit to others, only allows people to leave forum.
  10. Well this is all for me I think, maybe later I try found other topics created in 2011 but for this is all ;) Lineage II Exploits [English] [share] AC Tool 5.4.0 Released!!! [share] Lineage II Client Mods [share] systemmsg-e Colored [CT2.5] [Guide]Unreal Model Viewer (How Get Textures from Package) [uTX,UKX] [Guide]How Import PSK-PSA to UnrealED [Guide]How Import PSK-PSA to UnrealED [useful Information]Some Info about files Lineage II [General] Lineage II Develop [L2J] English 6 GM Shop [interlude] [Release] L2Calc 1.34 L2Data3 v.3.0 L2Data3 v.3.0 [share] Lineage 2 Stats Editor [Guide] From PSD to HTML - CSS
  11. first to have a little more respect for all people who are trying to help, and in any case that does not mean things are you here, then thought better and read better before.
  12. just copy file xml and rename to Epic Mask o what you want do, and you need search ID's for Party Mask is a ID for edit that and just change ID's for add new customs in Client
  13. what you don't understand man? l2jserver adapt that to new revisions CT2.5, I mean no more install custom from tables in NAVICAT, this is maked via xml files in the folder items, this is what I know for know.
  14. solved http://maxcheaters.com/forum/index.php?topic=201577.0
  15. what you mean with don't work map? I don't tested in Interlude, maybe yes you can try because is the latest version.
  16. well here holy! so many topics can read. PD: for all I can read I'm sure is a problem with a firewall blocking your http from svn so try read and tell me good luck. http://languor.us/eclipse-subversion-ra-layer-request-failed-could-not-read-status-line-errors http://www.velocityreviews.com/forums/t389191-new-to-subclipse-behind-restrictive-firewall-and-ra-layer-request-failed.html http://support.myversioncontrol.com/discussions/problems/1212-ra-layer-request-failed
  17. put in config Everybody has ADMIN= True login and make you ADMIN, when you done, just change this config and is all.
  18. Hello to all, well today we look at desktop publishing layout of the PSD (Photoshop file) to the valid code and cross-browser HTML / CSS. Just analyze a couple of fixes for Internet Explorer 6. Concept Design Designed by Chris Spooner is a layout for a blog on WordPress. Gray background, combined with splashes of different colors in the header and the various buttons and links provide an excellent effect. Cutting PSD Layout always starts with the cutting layout. First of all let's get down to the background of those in the header. Since the image contains a variety of gradients and colors, then save it as JPEG. In the same way cut out each element in the design. In some cases, you have to turn off the upper layers, for example, the background for the button with the date. Once you're done with pulling out pictures, you will have a folder with all images. Some of them will be repeated in the background when the others will serve as a common graphical components. First, let's those zeroes styles that will not allow browsers to add arbitrary padding. Then set the font and background for a tag body. For the block-container we specify margin: 0 auto;, so it appears on the screen. body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, form, fieldset, input, blockquote { margin: 0; padding: 0; border: 0; } body { font-family: Helvetica, Arial, Sans-Serif; line-height: 24px; background: #eee url(images/body-bg.jpg) center top no-repeat; } #container { width: 925px; margin: 0 auto; padding: 143px 0 0 0; } Now let's cap. The only thing I would like to mention here - the category should be transformed to uppercase letters in accordance with the design. #header { background: url(images/header-bg.png) rightright bottombottom no-repeat; overflow: hidden; padding: 0 0 50px 0; } #header h1 { float: left; } #header ul#categories { float: rightright; list-style: none; margin: 16px 0 0 0; } #header ul#categories li { float: left; margin: 0 0 0 40px; } #header ul#categories li a { display: block; font-size: 14px; font-weight: bold; text-transform: uppercase; color: #a42988; text-shadow: 0 2px 0px #fff; text-decoration: none; } #header ul#categories li a:hover { color: #006ab1; } Our layout now beginning to take shape. Further customize our content and sidebar. Since these two columns are arranged side by side, one would have to specify the float, and set overflow value to hidden. Will also need to set styles for references. We have to set the date of the map background and positioning around the unit relevant news. #content { background: url(images/content-bg.png) rightright top repeat-y; overflow: hidden; } #content a { font-weight: bold; text-transform: uppercase; color: #a42988; text-shadow: 0 2px 0px #fff; text-decoration: none; } #content a:hover { color: #006ab1; } #content #main { width: 685px; float: left; padding: 55px 0 0 0; } #content #main h2 { margin: 0 0 16px 0; } #content #main p { margin: 0 0 25px 0; color: #474747; font-size: 15px; } #content #main .post { background: url(images/post-divider.png) rightright bottombottom no-repeat; padding: 0 47px 55px 0; margin: 0 0 55px 0; overflow: hidden; } #content #main .post .date { width: 62px; height: 57px; float: left; padding: 15px 0 0 0; margin: 0 20px 0 0; background: #0085cc url(images/date-bg.jpg); text-align: center; } #content #main .post .date p { font-size: 40px; font-weight: bold; color: #fff; text-shadow: 0 2px 3px #006ab1; } #content #main .post .date p span { margin: 5px 0 0 0; display: block; font-size: 17px; font-weight: normal; text-transform: uppercase; } #content #main .post .post-content { width: 556px; float: left; } #content #main .post .post-content ul.post-meta { width: 515px; height: 21px; list-style: none; padding: 14px 20px; background: #d6d6d6 url(images/meta-bg.jpg); } #content #main .post .post-content ul.post-meta li { float: left; margin: 0 40px 0 0; font-size: 15px; font-weight: bold; text-transform: uppercase; color: #fff; text-shadow: 0px 2px 3px #b8b8b8; } #content #main .post .post-content ul.post-meta li.read-more { float: rightright; margin: 0 0 0 0; } #content #main .post .post-content ul.post-meta li a { color: #fff; text-shadow: 0px 2px 3px #b8b8b8; } #content #main .post .post-content ul.post-meta li a:hover { color: #eee; } Quite a lot still needed for content, but this is the main part! So far we have obtained all just fine. Since the content we're finished, proceed to the sidebar. It is necessary to ask oborazhenie link-buttons with the background and give them a beautiful display. Just do not forget about the subscription button (on setting this up, I wrote earlier). #content #side { width: 200px; float: left; padding: 5px 20px; } #content #side p#subscribe a { display: block; height: 30px; font-size: 20px; color: #fff; padding: 7px 0 0 45px; margin: 0 0 15px 0; text-shadow: 0px 2px 3px #b8b8b8; background: url(images/rss-icon.png) left no-repeat; } #content #side p#subscribe a:hover { color: #eee; } #content #side ul#pages { list-style: none; margin: 0 0 30px 0; } #content #side ul#pages li { margin: 0 0 5px 0; } #content #side ul#pages li a { display: block; width: 157px; height: 23px; padding: 12px 20px; text-align: center; background: #eee url(images/sidebar-btn.png); } We almost came close to an end. Just a couple of steps ahead of him. Now do the social bookmarks. In HTML code, we asked them the usual list, but by now we give the list of styles they are more or less human form. Also a search form. Here we choose to display the button inside the field. #content #side h3 { font-size: 20px; text-transform: uppercase; color: #fff; margin: 0 0 5px 0; text-shadow: 0px 2px 3px #b8b8b8; } #content #side ul#follow-me { overflow: hidden; list-style: none; margin: 0 0 30px 0; } #content #side ul#follow-me li { float: left; margin: 0 8px 8px 0; } #content #side ul#follow-me li a { display: block; width: 32px; height: 32px; text-indent: -9999px; } #content #side ul#follow-me li a.twitter { background: url(images/social-icons/twitter_32.png); } #content #side ul#follow-me li a.facebook { background: url(images/social-icons/facebook_32.png); } #content #side ul#follow-me li a.flickr { background: url(images/social-icons/flickr_32.png); } #content #side ul#follow-me li a.youtube { background: url(images/social-icons/youtube_32.png); } #content #side ul#follow-me li a.vimeo { background: url(images/social-icons/vimeo_32.png); } #content #side form#search { margin: 0 0 30px 0; } #content #side form#search input.search-bar { width: 135px; height: 43px; padding: 1px 45px 0 15px; float: left; background: #eee url(images/search-bar.png); font-size: 15px; color: #474747; } #content #side form#search input.search-btn { width: 27px; height: 27px; float: rightright; margin: -36px 15px 0 0; cursor: pointer; background: url(images/search-btn.png); text-indent: -9999px; padding: 0 0 0 27px; } That we have already happened? Mend IE 6 All browsers are displayed very well except .... true - Internet Explorer 6. For him, we need to create a separate file and write back some clarification. Proceed. #content #side, #content #main .post .date, #content #main .post .post-content ul.post-meta { overflow: hidden; } #content, #footer, #header { height: 100%; } The HTML code between the head tags to add a connection to IE 6. <!--[if IE 6]> <link href="css/ie6.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> Final result On this work with the layout is finished. Uh ... Now we have finished svertanny layout. To bring to perfection When everything is ready, it is worth to think about functionality. To page opens in the browser faster, use the compressor package webjoe PD: but someone tell you to do this in this section, is wrong, but why? because the web that provide PSD bone here many are only skin on the web, with this in may build the website from PSD, hope you find it helpful. Credits by Gotessa for post and webjoe for guide
  19. well for me yes is a external program used for make that, but maybe wrong, let me check later that for see it's possible ;)
  20. check ID, XML, .DAT, I think is something with ID's of items, you continue getting this problem try remake XML files, I say that because I get problem like that before and fix that remaking XML files.
  21. well other guy make this request and say same, think this is modifi with a tool and not possible for make that in client.
  22. well my promise, check first post and have fun English done :)
×
×
  • Create New...