AustNet AustNet Archive Project — IRC Logs
« All channels | Contribute a log »

// #scripters — 2008-02-11

1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
00:28:41 Quit: wobelong ([email protected]) Exit: Austnet Chat Network
01:10:39 Join: rabbit ([email protected]) to #scripters
01:11:18 <rabbit> hey all, how do i unset 2 %vars with 1 command
01:23:06 <damian> have one guess
01:37:15 <rabbit> /unset %var1 %var2
01:38:43 <damian> that'st he one
01:38:51 <rabbit> doesnt work
01:39:02 <rabbit> unsets the first and not the second
01:39:06 <damian> then the variables are being recreated after you're deleting them
01:39:10 <damian> show me where you're using it
01:39:30 * /echo: insufficient parameters
01:39:44 <rabbit> timer
01:39:57 <damian> so you're pretty much doing:
01:40:02 <rabbit> /.timer 1 10 unset %var1 %var2
01:40:05 <damian> /set %var1 hello
01:40:20 <damian> /set %var2 hello
01:40:21 <damian> /.timer 1 10 unset %var1 %var2
01:40:22 <damian> ??
01:40:31 <rabbit> ye
01:40:35 <damian> /help /set
01:40:36 <damian> :P
01:40:43 <damian> set has it's own variable deletion timer
01:40:51 <rabbit> sorry, i lie, /inc
01:40:55 <rabbit> same thing?
01:41:09 <damian> show the script
01:41:32 <rabbit> its not very good, i aint done this in a long time, its a flood script
01:41:38 <rabbit> it inc %var
01:42:13 <damian> .. show the script.
01:42:17 <rabbit> lol
01:42:21 <rabbit> pm?
01:42:27 <damian> cbf, just paste
01:42:30 <rabbit> ok
01:43:05 <rabbit> try not to fall of ur chair
01:44:37 <rabbit> if (!$timer(info)) { .timerinfo 1 7 unset %t.info %f.info }
01:44:37 <rabbit> if (%f.info) { halt }
01:44:37 <rabbit> inc %t.info
01:44:37 <rabbit> if (%t.info > 2) { set %f.info set | write system\flood.txt info <> $date <> $nick <> $address <> $1- | halt }
01:45:18 * damian falls over
01:47:22 <rabbit> lol
01:47:35 <rabbit> i told you to not too
01:47:43 <damian> why are you making a flood script yourself?
01:47:57 <rabbit> who else is going to do it
01:48:37 <damian> http://www.damian.id.au/testikles/scripts.php?pg=get&f=floodprot_v0-01.zip
01:49:18 <damian> rofl @ me
01:49:22 <damian> -
01:49:22 <damian> ;Channel Flood protection script (v0.01). damian [Made in mIRC 5.9]
01:49:22 <damian> ; Started: Sat May 05 00:15:32 2001
01:49:22 <damian> ;Completed: Sat May 05 00:32:01 2001
01:49:47 <rabbit> lol
01:49:57 <damian> dude, that was almost seven years ago :|
01:50:22 <rabbit> hehe
01:50:40 <damian> good enough for you?
01:50:58 <rabbit> just looking
01:51:28 <rabbit> Kick Exempts: damian
01:51:30 <rabbit> lol
01:51:33 <damian> :D
01:53:39 <rabbit> lol, wow, crazy coding
01:54:24 <damian> like?
01:54:29 <rabbit> the crap i produced is for a bot, 1 command that sends alot of info and dont want used to many times
01:55:20 <damian> so it was a command flood, not a channel flood?
01:56:10 <rabbit> ye
01:56:42 <rabbit> how i make this work, set %ban. [ $+ [ $chan ] $+ ] $banmask tools
01:57:08 <rabbit> it does this %ban.#channel$banmask tools
01:58:09 <damian> %ban. [ $+ [ $chan ] $+ [ $banmask ] ] tools
01:58:10 <damian> try athat
01:58:17 <rabbit> sweet
01:58:36 <damian> that's the old+old+old way to do it tho
01:59:00 * /set: invalid parameters
01:59:48 <damian> try $+(%, ban., $chan, ., $banmask)
02:00:01 <damian> and it'll come out as %ban.#chan.*!*@*
02:00:02 <rabbit> ahh bloody hell, didnt think of $+
02:00:12 <damian> you're using $+ .. just the old way of it :P
02:00:50 <rabbit> lol ye, been a long time, got into cars and stopped using mirc, even used to have 75 here once apon-atime
02:01:02 <damian> vaguely remember
02:03:20 <rabbit> thanks for ur help man, off to bed
02:04:23 <damian> cya
02:08:08 Quit: rabbit ([email protected]) Exit:
02:13:37 Join: rabbit ([email protected]) to #scripters
02:13:53 <rabbit> damian, just before i go, its not returning the %var value
02:15:06 <damian> wat
02:15:13 <rabbit> %ban. [ $+ [ $chan ] $+ [ $banmask ] ] returns #channel*!*@*
02:15:27 <rabbit> not what the %var is
02:16:05 <damian> $eval($+(%, ban., $chan, $banmask))
02:17:37 <rabbit> ahh
02:24:28 <rabbit> if ($eval($+(%, ban., $chan, ., $banmask))) {
02:24:33 <rabbit> * Invalid format: $eval (line 191, channel.ini)
02:26:15 <damian> chuck a , 2 in there
02:26:23 <damian> $eval($+(%, ban., $chan, ., $banmask), 2)
02:26:34 <rabbit> ahh sweet
02:30:44 <rabbit> sweet
02:30:49 <rabbit> is this possible
02:31:07 <damian> nope
02:31:21 <rabbit> timer $+ $+($chan,.,$banmask)
02:31:24 <rabbit> lol
02:31:57 <damian> use the set timer for that one
02:32:09 <rabbit> sorry?
02:32:47 <rabbit> timer to trigger an alias
02:32:57 <damian> /set -u7 %var <value>
02:33:01 <damian> will unset %var in seven seconds
02:33:11 <rabbit> timer [ $+ [ $+($chan,.,$banmask) ] ] banremove $chan $banmask
02:41:23 <rabbit> thanks again
02:41:24 <rabbit> seeya
02:41:26 Quit: rabbit ([email protected]) Exit:
05:41:31 Quit: twig ([email protected]) Ping timeout for twig
05:45:41 Join: twig ([email protected]) to #scripters
06:59:10 Quit: josh ([email protected]) Exit: Leaving
09:18:07 Join: schnoowork ([email protected]) to #scripters
10:23:02 Join: josh ([email protected]) to #scripters
10:23:07 Join: magik ([email protected]) to #scripters
11:17:12 Quit: josh ([email protected]) Read error to josh: EOF from client
12:29:33 Quit: magik ([email protected]) Exit:
13:17:37 Quit: ImmutableDark ([email protected]) Ping timeout for ImmutableDark
13:29:29 Join: ImmutableDark ([email protected]) to #scripters
15:15:33 Join: peter ([email protected]) to #scripters
15:15:58 <peter> could anyone help me out for a second pls.. i need to send you a TXT file, i am trying to make it so you can NOT register with my bot unless ur IN the channel..
15:22:25 <Longie> if ($nick !ison #chan)
15:22:46 <peter> ty ty
15:23:00 <Longie> no probs :>
15:23:15 <peter> if ($nick !ison #IRCHorseracing) && (% [ $+ [ $nick ] $+ ] _registered == $null)) {
15:23:19 <peter> like so ? :o
15:24:28 <peter> * /if: invalid format (line 347, script.ini)
15:24:31 <peter> coming up with that
15:25:01 <Longie> youre missing a ( at the start
15:25:04 <Longie> if (($nick
15:25:04 <Longie> :>
15:25:16 <peter> OOoo
15:25:21 Join: beno ([email protected]) to #scripters
15:25:33 <beno> anyone around to help?
15:25:36 <Longie> im fairly sure you need more eval brackets (or can use $eval()) but i cant remember exactly
15:25:37 <Longie> sure beno
15:26:05 <beno> thanks bud
15:26:06 <beno> look
15:26:19 <peter> lmao @ beno
15:26:24 <peter> what u doing asking the same thing? :D
15:26:26 <beno> pete lol
15:26:29 <peter> Longie
15:26:31 <peter> that didnt work either
15:26:37 <beno> haha
15:26:39 <peter> the person could STILL REGISTER when not in the channel
15:27:03 <peter> can i send you the whole register code in a txt pls longie ?
15:28:59 <peter> ALl good mate, got someone else to help THANKS ! :)
15:29:02 Part: peter ([email protected]) from #scripters
15:29:38 Quit: beno ([email protected]) Exit:
15:33:21 Quit: Timegrinder ([email protected]) Killed (NickOp (Kill requested by Simulacrum))
15:33:32 Join: Timegrinder ([email protected]) to #Scripters
15:38:56 Quit: Timegrinder ([email protected]) Killed (NickOp (Kill requested by Simulacrum))
15:39:08 Join: Timegrinder ([email protected]) to #Scripters
15:43:13 <BlackDevil> Longie, it was the ! :P
16:20:51 Quit: schnoowork ([email protected]) Exit:
16:25:29 Join: schnoowork ([email protected]) to #scripters
16:54:44 Topic Is: http://www.scripters-austnet.org/ [Website down!] We help, not make! - Don't ask to ask, just ask! [NO: flooding|pasting|colours|messaging helpers|lameness|repeating|etc.] -- mIRC v6.3 released (16th August, 2007)
16:54:44 Set By: (Bozza) on: Fri Aug 17 11:26:01 2007
17:21:34 Join: twig` ([email protected]) to #scripters
17:23:56 Quit: schnoowork ([email protected]) Exit:
17:25:33 Quit: twig ([email protected]) Ping timeout for twig
18:01:01 Join: wobelong ([email protected]) to #scripters
18:05:04 Nick: twig` is now known as twig
20:24:25 Join: josh ([email protected]) to #scripters
22:52:12 Quit: twig ([email protected]) Exit: after 5h30m41s Naturally, when anger is involved, revenge is not very far behind. At least, in my world it's not.
22:52:25 Join: twig ([email protected]) to #scripters
22:55:44 Quit: wobelong ([email protected]) Exit: Austnet Chat Network