1 sayfadan 1. sayfa

ed2k Mod

İletiTarih: 26.11.2005, 23:37
CeNK
Emule linkleri için modifikasyon.
Kod: Tümünü seç
##############################################################
## Mod Title:      ed2k (BBcode)
## Mod Author: [ Oki/Mozes/Meithar ]
## Toparlayan: WEBMASTER - http://www.vatan-board.net.tc
## Mod Description:   a little comfort URL Query based on Javascript
## Mod Version:      1.1.1
##
## Installation Level:   Easy
## Installation Time:   5 Minutes
## Files To Edit:   includes/bbcode.php
##                             viewtopic.php
##
## Included Files:   n/a
##############################################################
## Before Adding This Mod To Your Forum, You Should Back Up All Files Related To This Mod
##############################################################
#
#-----[ AC ]-----
#
bbcode.php

#
#-----[ BUL ]-----
#
$bbcode_tpl['url4'] = str_replace('{DESCRIPTION}', '\\2', $bbcode_tpl['url4']);

#
#-----[ ARKASINA EKLE ]-----
#
// ed2k links
$bbcode_tpl['url5'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
$bbcode_tpl['url5'] = str_replace('{DESCRIPTION}', '\\2', $bbcode_tpl['url5']);

// ed2k links with description
$bbcode_tpl['url6'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
$bbcode_tpl['url6'] = str_replace('{DESCRIPTION}', '\\3', $bbcode_tpl['url6']);
// end ed2k links

#
#-----[ BUL ]-----
#
// phpBB code.. (no xxxx:// prefix).
$patterns[4] = "#\[url=([a-z0-9\-\.,\?!%\*_\#:;~\\&$@\/=\+\(\)]+)\](.*?)\[/url\]#si";
$replacements[4] = $bbcode_tpl['url4'];

#
#-----[ ARKASINA EKLE ]-----
#
// name code
$patterns[] = "#\[url=(ed2k://\|file\|.*\|\d+\|\w+\|/?)\](.*?)\[/url\]#si";
$replacements[] = $bbcode_tpl['url5'];

// name code
$patterns[] = "#\[url=(ed2k:(//)?\|server\|[\d\.]+\|\d+\|/?)\](.*?)\[/url\]#si";
$replacements[] = $bbcode_tpl['url6'];
// end url-ed2k

#
#-----[ BUL ]-----
#
function make_clickable($text)
{

   // pad it with a space so we can match things at the start of the 1st line.
   $ret = ' ' . $text;

   // matches an "xxxx://yyyy" URL at the start of a line, or after a space.
   // xxxx can only be alpha characters.
   // yyyy is anything up to the first space, newline, comma, double quote or <
   $ret = preg_replace("#(^|[\n ])([\w]+?://[^ \"\n\r\t<]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);

   // matches a "www|ftp.xxxx.yyyy[/zzzz]" kinda lazy URL thing
   // Must contain at least 2 dots. xxxx contains either alphanum, or "-"
   // zzzz is optional.. will contain everything up to the first space, newline,
   // comma, double quote or <.
   $ret = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r<]*)#is", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);

   // matches an email@domain type address at the start of a line, or after a space.
   // Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
   $ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);

   // Remove our padding..
   $ret = substr($ret, 1);

   return($ret);
}

#
#-----[ BUNUNLA DEGISTIR ]-----
#
function make_clickable($text)
{
   // pad it with a space so we can match things at the start of the 1st line.
   $ret = ' ' . $text;

   // ed2k file links: (by Meithar)
   // ed2k://|file|fileName|fileSize|fileHash|(optional params)|(optional params)|etc|
   $ret = preg_replace("#(^|(?<=[^\w\"']))(ed2k://\|file\|([^\\/\|:<>\*\?\"]+?)\|(\d+?)\|([a-f0-9]{32})\|(.*?)/?)(?![\"'])(?=([,\.]*?[\s<\[])|[,\.]*?$)#i", "<a href=\"\\2\">\\3</a>", $ret);
   // ed2k server links: (by Meithar)
   // ed2k://|server|serverIP|serverPort
   $ret = preg_replace("#(^|(?<=[^\w\"']))(ed2k://\|server\|([\d\.]+?)\|(\d+?)\|/?)#i", "<a href=\"\\2\">\\3:\\4</a>", $ret);

   // matches an "xxxx://yyyy" URL at the start of a line, or after a space.
   // xxxx can only be alpha characters.
   // yyyy is anything up to the first space, newline, comma, double quote or <
    $ret = preg_replace("#(^|[\n ])([\w]+?://[^ \|\"\n\r\t<]+)#i", "\\1<a href=\"\\2\">\\2</a>", $ret);

   // matches a "www|ftp.xxxx.yyyy[/zzzz]" kinda lazy URL thing
   // Must contain at least 2 dots. xxxx contains either alphanum, or "-"
   // zzzz is optional.. will contain everything up to the first space, newline,
   // comma, double quote or <.
    $ret = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r<]+)#i", "\\1<a href=\"http://\\2\">\\2</a>", $ret);

   // matches an email@domain type address at the start of a line, or after a space.
   // Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
   $ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);

   // Remove our padding..
   $ret = substr($ret, 1);

   return($ret);
}

#
#-----[ BUL ]-----
#
// Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
$ret = preg_replace("#([\n ])([a-z0-9\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)?[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);

// Remove our padding..
$ret = substr($ret, 1);

return($ret);
}

#
#-----[ ARKASINA EKLE ]-----
#
/**
* Christian Riesen - Jun 27, 2004
* Adds the "Add all links to ed2k client" link to the end of the post text
*/
function make_addalled2k_link($text,$post_id)
{
// padding
$ret = ' ' . $text;

// dig through the message for all ed2k links!
// split up by "ed2k:"
$t_ed2k_raw = explode("ed2k:",$text);

// The first item is garbage
unset($t_ed2k_raw[0]);

// no need to dig through it if there are not at least 2 links!
$t_ed2k_possibles = count($t_ed2k_raw);
if ($t_ed2k_possibles > 1)
{
unset($t_ed2k_reallinks);
foreach ($t_ed2k_raw as $t_ed2k_raw_line)
{
$t_ed2k_parts = explode("|",$t_ed2k_raw_line);
// This looks now like this (only important parts included
/*
[1]=>
string(4) "file"
[2]=>
string(46) "some-filename-here.txt"
[3]=>
string(9) "321456789"
[4]=>
string(32) "112233445566778899AABBCCDDEEFF11"
*/

// Check the obvious things
if (strlen($t_ed2k_parts[1]) == 4 AND $t_ed2k_parts[1] === "file" AND strlen($t_ed2k_parts[2]) > 0 AND strlen($t_ed2k_parts[4]) == 32 AND floatval($t_ed2k_parts[3]) > 0)
{
// This is a true link, lets paste it together and put it in an array
$t_ed2k_reallinks[] = "ed2k://|file|".str_replace("'","\'",$t_ed2k_parts[2])."|".$t_ed2k_parts[3]."|".$t_ed2k_parts[4]."|";
}
}

// Now lets see if we have 2 or more links
// Only then, we do our little trick, because otherwise, it would be wasted for one link alone!
$t_ed2k_confirmed = count($t_ed2k_reallinks);
if ($t_ed2k_confirmed > 1)
{
$t_ed2kinsert = " \n";
$t_ed2kinsert .= "<SCRIPT> ";
$t_ed2kinsert .= "filearray".$post_id."=new Array; ";
$t_ed2kinsert .= "n=0; ";
$i = 0;
foreach($t_ed2k_reallinks as $t_ed2klink)
{
$t_ed2kinsert .= "filearray".$post_id."[".$i."]='".$t_ed2klink."'; ";
$i++;
}
$t_ed2kinsert .= "iv=false; ";
$t_ed2kinsert .= "function addfile".$post_id."(){ ";
$t_ed2kinsert .= " var s=filearray".$post_id."[n]; ";
$t_ed2kinsert .= " n++; ";
$t_ed2kinsert .= " if(n==filearray".$post_id.".length && iv){ ";
$t_ed2kinsert .= " top.clearInterval(iv); ";
$t_ed2kinsert .= " n=0; ";
$t_ed2kinsert .= " } ";
$t_ed2kinsert .= " top.document.location=s; ";
$t_ed2kinsert .= " return true; ";
$t_ed2kinsert .= "} ";
$t_ed2kinsert .= "function addall".$post_id."(){iv=top.setInterval('addfile".$post_id."()',250)} ";
$t_ed2kinsert .= "</SCRIPT> ";
$t_ed2kinsert .= "<a href='javascript:addall".$post_id."()'>Add ".$t_ed2k_confirmed." links to ed2k client</a> ";
$ret = $ret . $t_ed2kinsert;
}
}

// remove padding
$ret = substr($ret, 1);

return($ret);
}

#
#-----[ AC ]-----
#
viewtopic.php

#
#-----[ BUL ]-----
#
$message = make_clickable($message); 

#
#-----[ ÖNÜNE EKLE ]-----
#
$message = make_addalled2k_link($message,$postrow[$i]['post_id']); // ed2k link and add all 

#-----[ BÜTÜN DOSYALARI KAPAT ]-----

İletiTarih: 13.12.2005, 20:32
Serseri
Çok güzel bir paylaşım. Yana yana aradığım modlardan birtanesiydi. fakat, hemen ekliyim dedimde BUL dedigin satırların hiç birini bulamıyorum bbcode.php de.. O nasıl oluyor arkadaşım? Sürüm 2.0.17

teşekkürler..

İletiTarih: 13.12.2005, 20:41
Misafir
demo su varmı gorulluce k

İletiTarih: 13.12.2005, 21:47
Curtis
Dostum zaten iki satırlık iş var bir kurup bakmak bu kadar zor mu?

İletiTarih: 14.12.2005, 00:39
Misafir
ok yaptım bır sorum var ed2 lınk verın ce lınkın basında emule ıcon nu cıkmasını ıstıyorum nasıl yapabılırım
bılen varmı

Cvp: ed2k Mod

İletiTarih: 14.12.2005, 06:16
türkphpbb
Arkadaslar, yukardaki sürümüde bir zamanlar ben toparlayip, yayinlamistim. Modun yazari bu isleri birakmis, son olarak sürüm 1.2.0 yi yayinlamis. En son phpbb 2.0.15 üzerinde denenmis. Bu ekledigim Modu ben 2.0.18 e güncelledim. Modu ekleyen arkadaslar görüntüsünü resim seklinde eklesinler.

Ayrica burdaki yayinlanan Mod'da ed2k ile ilgili.
http://www.phpbb.com/phpBB/viewtopic.php?t=276178

Kod: Tümünü seç
###########################################################
## MOD Ismi: eD2k linklerine tüm özellikleri ekleme (eD2k Links add all Feature)
## MOD Sürümü: v1.2.0
##
## MOD Yazari: Simon Moon <simon@gomp.net> (Christian Riesen) http://www.blackpearltech.com/
## Diger Yazarlar: [ Oki/Mozes/Meithar/ppw ]
##
## Son sürüme (2.0.18) uyarlayan: türkphpbb < admin@turkphpbb.org > http://www.turkphpbb.org
##                         
## MOD Aciklamasi: Bu MOD, üzerine tiklanilabilen ed2k linkleri yapiyor. Images klasörüne
##                                  eklenecek resimlere, Eklenecekler bölümündeki linklerden ulasabilirsiniz.
##                                 
## MOD Test: phpBB 2.0.11'den <--> 2.0.15'e kadar test edilmistir.
##                             
## Kurulum Seviyesi: Orta
## Kurulum Süresi: 6 Dakika
##
## Degisecekler: 2
##                             includes/bbcode.php
##                             viewtopic.php
##
## Eklenecekler: 2
##                            images/mule_icon.gif (http://www.ed2k-it.com/forum/images/mule_icon.gif)
##                            images/ed2k-info.gif (http://www.ed2k-it.com/forum/images/ed2k-info.gif)
##
## Forum Link: http://www.phpbb.com/phpBB/viewtopic.php?t=206016
#################################################################
## Lütfen güvenlik acisindan ve MOD un son sürümüne sahip olmak icin, devamli
## http://www.phpbb.com/mods/ adresini takip edin. Bu MODu baska sitelerden indirdiginizde
## cok dikkatli olun, icerisinde phpBB forumunuza zarar verebilecek kodlar bulunabilir.
## http://www.phpbb.com/mods/ da bulunmayan MOD lar phpBB tarafindan desteklenmez.
##############################################################
## Bu MODu kurmadan önce, degisecek tüm dosyalarin yedegini almaniz tavsiye edilir.
##############################################################
#
#-----[ AÇ ]-----------------------------------------------
#

includes/bbcode.php

#
#-----[ BUL ]-----
#

$bbcode_tpl['url4'] = str_replace('{DESCRIPTION}', '\\3', $bbcode_tpl['url4']);

#
#-----[ SONRASINA EKLE ]----------------------------------------------- 
#

// ed2k links
$bbcode_tpl['url5'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
$bbcode_tpl['url5'] = str_replace('{DESCRIPTION}', '\\2', $bbcode_tpl['url5']);

// ed2k links with description
$bbcode_tpl['url6'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
$bbcode_tpl['url6'] = str_replace('{DESCRIPTION}', '\\3', $bbcode_tpl['url6']);
// end ed2k links

#
#-----[ BUL ]-----------------------------------------------
#

// [url=www.phpbb.com]phpBB[/url] code.. (no xxxx:// prefix).
$patterns[] = "#\[url=((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*?)\]([^?\n\r\t].*?)\[/url\]#is";
$replacements[] = $bbcode_tpl['url4'];

#
#-----[ SONRASINA EKLE ]-----------------------------------------------
#

// url-ed2k, name code
$patterns[] = "#\[url=(ed2k://\|file\|.*\|\d+\|\w+\|/?)\](.*?)\[/url\]#si";
$replacements[] = $bbcode_tpl['url5'];

// name code
$patterns[] = "#\[url=(ed2k:(//)?\|server\|[\d\.]+\|\d+\|/?)\](.*?)\[/url\]#si";
$replacements[] = $bbcode_tpl['url6'];
// end url-ed2k

#
#-----[ BUL ]-----------------------------------------------
#

/**
* Rewritten by Nathan Codding - Feb 6, 2001.
* - Goes through the given string, and replaces xxxx://yyyy with an HTML <a> tag linking
*    to that URL

#
#-----[ ÖNCESINE EKLE ]-----------------------------------------------
#

// ed2k links
// Returns a file size formatted in a more human-friendly format, rounded
// to the nearest Gb, Mb, Kb, or byte.

function ed2k_humanize_size ($size, $rounder = 0, $min = '')
{
   $sizes   = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
   $rounders = array(0,   0,    0,    2,    2,    3,    3,    3,    3);
   $ext = $sizes[0];
   $rnd = $rounders[0];

   if ($min == 'KB' && $size < 1024)
   {
      $size = $size / 1024;
      $ext = 'KB';
      $rounder = 1;
   }
   else
   {
      for ($i=1, $cnt=count($sizes); ($i < $cnt && $size >= 1024); $i++)
      {
         $size = $size / 1024;
         $ext  = $sizes[$i];
         $rnd  = $rounders[$i];
      }
   }

   if (!$rounder)
   {
      $rounder = $rnd;
   }

   return round($size, $rounder) . '&nbsp;' . $ext;
}

function ed2k_link_callback ($m)
{
   $max_len = 120;
   $href = 'href="' . $m[2] . '" class="postlink"';
   $size = ed2k_humanize_size($m[4]);
   $fname = urldecode($m[3]);

   if (strlen($fname) > $max_len)
   {
      $fname = substr($fname, 0, $max_len - 19) . '...' . substr($fname, -16);
   }
   if (preg_match('#[<>"]#', $fname))
   {
      $fname = htmlspecialchars($fname);
   }
   // added an icon in front of link (ppw)
   return "<img src='images/mule_icon.gif' border='0'>&nbsp;<a $href>$fname&nbsp;($size)</a>";
}
// ed2k links end

#
#-----[ BUL ]-----------------------------------------------
#

function make_clickable($text)
{
$text = preg_replace('#(script|about|applet|activex|chrome):#is', "\\1:", $text);

  // pad it with a space so we can match things at the start of the 1st line.
  $ret = ' ' . $text;
 
#
#-----[ SONRASINA EKLE ]------------------------------------------
#

// ed2k file links (Meithar):
// ed2k://|file|fileName|fileSize|fileHash|(optional params)|(optional params)|etc|
$ret = preg_replace_callback("#(^|(?<=[^\w\"']))(ed2k://\|file\|([^\\/\|:<>\*\?\"]+?)\|(\d+?)\|([a-f0-9]{32})\|(.*?)/?)(?![\"'])(?=([,\.]*?[\s<\[])|[,\.]*?$)#i", "ed2k_link_callback", $ret);
// ed2k server links:
// ed2k://|server|serverIP|serverPort
$ret = preg_replace("#(^|(?<=[^\w\"']))(ed2k://\|server\|([\d\.]+?)\|(\d+?)\|/?)#i", "<a href=\"\\2\" class=\"postLink\">\\3:\\4</a>", $ret);
// ed2k file links end

#
#-----[ BUL ]-----------------------------------------------
#

// Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
   $ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);

   // Remove our padding..
   $ret = substr($ret, 1);

   return($ret);
}

#
#-----[ SONRASINA EKLE ]-----------------------------------------------
#

/**
* Christian Riesen - Jun 27, 2004
* Adds the "Add all links to ed2k client" link to the end of the post text
*/
function make_addalled2k_link($text,$post_id)
{
// padding
$ret = ' ' . $text;

// dig through the message for all ed2k links!
// split up by "ed2k:"
$t_ed2k_raw = explode("ed2k:",$text);

// The first item is garbage
unset($t_ed2k_raw[0]);

// no need to dig through it if there are not at least 2 links!
$t_ed2k_possibles = count($t_ed2k_raw);
if ($t_ed2k_possibles > 1)
{
unset($t_ed2k_reallinks);
foreach ($t_ed2k_raw as $t_ed2k_raw_line)
{
$t_ed2k_parts = explode("|",$t_ed2k_raw_line);
// This looks now like this (only important parts included
/*
[1]=>
string(4) "file"
[2]=>
string(46) "some-filename-here.txt"
[3]=>
string(9) "321456789"
[4]=>
string(32) "112233445566778899AABBCCDDEEFF11"
*/

// Check the obvious things
if (strlen($t_ed2k_parts[1]) == 4 AND $t_ed2k_parts[1] === "file" AND strlen($t_ed2k_parts[2]) > 0 AND strlen($t_ed2k_parts[4]) == 32 AND floatval($t_ed2k_parts[3]) > 0)
{
// This is a true link, lets paste it together and put it in an array
$t_ed2k_reallinks[] = "ed2k://|file|".str_replace("'","\'",$t_ed2k_parts[2])."|".$t_ed2k_parts[3]."|".$t_ed2k_parts[4]."|";
}
}

// Now lets see if we have 2 or more links
// Only then, we do our little trick, because otherwise, it would be wasted for one link alone!
$t_ed2k_confirmed = count($t_ed2k_reallinks);
if ($t_ed2k_confirmed > 1)
{
$t_ed2kinsert = " \n";
$t_ed2kinsert .= "<SCRIPT> ";
$t_ed2kinsert .= "filearray".$post_id."=new Array; ";
$t_ed2kinsert .= "n=0; ";
$i = 0;
foreach($t_ed2k_reallinks as $t_ed2klink)
{
$t_ed2kinsert .= "filearray".$post_id."[".$i."]='".$t_ed2klink."'; ";
$i++;
}
$t_ed2kinsert .= "iv=false; ";
$t_ed2kinsert .= "function addfile".$post_id."(){ ";
$t_ed2kinsert .= " var s=filearray".$post_id."[n]; ";
$t_ed2kinsert .= " n++; ";
$t_ed2kinsert .= " if(n==filearray".$post_id.".length && iv){ ";
$t_ed2kinsert .= " top.clearInterval(iv); ";
$t_ed2kinsert .= " n=0; ";
$t_ed2kinsert .= " } ";
$t_ed2kinsert .= " top.document.location=s; ";
$t_ed2kinsert .= " return true; ";
$t_ed2kinsert .= "} ";
$t_ed2kinsert .= "function addall".$post_id."(){iv=top.setInterval('addfile".$post_id."()',250)} ";
$t_ed2kinsert .= "</SCRIPT> ";
//added an icon in front of link (ppw)
$t_ed2kinsert .= "<img src='images/ed2k-info.gif' border='0'>&nbsp;<a href='javascript:addall".$post_id."()'>Add ".$t_ed2k_confirmed." links to ed2k client</a> ";
$ret = $ret . $t_ed2kinsert;
}
}

// remove padding
$ret = substr($ret, 1);

return($ret);
}
// Add all links to ed2k client end

#
#-----[ AÇ ]-----------------------------------------------
#

viewtopic.php

#
#-----[ BUL ]-----------------------------------------------
#

$message = make_clickable($message);

#
#-----[ ÖNCESINE EKLE ]-----------------------------------------------
#

$message = make_addalled2k_link($message,$postrow[$i]['post_id']); // ed2k link and add all

#
#-----[ TÜM DOSYALARI KAPAT/KAYDET ]------------------------------------------
#
# SoN
#
#phpBB MOD Sablonu türkphpbb (http://www.turkphpbb.org) tarafindan düzenlenip
#türkçelestirilmistir.
#

Cvp: ed2k Mod

İletiTarih: 17.01.2006, 02:32
exados
bunu bbcode.tpl'ye eklemek lazim ;eklenirse cok guzel olur cidden

screen shot istenmis atalım hemen 8)

İletiTarih: 25.01.2006, 20:32
murtaza
Sorun var
söyleki
ben advanced bbcode box 5 kullaniyorum
ve BUL denilen kodlarin hicbirine sahip degilim
acaba bbcode.php dosyami buraya eklersem biriniz yardimci olurmu?

İletiTarih: 25.01.2006, 22:57
CeNK
En yakın kodları bul

İletiTarih: 26.01.2006, 00:50
murtaza
ama advanced bbcode box ile


phpbbnin normal bbcodesi arasinda

binlerce fark var
yani birbirinden apayri
bu soruna nasil care bulcam :(

Cvp: ed2k Mod

İletiTarih: 02.02.2006, 13:16
murtaza
Arkadaslar birbirine en yakin kodlari bulamadim

bbcode.php uzantili dosyam ektedir
nerede yanlis yaptigimi söylermisniz?

Sevgiyle

Cvp: ed2k Mod

İletiTarih: 02.02.2006, 14:05
kobataj
Buyur

İletiTarih: 02.02.2006, 14:43
murtaza
kobataj maalesef yaptigin bbcode forumumu kitledi
ama iyiki yedegini almisim önceden :)

olmadi yani senin yaptigin
advanced bbcode box icin bir ed2 link mod olmali bence yaaaa
:(((

İletiTarih: 10.02.2006, 20:18
murtaza
acaba eklentiya koydugum advanced bbcodeye
yeni resimli ed2 yi uyarliicak varmi

advanced bbcode boxdan vazgecmek istemiyorum :(((
lütfen birisi yardimci olsun

sevgiyle

İletiTarih: 18.11.2006, 23:43
exados
hide mod eklentisinde oldugu gibi acaba advanced bbcode box'a entegre edebilirmiyiz ,yabanci forumlarda aramadigim yer kalmadı ama umudu kestim !

Cvp: ed2k Mod

İletiTarih: 11.02.2007, 16:08
ALTUN
Merhaba arkadaslar.
Bende uzun zamandir ed2k Modu ariyordum. Ama bende diger arkadaslar gibi Advanced BBCode Box v5.0.0 surumunu kullaniyorum. Acaba ed2k modunu Advanced BBCode Box v5.0.0' e uyarlayamazmisiniz. Bunu yaparsaniz bizleri cok sevindirirsiniz.
Lütfen mod ve webmaster arkadaslarimizdan bu konu hakkinda bir yardim bekliyoruz.
Saygi ve sevgilerimle.