Amiga600

Amiga600

Joined
Nov 25, 2009
Location
United Kingdom
Website

Activity Stream

Amiga600 commented on a Comment, Automatic Identify To Services  -  Mar 11, 2013
Amiga600 commented on a Comment, Happy Birthday Greeter  -  Feb 08, 2013
Amiga600 commented on a Comment, Channel Control Dialog 2.3  -  Feb 04, 2013
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 liked a Page, Extended ascii compatibility for mIRC 7  -  Jul 21, 2011
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 liked a Page, Relay Script 1.0  -  Feb 13, 2011
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 liked a Page, Web Site Advisor  -  Nov 03, 2010
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 liked a Page, Twitter single token status update  -  Sep 16, 2010
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 liked a Page, Twitter TweetBot  -  Aug 21, 2010
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  
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.