荔园在线

荔园之美,在春之萌芽,在夏之绽放,在秋之收获,在冬之沉淀

[回到开始] [上一篇][下一篇]


发信人: TXB (逆风), 信区: NetResource
标  题: [合集][教程]FTPRush实现自动fxp的两种方法
发信站: 荔园晨风BBS站 (2004年10月10日23:32:03 星期天), 站内信件

☆   1  ──────────── 我是分割线 ─────────────────☆
发信人: TXB (逆风), 信区: NetResource
标  题: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:50:22 星期四

此教程由DRL总版主Dreamfly编写 转贴请注明~

ftprush进阶篇--脚本使用

ftprush、ultrafxp,最强的功能之一,就是脚本功能。以前一直没有很好的研究
过,昨天晚上得到一神秘人士指点,有茅塞顿开之感;今天又翻了一下rush 官方
论坛的帖子。于是就想把自己的一些认识写出来和大家共同探讨。

可能大家比较关心的还是如何auto fxp吧,下面我们就探讨一下这个功能是如何实
现的。
我知道的有两种方法:A:脚本+任务;B:irc bot。

A:脚本+任务
就是采用脚本结合ftprush的任务功能,例如:每隔30分钟同步S1的0dayrip 到
FTP1。

引用:
------------------------------------------------------------------------
--------

ScriptRushApp.Util.Standalone.TransferQueue(\'S1\',\'0day\',\'\',
\'FTP1\',\'0day\',\'\',MODE_FXP, true, true, true, true, 0,0,\'\',\'\',
\'\', true, true);
------------------------------------------------------------------------
--------

引用:
------------------------------------------------------------------------
--------
说明SrcList: S1 站点名
SrcFolder: 0day 书签,远程路径:/fxper/0day/0dayrip/today/
SrcItem: 这里为空,表示fxp整个目录。
DesList: FTP1 站点名
DesFolder: 0day 书签,远程路径:/0day/today/
DesItem: 这里为空,表示fxp整个目录。
Mode: MODE_FXP 执行fxp动作,这里的mode有以下三种:MODE_UP 上传,
MODE_DOWN 下载, MODE_FXP FXP。
IsSrcFolderBookmark: true,源ftp的目录采用书签;false,源ftp的目录采用路
径。
IsDesFolderBookmark: true,目标ftp的目录采用书签;false,目标ftp的目录采
用路径。
IsFolder: true,作为目录传输;false,作为文件传输。
ApplySkipList: true,启动skip列表。
...
IsAppendMode: true,所有的队列都在同一个窗口;false,每一个队列都在新窗
口。

这个地方有点疑问:如果源ftp只有1线程,而在你设置的间隔时间前一个队列没有
fxp完毕,后一个队列又要开始,如何解决重复登陆的问题?
下面是在官方论坛看到了解释,但是我没有看很明白:
http://www.ftprush.com/forum/index.php?showtopic=507

引用:
------------------------------------------------------------------------
--------
The AppendMode is for "ChainFXP".

if True: it will add all the queues of the TransferQueue command send in
 one Window.

if False: it will add all the queues of the TransferQueue command send
in several Windows (1 queue (1 transfer between 2 sites) by Window).
------------------------------------------------------------------------
--------

------------------------------------------------------------------------
--------

更多详细的功能,可以参看下面的官方函数说明:

引用:
------------------------------------------------------------------------
--------
函数RushApp.Util.Standalone.TransferQueue
Declare
procedure TransferQueue(
  SrcList, SrcFolder, SrcItem: string;
  DesList, DesFolder, DesItem: string;
  Mode: Integer;
  IsSrcFolderBookmark, IsDesFolderBookmark: boolean;
  IsFolder: boolean;
  ApplySkipList: boolean;
  RetryCount: Integer;
  RepeatCount: Integer;
  CompleteFlag: string;
  FolderSkipList, FileSkipList: string;
  IsAppendMode: boolean;
  DisconnectAfterTransfer: boolean);
Description
Make queue and transfer, support upload/download/FXP
Params
SrcList:
  SrcList is the source FTP name or a List of FTP names, if it\'s a
list of FTP names, be splitted with RushApp.Util.Standalone.Splitter,
This param used for Download/FXP
SrcFolder:
  SrcFolder is the source folder name or a bookmark, for Upload, it\'s
 a Local folder path or a Local bookmark, the param
IsSrcFolderBookmark indicates it\'s a folder or bookmark
SrcItem:
  SrcItem is the source folder or file name, for Upload, it\'s a Local
 folder name or file name
DesList:
  DesList is same as SrcList
DesFolder:
  DesFolder is same as SrcFolder
DesItem:
  DesItem is same as SrcItem
Mode:
  Mode indicates transfer mode, upload or download or FXP, use MODE_UP
 for upload, MODE_DOWN for download, MODE_FXP for FXP
IsSrcFolderBookmark:
  indicates SrcFolder is a folder or a bookmark
IsDesFolderBookmark:
  indicates DesFolder is a folder or a bookmark
IsFolder:
  indicates transfer as folder or file
ApplySkipList:
  when ApplyskipList is TRUE, script will check the SrcItem param with
 Global/FTP Skip/allow List
RetryCount:
  indicates retry count when transfer a file
RepeatCount:
  indicates how many times to refresh
CompleteFlag:
  when set RepeatCount > 0, CompleteFlag can let the queue thread stop
 when thread found a folder/file name at Source directory list match the
 CompleteFlag, CompleteFlag only supports Perl Expr
FolderSkipList:
  When transfer a folder includes sub folder/files, queue thread
will skip these folders match FolderSkipList
FileSkipList:
  When transfer a folder includes sub folder/files, queue thread
will skip these files match FileSkipList
IsAppendMode:
  when set IsAppendMode to TRUE, script will combines all queue
items at ONE window, otherwise, every queue item running at a NEW
window.
DisconnectAfterTransfer:
  when set DisconnectAfterTransfer to TRUE, FTP servers will be
disconnected after queue transfered.

Example
//Upload a file to FTP1
RushApp.Util.Standalone.TransferQueue(\'\',\'c:\temp\',\'file1.jpg\',
\'FTP1\',\'/pictures\',\'file1.jpg\',MODE_UP, false, false, false, true,
 0,0,\'\',\'\',\'\', false, true);
//Upload a file to FTP1, after uploaded to FTP1 then upload to FTP2
RushApp.Util.Standalone.TransferQueue(\'\',\'c:\temp\',\'file1.jpg\',
\'FTP1;FTP2\',\'/pictures\',\'file1.jpg\',MODE_UP, false, false, false,
 true, 0,0,\'\',\'\',\'\', true, true);
//upload a file to FTP1 and FTP2 at same time
RushApp.Util.Standalone.TransferQueue(\'\',\'c:\temp\',\'file1.jpg\',
\'FTP1;FTP2\',\'/pictures\',\'file1.jpg\',MODE_UP, false, false, false,
 true, 0,0,\'\',\'\',\'\', false, true);

//download a file From FTP1 to local
RushApp.Util.Standalone.TransferQueue(\'FTP1\',\'/pictures\',\'file1.
jpg\',\'\',\'c:\temp\',\'file1.jpg\',MODE_DOWN, false, false, false,
true, 0,0,\'\',\'\',\'\', false, true);

//FXP a file from FTP1 to FTP2
RushApp.Util.Standalone.TransferQueue(\'FTP1\',\'/pictures\',\'file1.
jpg\',\'FTP2\',\'/pics\',\'file1.jpg\',MODE_FXP, false, false, false,
true, 0,0,\'\',\'\',\'\', false, true);
//FXP a file from FTP1 to FTP2 then FTP1 to FTP3
RushApp.Util.Standalone.TransferQueue(\'FTP1\',\'/pictures\',\'file1.
jpg\',\'FTP2;FTP3\',\'/pics\',\'file1.jpg\',MODE_FXP, false, false,
false, true, 0,0,\'\',\'\',\'\', true, true);
//FXP a file from FTP1 to FTP2 and FXP a file from FTP1 to FTP3 at
same time
RushApp.Util.Standalone.TransferQueue(\'FTP1\',\'/pictures\',\'file1.
jpg\',\'FTP2;FTP3\',\'/pics\',\'file1.jpg\',MODE_FXP, false, false,
false, true, 0,0,\'\',\'\',\'\', false, true);
//FXP a file from FTP1 to FTP2 and FXP this file From FTP2 to FTP3 at
same time
RushApp.Util.Standalone.TransferQueue(\'\',\'\',\'\',\'FTP1;FTP2;
FTP3\',\'/pics\',\'file1.jpg\',MODE_FXP, false, false, false, true, 0,
0,\'\',\'\',\'\', false, true);
------------------------------------------------------------------------
--------

引用:
------------------------------------------------------------------------
--------
问题ftprush的脚本还不是很完善,例如就无法实现下面的这种情况:自动fxp源
ftp某个目录里面最新的几个文件夹。ultrafxp可以实现,代码如下:
UF_FXPDIR(\'S1\', \'0day\', \'FTP1\', \'0day\',\'\',4);
4代表最后4个目录,所以一定要按照时间来排序。
------------------------------------------------------------------------
--------

关于这种情况的讨论,在ftprush的官方论坛也有一个帖子:
http://www.ftprush.com/forum/index.php?showtopic=390

B:irc bot
下载:http://www.ftprush.com/download/rushmirc_src.zip
解压缩到mIRC的安装目录。
然后在mIRC的aliales里面,加入相应的代码。
1、半自动fxp;
引用/chain { dll rushmirc.dll RushScript RushApp.Util.Standalone.
TransferQueue(\' $+ $1 $+ \',\' $+ $2 $+ \',\'\',\' $+ $3 $+ \',\' $+ $4
 $+ \',\'\',MODE_FXP, false, false, true, true, 0,0,\'\',\'\',\'\',
true, true); }

在irc里面输入:/chain S1 0day FTP1 0day
就可以实现fxp了。

结合irc上bot的宣言,例如:
[19:19:34] <superman> [S1] fxper MKD [/ftp/09.02.04.Africa.Addio.
Directors.Cut.1966.DVDRip.XviD-SAPHiRE_非洲部落]

这就表示S1上面已经有人传了这个文件,那么我们也可以通过irc脚本直接调用
frprush,来fxp它到S2。
引用/chain S1 /09.02.04.Africa.Addio.Directors.Cut.1966.DVDRip.
XviD-SAPHiRE_非洲部落/ S2 /

2、执行site命令;
在mIRC的aliales里面,加入下面的代码。
引用/sitecmd { dll rushmirc.dll RushScript RushApp.Util.Standalone.
RawCommand(\' $+ $1 $+ \',\' $+ $2- $+ \', True, True); }

在irc里面输入:/sitecmd S1 site undupe sub.rar
这样就可以在irc里面直接把dupe的文件undupe了。

引用 函数RushApp.Util.Standalone.RawCommand
Declare
  procedure RawCommand(ANameList: string; ACommand: string);
Description
  Send raw command to all or specical connected/idle FTP Servers, if
Param ANameList is empty string then send to all connected/idle FTP
servers
Example
  RushApp.Util.Standalone.RawCommand(\'\',\'site who\');
  RushApp.Util.Standalone.RawCommand(\'FTP1\',\'site who\');
  RushApp.Util.Standalone.RawCommand(\'FTP1;FTP2\',\'site who\');

今天在ftprush的官方论坛发现了一个好东西:FTPRUSH MiRC Control-Center 。
引用安装:
1) 把 fc.ini 和 ftprush.mrc 放到mIRC的安装目录。
2) 运行mIRC。
3) 输入:/load -rs ftprush.mrc
4) 会弹出一个窗口,点击 "Yes" 确定。
5) 编辑 fc.ini
6) 替换 [c:\Program Files\ftprush\ftprush.exe] 为你FTPRUSH的实际安装路径


使用:
1) 在mIRC里面输入:/ftprush
或者在频道里面按鼠标右键,从右键菜单里面选择"ftprush"

刷新所有站点的脚本(from ftprush office fourm)。
引用 用法安装:
1、下载附件,解压缩到ftprush的安装目录。
2、运行ftprush。
3、菜单--工具--脚本设计窗口
3.1、文件--打开--RefreshAll.pac
3.2、文件--加载--RefreshAll.pac

使用:远程ftp窗口,右键:Refresh All 或者:Ctrl+Alt+F5

此教程由DRL总版主Dreamfly编写
转贴请注明~



☆   2  ──────────── 我是分割线 ─────────────────☆
发信人: fender (┯┯ ﹏ ┯┯ ……┃·︵·┃), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:53:18 星期四

好…·………………………………………………………………………………………………
……·…………………
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
·
复杂




☆   3  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:53:45 星期四

    xixi,現在什麼都是自動化的了,強




☆   4  ──────────── 我是分割线 ─────────────────☆
发信人: TXB (逆风), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:53:57 星期四

谁都学得了,那还了得....




☆   5  ──────────── 我是分割线 ─────────────────☆
发信人: pizzz (me is me), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:54:00 星期四

挺复杂.不过用了方便更新



☆   6  ──────────── 我是分割线 ─────────────────☆
发信人: fender (┯┯ ﹏ ┯┯ ……┃·︵·┃), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:55:20 星期四

黑黑,做个脚本出来方便淫啊··




☆   7  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:56:40 星期四

只有有需要的人才会用,恐怕校内没几个人需要




☆   8  ──────────── 我是分割线 ─────────────────☆
发信人: pizzz (me is me), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:57:17 星期四

我需要.谁去搞个?



☆   9  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日22:58:27 星期四

抓住netlife,他会告诉你的,哈哈~




☆  10  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:00:46 星期四

    現在國內的forum都是用bot自動mirror的,老厲害了




☆  11  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:02:21 星期四

    不會用ftprush,雖然我有licence key




☆  12  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:04:23 星期四

你需要?你在哪个地方跑?我所知只有netlife才真正跑过,虽然我也可以说“跑”过..




☆  13  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:05:05 星期四

    往上翻




☆  14  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:05:12 星期四

什么时候的事?五月的时候ns还招内部fxper...




☆  15  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:06:48 星期四

    自從ufxp免費後,嗯




☆  16  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:07:39 星期四

ufxp免费是四月的事...




☆  17  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:08:02 星期四

第几篇?




☆  18  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:08:31 星期四

    哦,那時forum還沒有開始研究ufxp的script/irc script




☆  19  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:09:33 星期四

你说自动FXP早出来我就不用退休了,哈哈~~




☆  20  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:10:01 星期四

    退休好啊,有養老金領




☆  21  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:11:06 星期四

没有,该给的都没给就退下来了




☆  22  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:12:16 星期四

    厲害了,好多進階script都放了出來,drl的warez平民化進行得不錯嘛




☆  23  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:13:31 星期四

    哈




☆  24  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:14:01 星期四

全自动也不是一定好的,很多地方有限制,nuke了要倒扣rate的




☆  25  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:15:13 星期四

    嗯,所以說leech最好,leecher最cool




☆  26  ──────────── 我是分割线 ─────────────────☆
发信人: kingkentment (K仔), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:16:13 星期四

哇,什么来的啊,这么难的




☆  27  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:16:33 星期四

warez中leecher是被唾弃的... 只获取不劳动者...




☆  28  ──────────── 我是分割线 ─────────────────☆
发信人: TXB (逆风), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:17:49 星期四


所以说, 我们这种处在末端的人最好,等着享受你们的劳动成果,娃哈哈




☆  29  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:18:34 星期四

    leecher是最幸福的~

    你的認識是片面的~




☆  30  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:18:51 星期四

nl对校内的热情早在两年前用尽了... 呵呵 :)




☆  31  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:19:54 星期四

    錯,是3年前

    不是用盡了,是給校內的某些無知的黑洞吞沒了




☆  32  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:19:57 星期四

我知道有工作的leecher,但这样的leecher和racer没分别哦...




☆  33  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:21:06 星期四

校情啊,没办法,就和国情一样,你能怎样?




☆  34  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:21:16 星期四




    你的認識是片面的~



☆  35  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:22:15 星期四

那你说吧... -_-




☆  36  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:22:16 星期四

    玩不玩就不玩咯,這麼簡單也不會

    你真的是越老越笨了,哈




☆  37  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:22:56 星期四

    去看i robot,那裡有答案,嘿嘿




☆  38  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:23:46 星期四

被动




☆  39  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:24:32 星期四

    不明白,嘿嘿




☆  40  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:24:58 星期四

??




☆  41  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:26:10 星期四

沟通困难... 哈哈~~




☆  42  ──────────── 我是分割线 ─────────────────☆
发信人: TXB (逆风), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:26:13 星期四


....这个主题下,没什么人插的上话了 hoho



☆  43  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:26:57 星期四

呵呵,灌灌水,师弟有空删掉就是了...




☆  44  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:27:12 星期四

    就是閑聊,無聊死了,難得有個人來給我尋開心,嘿嘿




☆  45  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:27:36 星期四

所以叫你走下网来,笨




☆  46  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:28:07 星期四

    看我的nick,早就和你說了,你吖的不是一般笨.




☆  47  ──────────── 我是分割线 ─────────────────☆
发信人: PhilCF (我们爱的小指,轻轻的勾着), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:28:30 星期四

所以说你被动,还是笨...




☆  48  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:29:18 星期四

    唉...沒話說了




☆  49  ──────────── 我是分割线 ─────────────────☆
发信人: TXB (逆风), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:29:32 星期四

死循环



☆  48  ──────────── 我是分割线 ─────────────────☆
发信人: netlife (Life Is Bitch), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:29:18 星期四

    唉...沒話說了




☆  49  ──────────── 我是分割线 ─────────────────☆
发信人: TXB (逆风), 信区: NetResource
标  题: Re: [教程]FTPRush实现自动fxp的两种方法
时  间: 2004年10月07日23:29:32 星期四

死循环


[回到开始] [上一篇][下一篇]

荔园在线首页 友情链接:深圳大学 深大招生 荔园晨风BBS S-Term软件 网络书店