HACKED

HAYALET HACK TEAM....!!!

Herkesin Bir Ölüm Günü Vardır ! ! !

oOoOpPpPsSss Çekerim emaneti Sikerim Adaleti ! ! !

BLONDE_BOY & BLUE_HACKER

BLACK HACKER

iletişim : blonde@hayalethack.com

BLACK_HACKER SENI UNUTMAYACAGIZ BEE

EVETT HER SEYIN ZAMANI GELDI BLACK KARDESIM HAYALET HACK TEAM A SENIN YOKLUGUNU ARATTIRMAYACAGIZ SEN YINE BIZIM KOMUTANIMIZ OLACAKSIN SENIN YERIN HER ZAMAN KALBIMIZDE VE HAYALET HACK TEAMIN BASIDIR :(((( SU ALTTAKI RESMI OMRUMCE SAKLAYACAM

BIZI ACIKDAN HACKLEYEN OLMADI SEREFSIZ LAMERLER ALIN LAN AMINA KODUGUMUN PICLERI BLACK GITTI GELIN HAYALET HACKI HACKLEYIN BAKALIM O GITTI DIYE HAYALETI YANLIZMI ZANNETTINIZ BLACK KALBIMIZDE YASIOR:@:@:@ ACIKTAN HACKLEYEMEZSENIZ ANANIZI SIKEYIM

WWW.HAYALETHACK.GEN.TR

COK YAKINDA ONLINE

BENI YARGILAMADAN INFAZ YAPMAYIN BASINIZA BELA OLURUM, ARKANIZDA GOLGE ,ICINIZDE KORKU ,AZRAILINIZ ,MEZAR TASINIZA KONU OLURUM

PKK'lıların saklandığı mağarada yazan yazı
-------------------------------------------------------
*Eğer bir asker sizi gördüğü zaman durmadan ateş
ediyorsa bilinki o acemidir
kurşununun bitmesini bekleyin, bittiği zaman gidin
kafasına sıkın.

*Eğer sadece sizi gördüğü zaman ateş ediyorsa
saklandığınız zaman duruyorsa o
bir komandodur, kanınızı ve canınızı kurtarın.

*Eğer sizi gördüğü zaman ortadan kaybolmuşsa ve etraf sessizse bilin ki o
bordo berelidir merak etmeyin o sizi bulur.

 

HACKED....

DESPERADO & FURİOUS & FREWAL & BLONDE_BOY & BLUE & BY MC TOVBEKAR & ANACADO & KRATERYA & S3S & SAGG & X_DOOMS_X & ÇAMUR & PEGASUS & JOK3R  & By_Eddy & Ghost_Dracula & MILITAN & EDA & GOLGE // Initialize the template... mainly little settings. function template_init() { global $context, $settings, $options, $txt; /* Use images from default theme when using templates from the default theme? if this is 'always', images from the default theme will be used. if this is 'defaults', images from the default theme will only be used with default templates. if this is 'never' or isn't set at all, images from the default theme will not be used. */ $settings['use_default_images'] = 'never'; /* What document type definition is being used? (for font size and other issues.) 'xhtml' for an XHTML 1.0 document type definition. 'html' for an HTML 4.01 document type definition. */ $settings['doctype'] = 'xhtml'; /* The version this template/theme is for. This should probably be the version of SMF it was created for. */ $settings['theme_version'] = '1.1 RC3'; /* Set a setting that tells the theme that it can render the tabs. */ $settings['use_tabs'] = true; /* Use plain buttons - as oppossed to text buttons? */ $settings['use_buttons'] = true; /* Show sticky and lock status seperate from topic icons? */ $settings['seperate_sticky_lock'] = true; // Color changer if(!$context['user']['is_guest'] && isset($_POST['options']['theme_color'])) { include_once($GLOBALS['sourcedir'] . '/Profile.php'); makeThemeChanges($context['user']['id'], $settings['theme_id']); $options['theme_color'] = $_POST['options']['theme_color']; } elseif ($context['user']['is_guest']) { if (isset($_POST['options']['theme_color'])) { $_SESSION['theme_color'] = $_POST['options']['theme_color']; $options['theme_color'] = $_SESSION['theme_color']; } elseif (isset($_SESSION['theme_color'])) $options['theme_color'] = $_SESSION['theme_color']; } } // The main sub template above the content. function template_main_above() { global $context, $settings, $options, $scripturl, $txt, $modSettings; // Show right to left and the character set for ease of translating. echo ' ', $context['page_title'], ''; // Any color set by user? if (isset($options['theme_color'])) $settings['theme_main_color'] = $options['theme_color']; // If not set, or if not allowed to set if(!isset($options['theme_color']) || (isset($settings['allow_color_change']) && $settings['allow_color_change'] == 'no')) { // Defaults. $options['theme_color'] = isset($settings['theme_main_color']) ? $settings['theme_main_color'] : 'lightblue'; $settings['theme_main_color'] = $options['theme_color']; } // The ?rc2 part of this link is just here to make sure browsers don't cache it wrongly. echo ' '; /* Internet Explorer 4/5 and Opera 6 just don't do font sizes properly. (they are big...) Thus, in Internet Explorer 4, 5, and Opera 6 this will show fonts one size smaller than usual. Note that this is affected by whether IE 6 is in standards compliance mode.. if not, it will also be big. Standards compliance mode happens when you use xhtml... */ if ($context['browser']['needs_size_fix']) echo ' '; // Show all the relative links, such as help, search, contents, and the like. echo ' '; // If RSS feeds are enabled, advertise the presence of one. if (!empty($modSettings['xmlnews_enable'])) echo ' '; // If we're viewing a topic, these should be the previous and next topics, respectively. if (!empty($context['current_topic'])) echo ' '; // If we're in a board, or a topic for that matter, the index will be the board's index. if (!empty($context['current_board'])) echo ' '; // We'll have to use the cookie to remember the header... if ($context['user']['is_guest']) $options['collapse_header'] = !empty($_COOKIE['upshrink']); // Output any remaining HTML headers. (from mods, maybe?) echo $context['html_headers'], ' '; // the routine for the info center upshrink echo ' '; echo '

'; if (!empty($settings['show_name_near_logo'])) echo ' '; if (!empty($settings['top_right_html'])) echo ' '; echo '
'; if(!($settings['logo_not_show'])) { if (empty($settings['header_logo_url'])) echo ' ', $context['forum_name'], ''; else echo ' ', $context['forum_name'], ''; } echo ' ', $context['forum_name'], '
', $settings['top_right_html'], '
'; // Show a random news item? (or you could pick one from news_lines...) if (!empty($settings['enable_news'])) echo ' '; echo '
', $txt[102], ': ', $context['random_news_line'], '
  '; // Search within current topic? if (!empty($context['current_topic'])) echo ' '; // If we're on a certain board, limit it to this board ;). elseif (!empty($context['current_board'])) echo ' '; echo '
'; // Here we start the main page, after the menu bar. // Unfortunately, IE 6 couldn't handle a div here with a CSS background property, no matter how much I tried. So we use a table for IE here. I love Firefox ^_^ visit getfirefox.com for more info. // It is time for Microsoft to get rid of IE and make Firefox their primary browser :P // Ok, Opera can also display the div properly. I love both FF & Opera :) echo ' ', $context['browser']['is_ie'] ? '
' : '
', ' *
'; if($context['user']['is_logged']) echo ' ', $txt['hello_member_ndt'], ' ', $context['user']['name'] , ''; else echo $txt['welcome_guest']; echo ' ' , $context['current_time'], '
'; if(!empty($settings['custom_global_html'])) echo '
', $settings['custom_global_html'], '
'; // The main content should go here. echo '
'; } function template_main_below() { global $context, $settings, $options, $scripturl, $txt; echo '
'; // Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere! echo '
', $txt['powered_by_mysql'], ' ', $txt['powered_by_php'], ' ', theme_copyright(), '

'. $settings['custom_copyright'] . '
', $txt['valid_xhtml'], ' ', $txt['valid_css'], ' Dilber MC Theme by HarzeM
'; // Show the load time? if ($context['show_load_time']) echo ' ', $txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], ''; // This is an interesting bug in Internet Explorer AND Safari. Rather annoying, it makes overflows just not tall enough. if (($context['browser']['is_ie'] && !$context['browser']['is_ie4']) || $context['browser']['is_mac_ie'] || $context['browser']['is_safari']) { // The purpose of this code is to fix the height of overflow: auto div blocks, because IE can't figure it out for itself. echo ' '; } echo '
',($context['browser']['is_ie']) ? '
' : '
' , ' '; // The following will be used to let the user know that some AJAX process is running echo ' '; } // Show a linktree. This is that thing that shows "My Community | General Category | General Discussion".. function theme_linktree() { global $context, $settings, $options; echo ''; } // Show the menu up top. Something like [home] [help] [profile] [logout]... function template_menu() { global $context, $settings, $options, $scripturl, $txt; // Work out where we currently are. $current_action = 'home'; if (in_array($context['current_action'], array('admin', 'ban', 'boardrecount', 'cleanperms', 'detailedversion', 'dumpdb', 'featuresettings', 'featuresettings2', 'findmember', 'maintain', 'manageattachments', 'manageboards', 'managecalendar', 'managesearch', 'membergroups', 'modlog', 'news', 'optimizetables', 'packageget', 'packages', 'permissions', 'pgdownload', 'postsettings', 'regcenter', 'repairboards', 'reports', 'serversettings', 'serversettings2', 'smileys', 'viewErrorLog', 'viewmembers'))) $current_action = 'admin'; if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm'))) $current_action = $context['current_action']; if ($context['current_action'] == 'search2') $current_action = 'search'; if ($context['current_action'] == 'theme') $current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' ? 'profile' : 'admin'; // Dummy place holder, to set the height echo' '; // Show the [home] button. echo' ' , $txt[103] , ' '; // Show the [help] button. echo' ' , $txt[119] , ' '; // How about the [search] button? if ($context['allow_search']) echo' ' , $txt[182] , ' '; // Is the user allowed to administrate at all? ([admin]) if ($context['allow_admin']) echo' ' , $txt[2] , ' '; // Edit Profile... [profile] if ($context['allow_edit_profile']) echo' ' , $txt[79] , ' '; // Go to PM center... [pm] if ($context['user']['is_logged'] && $context['allow_pm']) echo' ' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '['. $context['user']['unread_messages'] . ']' : '' , ' '; // The [calendar]! if ($context['allow_calendar']) echo' ' , $txt['calendar24'] , ' '; // the [member] list button if ($context['allow_memberlist']) echo' ' , $txt[331] , ' '; // If the user is a guest, show [login] button. if ($context['user']['is_guest']) echo' ' , $txt[34] , ' '; // If the user is a guest, also show [register] button. if ($context['user']['is_guest']) echo' ' , $txt[97] , ' '; // Otherwise, they might want to [logout]... if ($context['user']['is_logged']) echo' ' , $txt[108] , ' '; // Dummy place holder, to end things echo' '; } // Generate a strip of buttons. function template_button_strip($button_strip, $direction = 'top', $force_reset = false, $custom_td = '') { global $settings, $buttons, $context, $txt, $scripturl; // Create the buttons... foreach ($button_strip as $key => $value) { if (isset($value['test']) && empty($context[$value['test']])) { unset($button_strip[$key]); continue; } elseif (!isset($buttons[$key]) || $force_reset) $buttons[$key] = '' . $txt[$value['text']] . ''; $button_strip[$key] = $buttons[$key]; } if (empty($button_strip)) return ' '; echo '   ', implode('  |  ', $button_strip) , '  '; } ?>'main_above' Teması Yüklenemiyor.