[教學]看不懂Mod在作什麼?Mod實作教學...(給新手)

phpBB 2 MOD Support
無論是官方或非官方認證之外掛,安裝與使用問題討論。
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

Martinet
竹貓忠實會員
竹貓忠實會員
文章: 850
註冊時間: 2003-06-09 21:58
聯繫:

[教學]看不懂Mod在作什麼?Mod實作教學...(給新手)

文章 Martinet »

這是我第一次寫教學....如果覺得不錯就鼓勵一下吧.... :mrgreen:
ps. 我不知道要放哪....錯的話幫我移一下 , 感謝~ :oops:
pps. XD~剛剛有人跟我說....跟竹貓的書很像...真的是自己寫的啦X_X

從我的論壇 : Oaf討論區 轉載
原文url : http://oafwork.sytes.net/letstalk/viewtopic.php?t=89
--------------------------------------------------------------------------------

我也是這幾天才參悟的.....當個參考吧~(我悟了兩個月都悟不出來...前天終於看懂啦...)

這裡以BBCode button Mod 作為範例 :

########################################################
## Mod Title: Multiple BBCode MOD
## Mod Version: 1.0.1
## Rev Date: February 3, 2003
##
## Mod Author: Nuttzy < pktoolkit@blizzhackers.com > (n/a) http://www.blizzhackers.com
##
## Mod Description: Allows you to install BBCode MODs that
## add quick BBCode buttons in post edits. Without this
## MOD, there is no standard way of installing BBCode MODs.
##
## Installation Level: EASY
## Installation Time: 2 minutes
## Files To Edit: Two (2)
## posting.php
## templates/subSilver/posting_body.tpl
########################################################
##
## Installation Notes:
##
## + Works with phpBB 2.0.2 thru 2.0.4
## + Do NOT install if you have EasyMod installed
##
## Version History:
## 02/03/03 - updated for 2.0.4
## + no code changes required, just updated the header info
##
## 08/31/02 - initial release
##
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################


#
#-----[ OPEN ]---------------------------------
#
posting.php
打開posting.php

#
#-----[ FIND ]---------------------------------
#
# NOTE: the full line to look for is:
# make_jumpbox('viewforum.'.$phpEx);
#
make_jumpbox(
在裡面尋找make_jumpbox(
ps. 正確找到的字串是

代碼: 選擇全部

make_jumpbox('viewforum.'.$phpEx);
[/color]


#
#-----[ AFTER, ADD ]---------------------------------
#

// EASYMOD-begin
//NOTE: the first element of each array must be '' Add new elements AFTER the ''
$EMBB_keys = array('') ;
$EMBB_widths = array('') ;
$EMBB_values = array('') ;

for ($i=1; $i<count($EMBB_values); $i++)
{
// EasyMod BBcode mods
$val = ($i*2)+16 ;
$template->assign_block_vars('EasyModBB', array(
'KEY' => $EMBB_keys[$i],
'NAME' => "addbbcode$val",
'WIDTH' => $EMBB_widths[$i],
'VALUE' => $EMBB_values[$i],
'STYLE' => "bbstyle($val)")
);
}
// EASYMOD-end

在 make_jumpbox('viewforum.'.$phpEx); 後面加上 :

代碼: 選擇全部

// EASYMOD-begin
//NOTE: the first element of each array must be ''   Add new elements AFTER the ''
$EMBB_keys = array('') ;
$EMBB_widths = array('') ;
$EMBB_values = array('') ;

for ($i=1; $i<count($EMBB_values); $i++)
{
	// EasyMod BBcode mods
	$val = ($i*2)+16 ;
	$template->assign_block_vars('EasyModBB', array(
		'KEY' => $EMBB_keys[$i],
		'NAME' => "addbbcode$val",
		'WIDTH' => $EMBB_widths[$i],
		'VALUE' => $EMBB_values[$i],
		'STYLE' => "bbstyle($val)")
	);
}
// EASYMOD-end
[/color]


#
#-----[ OPEN ]---------------------------------
#
templates/subSilver/posting_body.tpl

打開templates/subSilver/posting_body.tpl

#
#-----[ FIND ]---------------------------------
#
# NOTE: the full line to look for is:
# <input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
# </span></td>
#
name="addbbcode16"
尋找 name="addbbcode16"
ps. 找到的完整句子應該看起來像這樣

代碼: 選擇全部

<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
[/color]

#
#-----[ AFTER, ADD ]---------------------------------
#

<!-- BEGIN EasyModBB -->
<td><span class="genmed">
<input type="button" class="button" accesskey="{EasyModBB.KEY}" name="{EasyModBB.NAME}" value="{EasyModBB.VALUE}" style="width: {EasyModBB.WIDTH}px" onClick="{EasyModBB.STYLE}" onMouseOver="helpline('{EasyModBB.KEY}')" />
</span></td>
<!-- END EasyModBB -->
在後面加上

代碼: 選擇全部

<!-- BEGIN EasyModBB -->
			<td><span class="genmed">
			  <input type="button" class="button" accesskey="{EasyModBB.KEY}" name="{EasyModBB.NAME}" value="{EasyModBB.VALUE}" style="width: {EasyModBB.WIDTH}px" onClick="{EasyModBB.STYLE}" onMouseOver="helpline('{EasyModBB.KEY}')" />
			  </span></td>
			<!-- END EasyModBB -->
[/color]
#
#-----[ FIND ]---------------------------------
#
# NOTE: the full line to look for is:
# <select name="addbbcodefontcolor" onChange="bbfontstyle('[color=' + this.form.addbbcodefontcolor.options[this.form.addbbcodefontcolor.selectedIndex].value + ']', '[/color]')" onMouseOver="helpline('s')">
#
name="addbbcode18"

尋找name="addbbcode18"
ps.整行看起來應該是這個樣子 :

代碼: 選擇全部

<select name="addbbcodefontcolor" onChange="bbfontstyle('[color=' + this.form.addbbcodefontcolor.options[this.form.addbbcodefontcolor.selectedIndex].value + ']', '[/color]')" onMouseOver="helpline('s')">

#
#-----[ IN-LINE FIND ]---------------------------------
#
name="addbbcode18"

在同一行的地方找到name="addbbcode18"

#
#-----[ IN-LINE REPLACE ]---------------------------------
#
name="addbbcodefontcolor"

將他取代為name="addbbcodefontcolor"
#
#-----[ IN-LINE FIND ]---------------------------------
#
this.form.addbbcode18.options
在同一行裡找到this.form.addbbcode18.options

#
#-----[ IN-LINE REPLACE ]---------------------------------
#
this.form.addbbcodefontcolor.options

將他取代為this.form.addbbcodefontcolor.options
#
#-----[ IN-LINE FIND ]---------------------------------
#
this.form.addbbcode18.selectedIndex
在同一行裡找到this.form.addbbcode18.selectedIndex

#
#-----[ IN-LINE REPLACE ]---------------------------------
#
this.form.addbbcodefontcolor.selectedIndex

將他取代為this.form.addbbcodefontcolor.selectedIndex
#
#-----[ FIND ]---------------------------------
#
# NOTE: the full line to look for is:
# </select> &{L_FONT_SIZE}:<select name="addbbcodefontsize" onChange="bbfontstyle('[size=' + this.form.addbbcodefontsize.options[this.form.addbbcodefontsize.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
#
name="addbbcode20"

找到name="addbbcode20"
整段看起來應該是這樣子

代碼: 選擇全部

</select> &{L_FONT_SIZE}:<select name="addbbcodefontsize" onChange="bbfontstyle('[size=' + this.form.addbbcodefontsize.options[this.form.addbbcodefontsize.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
#
#-----[ IN-LINE FIND ]---------------------------------
#
name="addbbcode20"

在同一行裡找到name="addbbcode20"
#
#-----[ IN-LINE REPLACE ]---------------------------------
#
name="addbbcodefontsize"
將他取代為name="addbbcodefontsize"

#
#-----[ IN-LINE FIND ]---------------------------------
#
this.form.addbbcode20.options

在同一行裡找到this.form.addbbcode20.options
#
#-----[ IN-LINE REPLACE ]---------------------------------
#
this.form.addbbcodefontsize.options

將他取代為this.form.addbbcodefontsize.options
#
#-----[ IN-LINE FIND ]---------------------------------
#
this.form.addbbcode20.selectedIndex

在同一行裡找到this.form.addbbcode20.selectedIndex

#
#-----[ IN-LINE REPLACE ]---------------------------------
#
this.form.addbbcodefontsize.selectedIndex
將他取代成this.form.addbbcodefontsize.selectedIndex

#
#-----[ SAVE/CLOSE ALL FILES ]---------------------------------
#
# EoM

將全部檔檔案存檔並關起來
wilson1881
星球普通子民
星球普通子民
文章: 8
註冊時間: 2003-12-05 08:35

文章 wilson1881 »

感謝大大的分享.讓我對安裝有些了解\r
但是還有些指令看不懂.是否可以請大大幫忙呢?

代碼: 選擇全部

#
#-----[ SQL ]------------------------------------------
#
#   There is an automatic sql installer that works currently for mysql and mssql
#   It is neccessary to copy the file sql_install.php to your main phpbb directory and run it from there
#   After that, you want to delete the file immediately.
#
#   If you prefer to run the queries manually yourself, or to translate it to a different dbms
#   than mysql or mssql, the raw queries are located in sql_221.txt, but are only available for mysql.
#   I will try to include more dbms's for the installer for future releases, but nothing is guaranteed
#   at present
#

# 
#-----[ OPEN ]------------------------------------------ 
#
common.php

# 
#-----[ FIND ]------------------------------------------ 
# 
include($phpbb_root_path . 'includes/db.'.$phpEx);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
if ( defined('IN_CASHMOD') )
{
	include($phpbb_root_path . 'includes/functions_cash.'.$phpEx);
}

# 
#-----[ OPEN ]------------------------------------------ 
#
memberlist.php

# 
#-----[ FIND ]------------------------------------------ 
# 
define('IN_PHPBB', true);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
define('IN_CASHMOD', true);
define('CM_MEMBERLIST', true);

# 
#-----[ FIND ]------------------------------------------ 
# 
$select_sort_mode = '<select name="mode">';

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
$cm_memberlist->droplists($mode_types_text,$mode_types);

# 
#-----[ FIND ]------------------------------------------ 
# 
	default:

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
	case $cm_memberlist->modecheck($mode):
		$order_by = $cm_memberlist->getfield($mode) . " $sort_order LIMIT $start, " . $board_config['topics_per_page'];
		break;

# 
#-----[ FIND ]------------------------------------------ 
# 
	ORDER BY $order_by";

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
$cm_memberlist->generate_columns($template,$sql,8);

# 
#-----[ FIND ]------------------------------------------ 
# 
			'U_VIEWPROFILE' => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id"))

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
		);

		$cm_memberlist->listing($template,$row

# 
#-----[ OPEN ]------------------------------------------ 
#
posting.php

# 
#-----[ FIND ]------------------------------------------ 
# 
define('IN_PHPBB', true);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
define('IN_CASHMOD', true);
define('CM_POSTING', true);

# 
#-----[ FIND ]------------------------------------------ 
# 
		$sql = "SELECT f.*, t.topic_status, t.topic_title

# 
[color=red]#-----[ IN-LINE FIND ]------------------------------------------ 
# 
t.topic_title

# 
#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
, t.topic_poster

# [/color]
#-----[ FIND ]------------------------------------------ 
# 
		$select_sql = ( !$submit ) ? ", t.topic_title, p.enable_bbcode, p.enable_html, p.enable_smilies, p.enable_sig, p.post_username, pt.post_subject, pt.post_text, pt.bbcode_uid, u.username, u.user_id, u.user_sig" : '';

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 
		$temp = $submit;
		$submit = !(!$submit || ( isset($board_config['cash_disable']) && !$board_config['cash_disable'] && (($mode == 'editpost') || ($mode == 'delete'))));

# 
#-----[ FIND ]------------------------------------------ 
# 
		$where_sql = ( !$submit ) ? "AND pt.post_id = p.post_id AND u.user_id = p.poster_id" : '';

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
		$submit = $temp;
		unset($temp);

# 
#-----[ FIND ]------------------------------------------ 
# 
		$post_data['poster_post'] = ( $post_info['poster_id'] == $userdata['user_id'] ) ? true : false;

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
		$post_data['post_text'] = ( ($mode == 'editpost') || ($mode == 'delete') ) ? $post_info['post_text'] : '';
		$post_data['bbcode_uid'] = ( ($mode == 'editpost') || ($mode == 'delete') ) ? $post_info['bbcode_uid'] : '';

# 
#-----[ FIND ]------------------------------------------ 
# 
		$post_data['first_post'] = ( $mode == 'newtopic' ) ? true : 0;

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
		$post_data['topic_poster'] = ( $mode == 'reply' ) ? $post_info['topic_poster'] : 0;

# 
#-----[ OPEN ]------------------------------------------ 
#
privmsg.php

# 
#-----[ FIND ]------------------------------------------ 
# 
define('IN_PHPBB', true);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
define('IN_CASHMOD', true);

# 
#-----[ FIND ]------------------------------------------ 
# 
				$emailer->reset();

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
			}
			$pmer = new cash_user($userdata['user_id'],$userdata);
			$pmer->give_pm_amount();
			while ( false ) {

# 
#-----[ OPEN ]------------------------------------------ 
#
profile.php

# 
#-----[ FIND ]------------------------------------------ 
# 
define('IN_PHPBB', true);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
if ( (isset($HTTP_GET_VARS['mode']) && ($HTTP_GET_VARS['mode'] == 'viewprofile')) || (isset($HTTP_POST_VARS['mode']) && ($HTTP_POST_VARS['mode'] == 'viewprofile')) )
{
	define('IN_CASHMOD', true);
	define('CM_VIEWPROFILE',true);
}

# 
#-----[ OPEN ]------------------------------------------ 
#
viewtopic.php

# 
#-----[ FIND ]------------------------------------------ 
# 
define('IN_PHPBB', true);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
define('IN_CASHMOD', true);
define('CM_VIEWTOPIC', true);

# 
#-----[ FIND ]------------------------------------------ 
# 
	LIMIT $start, ".$board_config['posts_per_page'];

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
$cm_viewtopic->generate_columns($template,$forum_id,$sql);

# 
#-----[ FIND ]------------------------------------------ 
# 
		'U_POST_ID' => $postrow[$i]['post_id'])

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
	);

	$cm_viewtopic->post_vars($postrow[$i],$userdata,$forum_id\r

# 
#-----[ OPEN ]------------------------------------------ 
#
includes/functions.php

# 
#-----[ FIND ]------------------------------------------ 
# 
	include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
	if ( defined('IN_CASHMOD') )
	{
		if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.'.$phpEx)) )
		{
			include($phpbb_root_path . 'language/lang_english/lang_cash.' . $phpEx);
		}
		else
		{
			include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.' . $phpEx);
		}
	}

# 
#-----[ OPEN ]------------------------------------------ 
#
includes/functions_post.php

# 
#-----[ FIND ]------------------------------------------ 
# 
	$meta = '<meta http-equiv="refresh" content="3;url=' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" . $post_id) . '#' . $post_id . '">';

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
	$cash_message = $GLOBALS['cm_posting']->update_post($mode, $post_data, $forum_id, $topic_id, $post_id, $topic_type, $bbcode_uid, $post_username, $post_message);

# 
#-----[ FIND ]------------------------------------------ 
# 
	$message = $lang['Stored']

# 
[color=blue]#-----[ IN-LINE FIND ]------------------------------------------ 
# 
$lang['Stored']

# 
#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 . '<br />' . $cash_message[/color]# 
#-----[ FIND ]------------------------------------------ 
# 
		include($phpbb_root_path . 'includes/functions_search.'.$phpEx);

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
		$GLOBALS['cm_posting']->update_delete($mode, $post_data, $forum_id, $topic_id, $post_id);

# 
#-----[ OPEN ]------------------------------------------ 
#
includes/usercp_viewprofile.php

# 
#-----[ FIND ]------------------------------------------ 
# 
$template->pparse('body');
	
# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
$cm_viewprofile->post_vars($template,$profiledata,$userdata);

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/memberlist_body.tpl

# 
[color=red]#-----[ FIND ]------------------------------------------ 
# in subSilver, the full line is 
#	  <th class="thTop" nowrap="nowrap">{L_POSTS}</th>
#
	{L_POSTS}

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# on the next line
#
	  <!-- BEGIN cashrow -->
	  <th class="thTop" nowrap="nowrap">{cashrow.NAME}</th>
	  <!-- END cashrow -->[/color]# 
#-----[ FIND ]------------------------------------------ 
# in subSilver, the full line is 
#	  <td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gen">{memberrow.POSTS}</span></td>
#
	 {memberrow.POSTS}

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# on the next line
#
	  <!-- BEGIN cashrow -->
	  <td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gen">{memberrow.cashrow.CASH_DISPLAY}</span></td>
	  <!-- END cashrow -->

# 
#-----[ FIND ]------------------------------------------ 
# in subSilver, the full line is 
#	  <td class="catBottom" colspan="8" height="28"> </td>
# 
colspan="8"

# 
[color=green]#-----[ IN-LINE FIND ]------------------------------------------ 
# 
8

# 
#-----[ IN-LINE REPLACE WITH ]------------------------------------------ 
#
{NUM_COLUMNS}[/color]
# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/profile_view_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
# in subSilver, the full line is 
#		  <td> <b><span class="gen">{INTERESTS}</span></b></td>
# 
{INTERESTS}

# 
#-----[ FIND ]------------------------------------------ 
# (on the next line)
# 
		</tr>
# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
		{CASH}

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_body.tpl

# 
[color=red]#-----[ FIND ]------------------------------------------ 
# 
{postrow.POSTER_FROM}

#
#-----[ IN-LINE FIND ]------------------------------------------ 
#
{postrow.POSTER_FROM}

# 
#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
<br />{postrow.CASH}[/color]
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM

勞煩大大了...感恩
●架設主機作業系統:WindowsXP Pro
●快速架站程式:Appserv
●上網方式:ADSL 1.5M/64k
●安裝的程式:Apache + phpbb2
●phpBB2 版本:1.3
竹貓忠實會員
竹貓忠實會員
文章: 1058
註冊時間: 2003-05-15 00:30
來自: Game.Hack-遊戲駭客
聯繫:

文章 »

以這段來講!
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT f.*, t.topic_status, t.topic_title
尋找
#
#-----[ IN-LINE FIND ]------------------------------------------
#
t.topic_title
在這行尋找

#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
, t.topic_poster
在這行後面+上

也就是先找到$sql = "SELECT f.*, t.topic_status, t.topic_title
然後在這行尋找到t.topic_title 然後在這裡的後面+上, t.topic_poster
也就是變成$sql = "SELECT f.*, t.topic_status, t.topic_title, t.topic_poster
有事問問題,沒事答問題。
廣告不是這樣打滴!遊戲駭客
無敵肉腳
星球公民
星球公民
文章: 91
註冊時間: 2004-03-05 16:59
來自: 太平洋區-沙庫索島

文章 無敵肉腳 »

那........可以請問一下他上面有些綠色字的地方....
意思是什麼......
改那個8...還是28..還是在後面加上去???
圖檔
頭像
Andy Lee
星球公民
星球公民
文章: 83
註冊時間: 2004-02-25 15:16
來自: Taiwan
聯繫:

文章 Andy Lee »

無敵肉腳 寫:那........可以請問一下他上面有些綠色字的地方....
意思是什麼......
改那個8...還是28..還是在後面加上去???
以這段來說明:
#
#-----[ FIND ]------------------------------------------
# in subSilver, the full line is
# <td class="catBottom" colspan="8" height="28"> </td>
#
colspan="8"

#
#-----[ IN-LINE FIND ]------------------------------------------
#
8

#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
{NUM_COLUMNS}
意思是說找到<td class="catBottom" colspan="8" height="28"> </td>這行字,[IN-LINE FIND]是說在這行字裡面找到"8",然後[IN-LINE REPLACE WITH]是說替換成{UNM_COLUMNS},也就是說改完後整段文字應該變成<td class="catBottom" colspan="{NUM_COLUMNS} "height="28"> </td>。
~左手翻雲、右手覆雨~
http://www.gagawulala.net/phpBB2
mzchen
星球普通子民
星球普通子民
文章: 2
註冊時間: 2004-12-28 16:15

文章 mzchen »

多谢多谢谢拉~!~!~!
















圖檔
手机铃声下载免费电影小说
ak118031
星球普通子民
星球普通子民
文章: 9
註冊時間: 2005-01-23 10:39

文章 ak118031 »

posting.php
打開posting.php

關於上面那個...那個要怎麼開啟阿?
應該怎麼開阿?
bu
版面管理員
版面管理員
文章: 443
註冊時間: 2003-02-23 12:46
來自: 25° 4′N 121° 29′E
聯繫:

文章 bu »

基本上你可以用記事本,或是其他你習慣使用的純文字編緝器\r
如:Emeditor、Editplus....等
*譯文資料在phpBB 技術文件
bu.femto-size
*和我聯絡,請寄 or Google Talk 圖檔
*作品: Intergrated Toplist & Message Can
hpo14
竹貓忠實會員
竹貓忠實會員
文章: 414
註冊時間: 2003-05-10 16:37
來自: M Starbucks

文章 hpo14 »

to mzchen : 你不覺得你的斷行太多了嗎?

to ak118032 : 你說的是哪個. 如果是開啟的話. 你可以用ultra edit 或是 emeditor

補:bu大, 快我一步..

樓上有人的投向超過限制(100*100)ㄝ~~
非官方外掛問題區公告: [必看]請配合發問格式及明確主題發問(2004 02/16更新)

竹貓星球發問規則:
http://phpbb-tw.net/phpbb/viewtopic.php?t=16149

請不要濫用 私人訊息 或是 MSN 問問題...你以為竹貓是架好看的阿
StickyKid
竹貓忠實會員
竹貓忠實會員
文章: 1019
註冊時間: 2003-01-31 10:32
來自: Taichung, Taiwan
聯繫:

文章 StickyKid »

我想不影響版面頭像大小應該沒什麼關係吧?
and... 竹貓也沒硬性規定頭像大小一定要符合
Helvetica is a feature-length independent film about typography.
bu
版面管理員
版面管理員
文章: 443
註冊時間: 2003-02-23 12:46
來自: 25° 4′N 121° 29′E
聯繫:

文章 bu »

呵...
現在沒有線上顯示有點不太方便...

對了,我的新頭像還可以吧 ^^
(偷用2003年時,路人甲幫sk設計的) :mrgreen:
*譯文資料在phpBB 技術文件
bu.femto-size
*和我聯絡,請寄 or Google Talk 圖檔
*作品: Intergrated Toplist & Message Can
StickyKid
竹貓忠實會員
竹貓忠實會員
文章: 1019
註冊時間: 2003-01-31 10:32
來自: Taichung, Taiwan
聯繫:

文章 StickyKid »

bu 寫:呵...
現在沒有線上顯示有點不太方便...

對了,我的新頭像還可以吧 ^^
(偷用2003年時,路人甲幫sk設計的) :mrgreen:
一3一 正想跟你說你就自己承認了
\n你也有啊 用你自己的吧 :mrgreen:
Helvetica is a feature-length independent film about typography.
bu
版面管理員
版面管理員
文章: 443
註冊時間: 2003-02-23 12:46
來自: 25° 4′N 121° 29′E
聯繫:

文章 bu »

StickyKid 寫:
bu 寫:呵...
現在沒有線上顯示有點不太方便...

對了,我的新頭像還可以吧 ^^
(偷用2003年時,路人甲幫sk設計的) :mrgreen:
一3一 正想跟你說你就自己承認了
你也有啊 用你自己的吧 :mrgreen:
還沒用你上色過的咧...
呵...(原本的那個有點不太符合形像)
*譯文資料在phpBB 技術文件
bu.femto-size
*和我聯絡,請寄 or Google Talk 圖檔
*作品: Intergrated Toplist & Message Can
StickyKid
竹貓忠實會員
竹貓忠實會員
文章: 1019
註冊時間: 2003-01-31 10:32
來自: Taichung, Taiwan
聯繫:

文章 StickyKid »

bu 寫:還沒用你上色過的咧...
呵...(原本的那個有點不太符合形像)
:-| 符合"真實形象",還是"虛擬形象"啊 :mrgreen:
Helvetica is a feature-length independent film about typography.
bu
版面管理員
版面管理員
文章: 443
註冊時間: 2003-02-23 12:46
來自: 25° 4′N 121° 29′E
聯繫:

文章 bu »

StickyKid 寫:
bu 寫:還沒用你上色過的咧...
呵...(原本的那個有點不太符合形像)
:-| 符合"真實形象",還是"虛擬形象"啊 :mrgreen:
呵 =.=||
網路上還是虛擬形象 比較多吧 ^^" :mrgreen:
*譯文資料在phpBB 技術文件
bu.femto-size
*和我聯絡,請寄 or Google Talk 圖檔
*作品: Intergrated Toplist & Message Can
主題已鎖定

回到「外掛問題討論」