Amiga600

Amiga600

Joined
Nov 25, 2009
Location
United Kingdom
Website

Activity Stream

Amiga600 commented on a Page, AntiVirus Checker   -  Jun 20, 2012

I can confirm the code is working, But really, I can't see the point of a script, Could of just pointed people to the website concerned. Screenshot of Result: http://puu.sh/Cpn7

 Respond  
Amiga600 commented on a Page, mute  -  Dec 05, 2011

Actually the MuteBan's I know of are these:

UnrealIRCd: +b ~q:nick!ident@host
InspIRCd: +b m:nick!ident@host
Hyperion: +q nick!ident@host

and I have already written a script which works Cross-Network here: http://www.hawkee.com/snippet/7421/

 Respond  
Amiga600 commented on a Page, Anti-Flood Script  -  Nov 21, 2011

This is fantastic, works like a dream, and stops flood very quick.

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  May 30, 2011

Thanks very much FordLawnmower for making this script, It's massively useful, along with the !tweet script you put up, to create a fully-functional Twitter Bot. Words cant comprehend how happy I am right now having full twitter functionality via IRC.

 Respond  
Amiga600 commented on a Page, Extended ascii compatibility for mIRC 7  -  Apr 27, 2011

Great job ford, as always your scripts are great, of course it would be nice if Khaled fixed this mess to start with.

 Respond  
Amiga600 commented on a Page, Twitter TweetBot  -  Mar 25, 2011

Ford plz can u check your PM's on Hawkee :) Cheers mate

 Respond  
Amiga600 commented on a Page, Relay Script 1.0  -  Feb 13, 2011

Crikey, You make scripting look easy Jethro_

I edited the script slightly as well, to get a list of users on channel entry/leave/server quit and nickname changes, also this is stored in a %serv1user and %serv2user variables, which also adds a new !ul command which will then show serv1 users a list of users from serv2 and vice-versa.

ChiefDean is welcome to use my updated script if he wishes: http://pastebin.com/LPSjZb54

 Respond  
Amiga600 commented on a Page, Relay Script 1.0  -  Feb 13, 2011

After further examination this script fails to pickup quit+name changes, as there is no channel information passed along with those modes, I have got them both working via the following code:

on *:nick: {
  if ($network = %serv1) { relay %serv2 .msg %chan2 : $+ $network $+ : $nick -> $newnick }
  elseif ($network = %serv2) { relay %serv1 .msg %chan1 : $+ $network $+ : $nick -> $newnick }   
}
on *:quit: {  
  if ($network = %serv1) { relay %serv2 .msg %chan2 : $+ $network $+ : $nick Quit with Reason: $1- }
  elseif ($network = %serv2) { relay %serv1 .msg %chan1 : $+ $network $+ : $nick Quit with Reason: $1- }   
}

Great Script ChiefDean, I've found it very useful :)

 Respond  
Amiga600 commented on a Page, Web Site Advisor  -  Nov 03, 2010

Awesome snippet!, Very useful! 10/10 and a LIKE from me :P

 Respond  
Amiga600 commented on a Page, Twitter single token status update  -  Sep 17, 2010

Yeah sure, I realise it will take a bit of time to get them all back working, I'll keep my eyes peeled :)

 Respond  
Amiga600 commented on a Page, Twitter single token status update  -  Sep 16, 2010

This is so GREAT, Thanks FordLawnmower, I'm so happy I can update my Status from IRC again, I've given this Script the "LIKE" and 10/10 :)

I really hope we can get the !tweet [updates] back like we used to have before Twitter went gay and stopped Basic Auth :)

Thanks again!

 Respond  
Amiga600 commented on a Page, Twitter TweetBot  -  Aug 22, 2010

Doing it like you said, it still appears to store the encrypted form in the hash file, so I'm happy enough with that.

Thanks for your help, You're scripts rock :)

 Respond  
Amiga600 commented on a Page, Twitter TweetBot  -  Aug 21, 2010

No dude, I meant is there a way of it converting the .addauth nick:pass into the bXl0d2l0dGVybmFtZTpteXBhc3M= then passing it onto the Script.

So you'd do .addauth nick:pass then the script iself, would encrypt the nick:pass part and them store it?

Example:
/msg Bot .addauth nick:pass

nick:pass >> bXl0d2l0dGVybmFtZTpteXBhc3M=

bXl0d2l0dGVybmFtZTpteXBhc3M= is sent to twitter, and also stored in the TwitterAuth and in the hashfile.

 Respond  
Amiga600 commented on a Page, Twitter TweetBot  -  Aug 21, 2010

Sure thing dude, Script works great!

But please can you maybe show me where I can add it to automatically convert the string, so my users can simply type .addauth user:pass and it will do the converting instead of them having to do 2 commands.

 Respond  
Amiga600 commented on a Page, Twitter TweetBot  -  Aug 21, 2010

Please clarify my first point dude? the weird number thing, considering most users wont have "commandline" access to the Bot in order to generate the weird number, it's impossible for another user to add themselves once you've allowed them via the Bot itself.

like if you did: .addauth nick:pass then you'd do the encoding: $encode($2-,m) and then send it onto the script, thus the user would only need to perform 1 step instead of all the ones you've stated: eg.

1) Bot owner authorizes user (via the Menu System you added)
2) User Types: /msg Bot .addauth mytwittername:mypass
3) The bot then converts that string into that weird thing (in this example: bXl0d2l0dGVybmFtZTpteXBhc3M=) and then sends onto the script..

I think this would be much easier from the users point-of-view.

 Respond  
Amiga600 commented on a Page, Twitter TweetBot  -  Aug 21, 2010

Sorry if I sound critical, But a couple of points:

3rd: Encode your username:password combination.
Type //echo -a $encode(username:password,m)

Wouldnt it be easier to add that into the script, so the user can just do this instead>> ".addauth tweetnick tweetpass"

incidentally, I've added this code to my bot, which helps in the above:

on *:TEXT:!enc*:?: {
  .msg $nick Encoded: $encode($2-,m)
}

Also are these user+pass's saved in any sence, like if I restart my Bot, would I have to redo everything.

And this...
21:38:27 !tweet Will it be a sunny day tomorrow....
21:38:28 Updating Status.. Please Wait...
21:38:31 Status Updated.

I reckon that would be better /notice'd to the user

 Respond  
Amiga600 commented on a Page, Twitter Status Update + Direct Message  -  Aug 21, 2010

Ahh Cool, Thanks dude!

 Respond  
Amiga600 commented on a Page, Twitter Status Update + Direct Message  -  Aug 21, 2010

what this script is missing, is an ability to have other users use it, once they register with the script..

for example:

/msg Bot !twreg twittername twitterpass You are now registered under your Nickname "Me" to perform twitter updates type !tweet [whatever] on a channel. !tweet last night I met fred.. blah -Bot- Posted your Update to Twitter under Twittername "twittername"
 Respond  
Amiga600 commented on a Page, Last X Lines v2.0  -  Aug 19, 2010

Not bad, but it only works on active channel, and users cannot call the script.

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Aug 17, 2010

Ah ok, It was only a suggestion anyways, the hashtag thing would be good, dont you think, so people could just click the link and travel there.

Currently the #hashtags in IRC serve as a channel name, so clicking it would take you to the channel name it states.

I've just figured this out, I've done it like follows:
var %lasttweet $replace(%lasttweet,$chr(35),http://www.twitter.com/search?q= $+ $chr(35) $+ )

It does work well, I've added it into that section you posted %lasttweet :)

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Aug 16, 2010

FordLawnmower, Any chance of converting the Hashtag links into a clickable link?

for example: #hashtag
http://twitter.com/search?q=%23hashtag

also please can you confirm/deny my previous message, Thanks dude :)

 Respond  
Amiga600 commented on a Page, timezone  -  Jul 16, 2010

This was extremely useful, Thanks for making it.

 Respond  
Amiga600 commented on a Page, UnrealRCd Aliases for mIRC  -  Jun 04, 2010

This simply will not work on some networks, as you will get messages similar to this:

Chat You must have channel privilege @ or above to set channel mode o

A better way would be to do it via ChanServ, with the following aliases:

alias owner { /msg ChanServ OWNER $chan }
alias deowner ( /msg ChanServ DEOWNER $chan }
alias protect { /msg ChanServ PROTECT $chan $1 }
alias deprotect { /msg ChanServ DEPROTECT $chan $1 }
alias op { /msg ChanServ OP $chan $1 }
alias deop { /msg ChanServ DEOP $chan $1 }
alias halfop { /msg ChanServ HALFOP $chan $1 }
alias dehalfop { /msg ChanServ DEHALFOP $chan $1 }

NOTE: Owner mode usually doesnt allow opping others, but Protect downwards will do, to op someone else, its a case of putting thier name after the command, example: /protect nick, /op nick etc. This will only work if you have rights under ChanServ to give other people op rights though.

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Apr 20, 2010

Dunno if this would be of benefit, but the "via txt" or "via web" could be useful additions to this script, possibly along with the "real name" (eg. @bobbyllew is Robert Llewellyn for example)

eg. tweet here [via tweetdeck]
or tweet here [Robert Llewellyn via tweetdeck)

Only ideas though, this script ROCKS!

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Mar 20, 2010

Thanks FordLawnmower again, I've also been asked to add some auto-tweets to some of the other chatters on my IRC, now without bot in channel, I couldnt do it, but I did write a ChanServ speak script for services, so in conjunction with that, I can now echo updates to any channel of my choice :)

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Mar 19, 2010

Yeah, thanks for that, it actually didnt work till I stripped out the formatting like so:
var %lasttweet $strip(%lasttweet,burc)

Thanks a lot Fordlawnmower - This script rocks!

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Mar 19, 2010

I'm using the "Message (msg #channel) method, I've tried several things, But for some reason it's not working :(

The actual line doesnt appear to be called by the script, so maybe it's in the wrong place.

Sorry to be a pain, I've tried using an ON INPUT but that apparently only allows for actual keyboard input into the bot (doesnt detect the tweets incoming)

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Mar 18, 2010

Erm, It doesnt work for some reason :(

 Respond  
Amiga600 commented on a Page, Twitter Stream  -  Mar 18, 2010

I work better by examples myself, Here's the kinda output I'd like:

I got a gizmo last week (NO topic changes on these) yeah right on! Bot changes topic to "Twitter Channel - Last tweet by was: " right on!"
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.