النتائج 1 إلى 13 من 13

الموضوع: هاكات مطلوبه

  1. #1
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231

    هاكات مطلوبه



    Power Level Hack v2.0
    http://www.vbulletin.org/forum/showt...ighlight=level

    Auto resizing of avatars
    http://www.vbulletin.org/forum/showt...=CONTROL+PANEL

    vBmoods 1.0
    http://www.vbulletin.org/forum/showt...ghlight=vBmood

    [RELEASE] ADVANCED MOD CONTROL PANEL v2.0
    http://www.vbulletin.org/forum/showt...=CONTROL+PANEL

    Shrink Old Posts in Thread
    http://www.vbulletin.org/forum/showt...osts+in+Thread

    Search Templates by Title
    http://www.vbulletin.org/forum/showt...=CONTROL+PANEL

    New vbcode.js - vBcode and smilie user interface improvement
    http://www.vbulletin.org/forum/showt...ghlight=smiles

    Bandwidth Thieves
    http://www.vbulletin.org/forum/showt...ight=Bandwidth

    والله هاكات حلوه و مفيده بس من يا ترى يحطهم لي نا هنا في سوالف





    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً


  2. #2
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    أدري ثقلت عليكم بس ويش اسوي ما لي غيركم

    search mail list
    http://www.vbulletin.org/forum/searc...der=descending

    يا ريت واحد ينقي لينا على طريقه قائمة مراسلات على ذوقه من هذي القائمه





    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  3. #3
    تسجيل غير مقبول
    تاريخ التسجيل
    Nov 2002
    المشاركات
    250


    up





    LATE غير متواجد حالياً

  4. #4
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    What does it do?
    Well the older version has much bugs i thougt i'll create everything again it does this:

    It calculates your totalposts ($post[posts])
    And multiply's it with 2 the answer will split in 2 variabalels:

    $powerlevel
    And
    $powerlevels

    The variabel $powerlevel is for the bar
    It uses a if statement for checking that your powerlevel is not 99 or higher if it is the table will have 2 lines that's why.

    The variabel $powerlevels is the normal var this one does not use a if statement this one will come above the bar.

    Functions
    The function is:

    It has a bar

    Bugs
    There are no bugs

    Screenshot
    You'll see the screenshot on the next post





    الملفات المرفقة الملفات المرفقة
    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  5. #5
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    Screenshot:





    الملفات المرفقة الملفات المرفقة
    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  6. #6
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    Auto resizing of avatars

    Those of you with busy boards know that a lot of times users don't have a clue of how to re-size the
    pictures they want to use as avatars.

    Someone may want to use a cool pic he has on the hard drive, but the picture size is too big and
    user gets error message when trying to upload it as avatar. Many users don't know how to re-size the
    picture and they will just give up and nevere upload the avatar.

    I was ignoring this for too long, but now I came up with the solution:

    This hack will re-size the uploaded avatar on the fly, meaning there are no error messages
    when the picture is too large, it will be re-sized automatically before it's inserted into the
    database



    open the member.php file
    find thess lines:

    if ($imginfo[0]>$avatarmaxdimension or $imginfo[1]>$avatarmaxdimension) {
    @unlink($filename);
    eval("standarderror(\"".gettemplate("error_avatarbaddimensions")."\");");
    }


    replace with these lines:

    if ($imginfo=@getimagesize($filename)) {
    if ($imginfo[0]>$avatarmaxdimension or $imginfo[1]>$avatarmaxdimension) {

    $image_width = $imginfo[0];
    $image_height= $imginfo[1];
    if ($image_height > $image_width)
    {
    $sizefactor = (double) ($avatarmaxdimension / $image_height);
    }
    else
    {
    $sizefactor = (double) ($avatarmaxdimension / $image_width) ;
    }


    $newwidth = (int) ($image_width * $sizefactor);
    $newheight = (int) ($image_height * $sizefactor);

    $newsize = $newwidth . "x" . $newheight;

    $cmd = "/usr/local/bin/mogrify -resize $newsize "."$filename 2>&1";

    exec($cmd, $exec_output, $exec_retval);
    if($exec_retval > 0)
    {
    print "ERROR: exec() error: $exec_output[0]";
    }
    else
    {
    print "<P align=\"center\"><b>Image was resized from " . $image_width . "x" .
    $image_height . " to $newsize</p>";
    }

    }

    That's all.

    Now make sure in your control panel to set a really large max file size in the avatar options because
    people may now use any size pictures, so the file size may possibly be over 500K
    Don't worry, after the avatar is re-sized, the new file size will be really small.

    This hack uses the Mogrify utility from ImageMagick, which is free from imagemagick.org





    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  7. #7
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    By the way, I just added an auto-resize for attached images to keep images under the max size. Basically the same think, edit the admin/functions.php in the same manner (almost):

    if ($extension=="gif" or $extension=="jpg" or $extension=="jpeg" or $extension=="jpe" or $extension=="png" or $extension=="swf") { // Picture file
    if ($imginfo=@getimagesize($attachment)) {
    if (($maxattachwidth>0 and $imginfo[0]>$maxattachwidth) or ($maxattachheight>0 and $imginfo[1]>$maxattachheight)) {

    $image_width = $imginfo[0];
    $image_height= $imginfo[1];

    if ($image_width > $maxattachwidth)
    {
    $sizefactor = (double) ($maxattachwidth / $image_width);
    }
    elseif ($image_height > $maxattachheight)
    {
    $sizefactor = (double) ($maxattachheight / $image_height) ;
    }


    $newwidth = (int) ($image_width * $sizefactor);
    $newheight = (int) ($image_height * $sizefactor);

    $newsize = $newwidth . "x" . $newheight;

    $cmd = "/usr/local/bin/mogrify -resize $newsize "."$attachment 2>&1";

    exec($cmd, $exec_output, $exec_retval);
    if($exec_retval > 0)
    {
    print "ERROR: exec() error: $exec_output[0]";
    }
    else
    {
    print "<P align=\"center\"><b>Image was resized from " . $image_width . "x" .
    $image_height . " to $newsize</p>";
    }

    }





    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  8. #8
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    vBmoods 1.0





    الملفات المرفقة الملفات المرفقة
    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  9. #9
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    Screenshot:





    الملفات المرفقة الملفات المرفقة
    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  10. #10
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    How to install:




    Please download the attached zipfile.

    Upload plus.gif and minus.gif to your images directory

    Upload install_contractposts.php to your admin directory and run that script.





    الملفات المرفقة الملفات المرفقة
    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  11. #11
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    search template title





    الملفات المرفقة الملفات المرفقة
    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  12. #12
    عضو فعال
    تاريخ التسجيل
    Nov 2002
    المشاركات
    1,231


    باقي الهاكات فيها عله علشان كذا ما ضفتها





    __________________
    نحوَ سوالف أفضل
    عبدالكريم ابو السعود غير متواجد حالياً

  13. #13
    تسجيل غير مقبول
    تاريخ التسجيل
    Nov 2002
    المشاركات
    250


    مشكور يالغالي ما قصرت

    تحياتي ..





    LATE غير متواجد حالياً





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

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

أضف موقعك هنا| اخبار السيارات | حراج | شقق للايجار في الكويت | بيوت للبيع في الكويت | دليل الكويت العقاري | مقروء | شركة كشف تسربات المياه | شركة عزل اسطح بالرياض | عزل فوم بالرياض| عزل اسطح بالرياض | كشف تسربات المياة بالرياض | شركة عزل اسطح بالرياض