Simple Seen Script
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 0.0 (of 0 scores) |
| Date Added | Aug 06, 2009 |
| Last Updated | Aug 06, 2009 |
| Tags | script seen tssguy123 |
Introduction
mIRC Snippet:
Simple Seen Script
Posted on Aug 7, 2009 3:44 pm
Posted on Aug 7, 2009 3:44 pm
You could use:
if ($nick ison $chan) {
To see if they are currently in the channel.
You might also want to put a spam protection script into that somehow. Possibly using timers and vars.
AND you may even want to have an enable/disable command.
if ($nick ison $chan) {
To see if they are currently in the channel.
You might also want to put a spam protection script into that somehow. Possibly using timers and vars.
AND you may even want to have an enable/disable command.
mIRC Snippet:
Simple Seen Script
Posted on Aug 7, 2009 3:47 pm
Posted on Aug 7, 2009 3:47 pm
You may want to use
if ($nick ison $chan) {
To see if the user is currently on the channel.
if ($nick ison $chan) {
To see if the user is currently on the channel.
mIRC Snippet:
Simple Seen Script
Posted on Aug 7, 2009 3:48 pm
Posted on Aug 7, 2009 3:48 pm
You also add a spam protection using timers and vars, or some other techniquie.
AND add an enable/disable command for OP's.
if ($nick isop $chan) || if ($nick ishop $chan) {
That might work.
AND add an enable/disable command for OP's.
if ($nick isop $chan) || if ($nick ishop $chan) {
That might work.
mIRC Snippet:
Simple Seen Script
Posted on Aug 7, 2009 4:05 pm
Posted on Aug 7, 2009 4:05 pm
Cazz, this is the correct format:
or
| Code: |
| if ($nick isop $chan || $nick ishop $chan) { |
| Code: |
| if ($nick isop $chan) || ($nick ishop $chan) { |
mIRC Snippet:
Simple Seen Script
Posted on Sep 3, 2009 10:11 pm
Posted on Sep 3, 2009 10:11 pm
http://www.mircsite.com ve http://www.dostyakasi.net forever mirc code..
mIRC Snippet:
Simple Seen Script
Posted on Sep 4, 2009 12:16 am
Posted on Sep 4, 2009 12:16 am
God Cazz, triple posting with error code and code you personally like? :P
mIRC Snippet:
Simple Seen Script
Posted on Sep 19, 2009 3:13 pm
Posted on Sep 19, 2009 3:13 pm
lots of things gone wrong, i change my nick. were did i go?
mIRC Snippet:
Simple Seen Script
Posted on Sep 20, 2009 4:22 am
Posted on Sep 20, 2009 4:22 am
| Code: |
| on *:JOIN:#:writeini -n seen.ini seen $nick $ctime on *:PART:#:writeini -n seen.ini seen $nick $ctime on *:QUIT:writeini -n seen.ini seen $nick $ctime on *:TEXT:*:*:{ writeini -n seen.ini seen $nick $ctime if ($1 = !seen) $iif($chan,notice,msg) $nick $iif($2,$iif($readini(seen.ini,seen,$2),Seen $2 before $duration($calc($ctime - $v1),2) $+ .,Sorry $+ $chr(44) haven't seen $2 $+ .),Please specify user to check for.) } |
Tadaaaa!
mIRC Snippet:
Simple Seen Script
Posted on Sep 21, 2009 6:43 am
Posted on Sep 21, 2009 6:43 am
2 $iif statements in 1, thats a first. $iif(bla,$iif( <-- god damn intresting. lol :P. nice job but i still dont like it :D
mIRC Snippet:
Simple Seen Script
Posted on Sep 21, 2009 12:12 pm
Posted on Sep 21, 2009 12:12 pm
I reckon using hash tables is better than using ini for a seen script like this, which isn't hard to do the converting.
@Ghost-Writer, you can use more than one $iif followed by another $iif...just to make sure the comparisons and closing bracket are properly placed.
@Ghost-Writer, you can use more than one $iif followed by another $iif...just to make sure the comparisons and closing bracket are properly placed.






