home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1999 February
/
VPR9902A.BIN
/
OLS
/
RSIG101
/
RSIG101.LZH
/
R-signature.mac
< prev
Wrap
Text File
|
1998-10-03
|
807b
|
34 lines
// Random Signature version 1.01
// 企画立案 RYUZO
// 製作 noro
#n = 3; // 1~999 :シグネーチャファイルの数
$pth = hidemarudir + "\\sign\\"; // シグネーチャファイルのパス
$num = str( tickcount % #n + 1 );// ランダム(…でもないか…(笑))
while(strlen($num) < 3 ){
$num = "0" + $num;// 3桁数字の作成
}
if (!existfile( $pth + "sign" + $num + ".txt" )){
$num = "000";
}
// ↑ 該当する番号のファイルが無い時は 000 にする。
if( overwrite ) {
overwriteswitch;
insertreturn;
overwriteswitch;
} else {
insertreturn;
}
if(existfile( $pth + "presign.txt" )){
insertfile $pth + "presign.txt";
}
insertfile $pth + "sign" + $num + ".txt";
// ↑ 該当する番号のファイルをカーソル位置に挿入。
if(existfile( $pth + "postsign.txt" )){
insertfile $pth + "postsign.txt";
}
saveexit;