mIRC Home    About    Download    Register    News    Help

Print Thread
#60710 16/11/03 11:56 PM
Joined: Dec 2002
Posts: 397
A
ATMA Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Dec 2002
Posts: 397
how can i find how long it takes for mirc to init and load all the scripts ect ect i dont think this is possible but if it is plz tell me


Need amazing web design for low price: http://www.matrixn3t.net
#60711 17/11/03 12:04 AM
Joined: Dec 2002
Posts: 774
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 774
on the very first script file add
on *:start: {
set %start $ticks
echo Starting...
}
and to the very last script file add
on *:start: {
echo -a All scripts loaded in $calc( $ticks - %start ) ms
}

or something like that


Code:
//if ( khaled isgod ) echo yes | else echo no
#60712 17/11/03 12:31 AM
Joined: Dec 2002
Posts: 397
A
ATMA Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Dec 2002
Posts: 397
how can i change it to secends and not milisecends?


Need amazing web design for low price: http://www.matrixn3t.net
#60713 17/11/03 12:48 AM
Joined: Dec 2002
Posts: 774
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 774
use $ctime instead of $ticks or divide with 1000


Code:
//if ( khaled isgod ) echo yes | else echo no

Link Copied to Clipboard