.view
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 1.6 |
| Scores Submitted | 5 |
| Date Added | Feb 21, 2006 |
| Last Updated | Feb 22, 2006 |
| Tags | bot file read text |
|
|
Introduction
.view file
to view a text file
mIRC Snippet:
.view
Posted on Feb 21, 2006 2:54 pm
Posted on Feb 21, 2006 2:54 pm
Please test snippets before posting them
Aliases do not have a $nick identifier
You could have used /play too
on *:text:.view *:*: play $2 $nick
I believe that does it too
This snippet is very dangerous though
If you have auto-identify preform commands, people could just view your mirc.ini file and get your password
Bear
Aliases do not have a $nick identifier
You could have used /play too
on *:text:.view *:*: play $2 $nick
I believe that does it too
This snippet is very dangerous though
If you have auto-identify preform commands, people could just view your mirc.ini file and get your password
Bear
mIRC Snippet:
.view
Posted on Feb 21, 2006 4:23 pm
Posted on Feb 21, 2006 4:23 pm
On major servers (or any with flood protection), using play you might want to add a delay. (ex: /play $2 3) A 3 second delay is usually fine. Just a heads up :D
mIRC Snippet:
.view
Posted on Feb 21, 2006 7:07 pm
Posted on Feb 21, 2006 7:07 pm
wat does it actaully do?
mIRC Snippet:
.view
Posted on Feb 22, 2006 4:50 am
Posted on Feb 22, 2006 4:50 am
I know its dangerus, but you can easy change the userlevel:
before:
on *:text:.view*:*:{ view $2 }
after:
on 20:text:.view*:*:{ view $2 }
and.. there is an floodprotection in the script
I\'ve used a timer that add +2 seconds per line
see this:
...
%viewtimer = 1
:nextzeile
inc %viewtimer 2
...
if %i < %lines { goto nextzeile }
...
thats the same :)
@bearruler you can use an $nick identifier in an alias
test it ;)
before:
on *:text:.view*:*:{ view $2 }
after:
on 20:text:.view*:*:{ view $2 }
and.. there is an floodprotection in the script
I\'ve used a timer that add +2 seconds per line
see this:
...
%viewtimer = 1
:nextzeile
inc %viewtimer 2
...
if %i < %lines { goto nextzeile }
...
thats the same :)
@bearruler you can use an $nick identifier in an alias
test it ;)
mIRC Snippet:
.view
Posted on Feb 22, 2006 5:02 am
Posted on Feb 22, 2006 5:02 am
u didn\'t answer my question anyways
mIRC Snippet:
.view
Posted on Feb 23, 2006 11:41 pm
Posted on Feb 23, 2006 11:41 pm
While loops are rather helpfull ;p
Also,
%viewtimer = 1
%lines = $lines(%file)
Are those globally pre-set variables? I suppose your using them just for this exact purpose, which makes them rather useless, and a waste of space. Look into the /var command: /help /var
Also,
%viewtimer = 1
%lines = $lines(%file)
Are those globally pre-set variables? I suppose your using them just for this exact purpose, which makes them rather useless, and a waste of space. Look into the /var command: /help /var






