+ الرد على الموضوع
صفحة 3 من 14 الأولىالأولى 1 2 3 4 5 13 ... الأخيرةالأخيرة
النتائج 21 إلى 30 من 132

الموضوع: " مكتبة الهاكات الجيل الثالث "

  1. #21
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    21- افضل الاعضاء تفاعلا لهذا اليوم

    إفتح ملف/ index.php
    إبحث عن/
    كود PHP:
    eval('$navbar = "' fetch_template('navbar') . '";'); 
    إستبدله بهذا الكود /
    كود PHP:
    // Hack: most active user
    $start TIMENOW TIMENOW 86400;
    $end $start 86400;
    $maxposter $DB_site->query_first("SELECT user.username,user.userid,count(*) total FROM ".TABLE_PREFIX."user AS user,".TABLE_PREFIX."post AS post WHERE user.userid=post.userid AND post.dateline BETWEEN $start AND $end GROUP BY post.userid ORDER BY total DESC LIMIT 1");

    eval(
    '$navbar = "' fetch_template('navbar') . '";'); 
    إفتح تمبلت/ FORUMHOME
    إبحث عن/
    كود PHP:
    <div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div
    إستبدله بالكود الجديد/
    كود PHP:
    <div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>
    <if 
    condition="$maxposter[userid]"><div><phrase 1="member.php?$session[sessionurl]u=$maxposter[userid]" 2="$maxposter[username]">$vbphrase[most_active_user_in_forums]</phrase></div></if> 
    من لوحة التحكم توجه إلى
    Phrase Manager
    ثم
    Add New Phrase
    من القائمة المنسدله
    Type ( نوع العبارة )
    إختر
    Global
    وفي
    Name ( اسم المتغير )
    ضع هذه العبارة
    most_active_user_in_forums
    وفي
    Text ( نص )
    ادرج هذه الجملة
    العضو الأكثر نشاطأ في المنتدى لهذا اليوم : <a href="{1}">{2}</a>




  2. #22
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    22- هاك المستوى

    إفتح ملف/ includes/functions_showthread.php
    إبحث عن/
    كود PHP:
    $post['posts'] = vb_number_format($post['posts']); 
    ضف بعده /
    كود PHP:
     //hack level par akex - http://forum.vbulletin-france.com 
      
    if ($post[posts]) {
        
    $niveau="0";
        
    $experience_aft="0";
        
    $experience_bef="0";
        while (
    $experience_aft<=$post[posts]) {
          
    $experience_bef+=10*pow($niveau,2);
          
    $niveau++;
          
    $experience_aft+=10*pow($niveau,2);
        } 
        
    $post[exp]=$post[posts];
        
    $post[perexp]=floor(100*($post[exp]-$experience_bef)/($experience_aft-$experience_bef));
        
    $post[perexp1]=100-$post[perexp];    
        
    $post[exp_max]=$experience_aft;
        
    $post[niveau]=$niveau;
        
        
    $post[hp_max]=$post[niveau]*50;
        
    $post[mp_max]=$post[niveau]*20;
        

    $experience_befiif($experience_bef>0$experience_bef-1'0');

        
    $derposts=$DB_site->query("
                    SELECT dateline FROM " 
    TABLE_PREFIX "post where userid=$post[userid] order by dateline asc limit $experience_bef, 18446744073709551615
                "
    );

    //barre hp

    $premierpost=0;
    $ancienpost=0;
    $nouveaupost=0;
    $post[hp]=$post[hp_max];
        while (
    $derpost $DB_site->fetch_array($derposts)) {
        if (!
    $premierpost) {
          
    $ancienpost $premierpost $derpost[dateline]; 
        } else {
          
    $nouveaupost $derpost[dateline];
          
    $diff_post=($nouveaupost-$ancienpost)/(3600*24);
      
          if (
    $diff_post>1) {
            
    $post[hp]-=floor($diff_post);
              
    $post[hp]=iif($post[hp]<0'0'$post[hp]);
          } elseif (
    $diff_post<=1) {
            
    $post[hp]++;
              
    $post[hp]=iif($post[hp]>$post[hp_max], $post[hp_max], $post[hp]);
          }
          
    $ancienpost=$nouveaupost;
        }
      }

    $diff_post=(TIMENOW-$ancienpost)/(3600*24);
    if (
    $diff_post>1) {
      
    $post[hp]-=floor($diff_post);
              
    $post[hp]=iif($post[hp]<0'0'$post[hp]);
    } elseif (
    $diff_post<=1) {
      
    $post[hp]++;
              
    $post[hp]=iif($post[hp]>$post[hp_max], $post[hp_max], $post[hp]);
    }

    $post[perhp]=floor(100*$post[hp]/$post[hp_max]);
    $post[perhp1]=100-$post[perhp];
      
    //barre mp 
        
    $derthreads=$DB_site->query("
                    SELECT dateline FROM " 
    TABLE_PREFIX "thread where postuserid='$post[userid]' and dateline>='$premierpost' order by dateline asc
                "
    ); 

      
    $ancienthread=0;
    $nouveauthread=0;
    $post[mp]=$post[mp_max];
        while (
    $derthread $DB_site->fetch_array($derthreads)) {
        if (!
    $ancienthread) {
          
    $ancienthread $derthread[dateline]; 
        } else {
          
    $nouveauthread $derthread[dateline];
          
    $diff_thread=($nouveauthread-$ancienthread)/(3600*24);
      
          if (
    $diff_thread>1) {
            
    $post[mp]-=floor($diff_thread);
              
    $post[mp]=iif($post[mp]<0'0'$post[mp]);
          } elseif (
    $diff_thread<=1) {
            
    $post[mp]++;
              
    $post[mp]=iif($post[mp]>$post[mp_max], $post[mp_max], $post[mp]);
          }
          
    $ancienthread=$nouveauthread;
        }
      }

    $diff_thread=(TIMENOW-$ancienthread)/(3600*24);
    if (
    $diff_thread>1) {
      
    $post[mp]-=floor($diff_thread);
              
    $post[mp]=iif($post[mp]<0'0'$post[mp]);
    } elseif (
    $diff_thread<=1) {
      
    $post[mp]++;
              
    $post[mp]=iif($post[mp]>$post[mp_max], $post[mp_max], $post[mp]);
    }  
      
    $post[permp]=floor(100*$post[mp]/$post[mp_max]);
    $post[permp1]=100-$post[permp];





      
    //hack level par akex - http://forum.vbulletin-france.com 
    أفتح تمبلت / postbit أو postbit_legacy
    أبحث عن /
    كود PHP:
    <td width="100%">&nbsp;</td




  3. #23
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    22- هاك المستوى

    إفتح ملف/ includes/functions_showthread.php
    إبحث عن/
    كود PHP:
    $post['posts'] = vb_number_format($post['posts']); 
    ضف بعده /
    كود PHP:
     //hack level par akex - http://forum.vbulletin-france.com 
      
    if ($post[posts]) {
        
    $niveau="0";
        
    $experience_aft="0";
        
    $experience_bef="0";
        while (
    $experience_aft<=$post[posts]) {
          
    $experience_bef+=10*pow($niveau,2);
          
    $niveau++;
          
    $experience_aft+=10*pow($niveau,2);
        } 
        
    $post[exp]=$post[posts];
        
    $post[perexp]=floor(100*($post[exp]-$experience_bef)/($experience_aft-$experience_bef));
        
    $post[perexp1]=100-$post[perexp];    
        
    $post[exp_max]=$experience_aft;
        
    $post[niveau]=$niveau;
        
        
    $post[hp_max]=$post[niveau]*50;
        
    $post[mp_max]=$post[niveau]*20;
        

    $experience_befiif($experience_bef>0$experience_bef-1'0');

        
    $derposts=$DB_site->query("
                    SELECT dateline FROM " 
    TABLE_PREFIX "post where userid=$post[userid] order by dateline asc limit $experience_bef, 18446744073709551615
                "
    );

    //barre hp

    $premierpost=0;
    $ancienpost=0;
    $nouveaupost=0;
    $post[hp]=$post[hp_max];
        while (
    $derpost $DB_site->fetch_array($derposts)) {
        if (!
    $premierpost) {
          
    $ancienpost $premierpost $derpost[dateline]; 
        } else {
          
    $nouveaupost $derpost[dateline];
          
    $diff_post=($nouveaupost-$ancienpost)/(3600*24);
      
          if (
    $diff_post>1) {
            
    $post[hp]-=floor($diff_post);
              
    $post[hp]=iif($post[hp]<0'0'$post[hp]);
          } elseif (
    $diff_post<=1) {
            
    $post[hp]++;
              
    $post[hp]=iif($post[hp]>$post[hp_max], $post[hp_max], $post[hp]);
          }
          
    $ancienpost=$nouveaupost;
        }
      }

    $diff_post=(TIMENOW-$ancienpost)/(3600*24);
    if (
    $diff_post>1) {
      
    $post[hp]-=floor($diff_post);
              
    $post[hp]=iif($post[hp]<0'0'$post[hp]);
    } elseif (
    $diff_post<=1) {
      
    $post[hp]++;
              
    $post[hp]=iif($post[hp]>$post[hp_max], $post[hp_max], $post[hp]);
    }

    $post[perhp]=floor(100*$post[hp]/$post[hp_max]);
    $post[perhp1]=100-$post[perhp];
      
    //barre mp 
        
    $derthreads=$DB_site->query("
                    SELECT dateline FROM " 
    TABLE_PREFIX "thread where postuserid='$post[userid]' and dateline>='$premierpost' order by dateline asc
                "
    ); 

      
    $ancienthread=0;
    $nouveauthread=0;
    $post[mp]=$post[mp_max];
        while (
    $derthread $DB_site->fetch_array($derthreads)) {
        if (!
    $ancienthread) {
          
    $ancienthread $derthread[dateline]; 
        } else {
          
    $nouveauthread $derthread[dateline];
          
    $diff_thread=($nouveauthread-$ancienthread)/(3600*24);
      
          if (
    $diff_thread>1) {
            
    $post[mp]-=floor($diff_thread);
              
    $post[mp]=iif($post[mp]<0'0'$post[mp]);
          } elseif (
    $diff_thread<=1) {
            
    $post[mp]++;
              
    $post[mp]=iif($post[mp]>$post[mp_max], $post[mp_max], $post[mp]);
          }
          
    $ancienthread=$nouveauthread;
        }
      }

    $diff_thread=(TIMENOW-$ancienthread)/(3600*24);
    if (
    $diff_thread>1) {
      
    $post[mp]-=floor($diff_thread);
              
    $post[mp]=iif($post[mp]<0'0'$post[mp]);
    } elseif (
    $diff_thread<=1) {
      
    $post[mp]++;
              
    $post[mp]=iif($post[mp]>$post[mp_max], $post[mp_max], $post[mp]);
    }  
      
    $post[permp]=floor(100*$post[mp]/$post[mp_max]);
    $post[permp1]=100-$post[permp];





      
    //hack level par akex - http://forum.vbulletin-france.com 
    أفتح تمبلت / postbit أو postbit_legacy
    أبحث عن /
    كود PHP:
    <td width="100%">&nbsp;</td
    أستبدله بالكود التالي/
    كود PHP:
    <table cellpadding="0" cellspacing="1" border="0"><tr><td>
    <
    fieldset class="fieldset" >
                    <
    legend>المستوى $post[niveau]</legend>
    <
    table cellpadding="0" cellspacing="1" border="0" width="100%">
    <
    tr>
    <
    td><span class="smallfont">HP $post[hp]/$post[hp_max]</span>
    </
    td>
    <
    td>
    <
    table cellpadding="0" cellspacing="0" width="100" border="0" bordercolor="#000000" style="border: 1px solid #000000;"><tr height="8"><td width="$post[perhp]" background="images/barres/hp.gif"></td>
    <if 
    condition="$post[perhp1]">
    <
    td width="$post[perhp1]"></td></if></tr></table>
    </
    td></tr>

    <
    tr>
    <
    td><span class="smallfont">MP $post[mp]/$post[mp_max]</span>
    </
    td>
    <
    td>
    <
    table cellpadding="0" cellspacing="0" width="100" border="0" bordercolor="#000000" style="border: 1px solid #000000;"><tr height="8"><td width="$post[permp]" background="images/barres/mp.gif"></td>
    <if 
    condition="$post[permp1]">
    <
    td width="$post[permp1]"></td></if></tr></table>
    </
    td></tr>

    <
    tr>
    <
    td><span class="smallfont">EXP $post[exp]/$post[exp_max]</span>
    </
    td>
    <
    td>
    <
    table cellpadding="0" cellspacing="0" width="100" border="0" bordercolor="#000000" style="border: 1px solid #000000;"><tr height="8"><td width="$post[perexp]" background="images/barres/exp.gif"></td>
    <if 
    condition="$post[perexp1]">
    <
    td width="$post[perexp1]"></td></if></tr></table>
    </
    td></tr>
    </
    table>
    </
    fieldset>
    </
    td></tr></table
    افتح تمبلت / postbit_legacy
    ابحث عن/
    كود PHP:
    <if condition="$post['age']"><tr
        <
    td align="right"><span class="smallfont">$vbphrase[age] :</span></td>
        <
    td align="right"><span class="smallfont">$post[age]</span></td>
      </
    tr></if>
          </
    tr>
    </
    table>

    </
    fieldset
    أضف بعده/
    كود PHP:
    <table cellpadding="0" cellspacing="1" border="0"><tr><td>
    <
    fieldset class="fieldset" >
                    <
    legend>المستوى $post[niveau]</legend>
    <
    table cellpadding="0" cellspacing="1" border="0" width="100%">
    <
    tr>
    <
    td><span class="smallfont">HP $post[hp]/$post[hp_max]</span>
    </
    td>
    <
    td>
    <
    table cellpadding="0" cellspacing="0" width="100" border="0" bordercolor="#000000" style="border: 1px solid #000000;"><tr height="8"><td width="$post[perhp]" background="images/barres/hp.gif"></td>
    <if 
    condition="$post[perhp1]">
    <
    td width="$post[perhp1]"></td></if></tr></table>
    </
    td></tr>

    <
    tr>
    <
    td><span class="smallfont">MP $post[mp]/$post[mp_max]</span>
    </
    td>
    <
    td>
    <
    table cellpadding="0" cellspacing="0" width="100" border="0" bordercolor="#000000" style="border: 1px solid #000000;"><tr height="8"><td width="$post[permp]" background="images/barres/mp.gif"></td>
    <if 
    condition="$post[permp1]">
    <
    td width="$post[permp1]"></td></if></tr></table>
    </
    td></tr>

    <
    tr>
    <
    td><span class="smallfont">EXP $post[exp]/$post[exp_max]</span>
    </
    td>
    <
    td>
    <
    table cellpadding="0" cellspacing="0" width="100" border="0" bordercolor="#000000" style="border: 1px solid #000000;"><tr height="8"><td width="$post[perexp]" background="images/barres/exp.gif"></td>
    <if 
    condition="$post[perexp1]">
    <
    td width="$post[perexp1]"></td></if></tr></table>
    </
    td></tr>
    </
    table>
    </
    fieldset>
    </
    td></tr></table

    مجلد images في المنتدى
    الملفات المرفقة
      لا تستطيع تحميل المرفق قبل الرد




  4. #24
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    23- هاك مركز رفع الملفات للأعضاء
    24- هاك كشف الرسائل الخاصة
    25- هاك الأوسمة
    26- هاك الرهيب
    27- هاك إضافة البسملة
    الملفات المرفقة
      لا تستطيع تحميل المرفق قبل الرد




  5. #25
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    29- هاك avatars
    30- هاك النشرة اليومية
    31- هاك postbit
    32- هاك الصفحات الإضافية
    33- هاك ابتسامات
    الملفات المرفقة
      لا تستطيع تحميل المرفق قبل الرد




  6. #26
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    34- هاك سجل الزوار
    35- هاك الأعضاء المتواجدين هذا اليوم في صفحة مستقلة
    36- هاك التغير الجماعي لاعدادات الاعضاء
    37- هاك أخبر صديقك عن المنتدى
    38- هاك fileupload
    الملفات المرفقة
      لا تستطيع تحميل المرفق قبل الرد




  7. #27
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    39- هاك من العضو منع التسجيل بعضويتين

    أفتح ملف / register.php

    أبحث عن /
    كود PHP:
    eval(print_standard_error('error_alreadyregistered'));
        } 
    أضف فوقه /
    كود PHP:
    // IP Address check
        
    $keys = array('ipaddress');
        foreach (
    $keys as $key) {
            
    $resultmysql_query("SELECT * FROM adminlog WHERE ipaddress='$ipaddress'");
            if(
    mysql_num_rows($result) != 0) { 
                
    $session[$key] = (mysql_result($result,0,$key));
                eval(
    'print_output("' fetch_template('error_ipregistered') . '");');
                exit;   
            } 
        }
    // IP Address check 
    تمبلت جديد باسم/ error_ipregistered
    كود PHP:
    $stylevar[htmldoctype]
    <
    html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
    <
    head>
        <!-- 
    no cache headers -->
        <
    meta http-equiv="Pragma" content="no-cache" />
        <
    meta http-equiv="Expires" content="-1" />
        <
    meta http-equiv="Cache-Control" content="no-cache" />
        <!-- 
    end no cache headers -->
        <
    title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
        
    $headinclude
    </head>

    <
    body>
    $header
    $navbar
    <center>
    <
    table width="50%" border="1" bgcolor="E1E4F2">
      <
    tr>
        <
    td>
            
    عذراًأنت مسّجل لدينا بعضوية أخرى .. وعنوان الآي بي الخاص بك هو $ipaddress لا يمكنك التّسجيل بعضويتين في المنتدى إذا كنت تعاني من مشكلة اتصل بـ <a href="mailto:webmaster@yourname.com ">إدارة المنتدى</a
            
          </
    div>      
        </
    td>
      </
    tr>
    </
    table>
    </
    center>
    <!-- 
    forum jump -->
    <
    table cellpadding="0" cellspacing="0" border="0" align="center">
    <
    tr>
        <
    td>$forumjump</td>
    </
    tr>
    </
    table>
    <!-- / 
    forum jump -->

    $footer

    </body>
    </
    html




  8. #28
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    40- مسميات الأعضاء

    أفتح تمبلت /FORUMHOME
    أبحث عن /
    كود PHP:
    <div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div
    أضف فوقه /
    كود PHP:
    <u><b><font color="#FF0000"><font size="2">مدير المنتدى</font></font></b></u><font size="2"> - <u><b>
                    <
    font color="#800000">مشرف عام</font></b></u> - <u><b>
                    <
    font color="#008000">مشرف</font></b></u> - <u><b>
                    <
    font color="#FF00FF">من كبار الشخصيات</font></b></u> - <u><b>
                    <
    font color="#000080">عضو</font></b></u> - </font> <b>
                    <
    font color="#00CECE"><font size="2">ينتظر التفعيل</font></font></b
    لوحة التحكم /
    ثم أختر تعديل المجموعة
    ومن المربعين تأثيرات الهوتميل
    المربع الأول
    هذا الكود الذي يتم أدراجه فى كل مربع فى
    <u><font color="#FF0000"><b>
    المربع الثاني
    </b></font></u>




  9. #29
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    41- هاك التسجيل في ايام محدده

    أفتح ملف / register.php
    أبحث عن /
    كود PHP:
    eval('print_output("' fetch_template($templatename) . '");'); 
    فوقه اضف /
    كود PHP:
    // by all-the-vb (start)
    $s=date("l");
    if(
    in_array($s,array(Sunday,Tuesday,Thursday))){
    eval(
    print_standard_error('error_rtoday'));
    }
    // Day to reply And day to thread by all-the-vb  (end) 
    لوحة التحكم /
    ثم Languages & Phrases

    ثم Phrase Manager

    ثم add new phrase

    واضف التالي :
    Phrase Type: front-End Error Messages
    Varname: rtoday
    Text: نأسف
    لقد قام المشرف العام بمنع التسجيل بهذا اليوم.
    وقام بتخصيص ايام محدده للتسجيل
    حاول غدا




  10. #30
    الصورة الرمزية عوكل
    تاريخ التسجيل
    Jun 2005
    العمر
    23
    المشاركات
    200

    افتراضي

    42- هاك التوقيع مطور مع إطار المرفقات واسم للعضو

    افتح تمبلت / postbit
    أبحث عن/
    كود PHP:
                    __________________<br />
                    
    $post[signature
    أستبدله بهذا/
    كود PHP:
    <div>___________________________<br />
    <
    fieldset><legend><span lang="ar-sa">توقيع </span>$post[username]<span lang="ar-sa">
    </
    span>:</legend><table><tr><td>
    $post[signature]
    </
    td></tr>
    </
    table></fieldset




+ الرد على الموضوع
صفحة 3 من 14 الأولىالأولى 1 2 3 4 5 13 ... الأخيرةالأخيرة

المواضيع المتشابهه

  1. مشاركات: 12
    آخر مشاركة: 21-11-2005, 12:32 AM
  2. لخبيري منتدى الجيل الثالث عندي كم سؤال اذا أمكن
    بواسطة سنى الجرح في المنتدى منتدى الهاكات - [ Plugin v3.5 ]
    مشاركات: 2
    آخر مشاركة: 09-12-2004, 03:39 AM
  3. مشاركات: 3
    آخر مشاركة: 09-10-2004, 09:23 AM
  4. السلام عليكم.... إستفسار عن التصاريح .. ومجموعة إستفسارات أخرى عن الجيل الثالث
    بواسطة راعي الشـاص في المنتدى المنتدى العام vBulletin 3.5
    مشاركات: 3
    آخر مشاركة: 18-08-2004, 03:32 AM
  5. لخبراء الجيل الثالث مع التحية
    بواسطة إحساس رسام في المنتدى المنتدى العام vBulletin 3.5
    مشاركات: 5
    آخر مشاركة: 24-06-2004, 05:24 AM

مواقع النشر (المفضلة)

مواقع النشر (المفضلة)

ضوابط المشاركة

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك