eqrunner

eqrunner

Joined:
May 18, 2009
eqrunner commented on a Comment, Now playing Radio Station (shoutcast based)  -  9 days ago
eqrunner commented on a Snippet, Twitter (out dated)   -  Nov 26, 2012
All Better now. Went faster than expected. v1.7 is posted.
 Respond  
eqrunner commented on a Snippet, Twitter (out dated)   -  Nov 26, 2012
FYI, Twitter has closed off the xml page this script was referencing. Working on fixing this. Will post modified script when I have it up and running
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Sep 30, 2012
@chachin

Similar to what I did for @bladerunner

Code

 
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Sep 05, 2012
@Bladerunner I suppose. I know exactly what you are asking. Problem with wunderground. They don't have an 'error' line. So I am going to have to make something up. Something that looks at the variable and if $null, will reply to the user that the location is wrong.
I will look at that when I get the chance.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Aug 06, 2012
@Bladerunner I am not sure what you might be doing wrong. PM me your version of the code and I will review over it.
As I had mentioned before, You should only need to do the following:

Code

 
 Respond  
eqrunner commented on a Snippet, Bot abuse  -  Jul 24, 2012
@chachin , @Phil_FW version add's in code that will also ignore a user that signs off and signs back on a server with a new nick. My code at the top works just fine. But you are more than welcomed to use @Phil_FW's code if you have that issue.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jul 22, 2012
@chachin You can use my botabuse script [url] http://www.hawkee.com/snippet/7858/[/url]
Just remove the semi-colon on line 56 and load the bot abuse script. This will limit the amount of requests before the bot will then ignore the user/ spam bot.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jul 16, 2012
@chachin
Modify the sockclose area like a so:
Line 302: Remove the or !forecast5 from the if statement. This will keep it from spitting out the long info.

Code

 


Lines 324 thru 330. Change the bot from messaging the %wu_nick, to message the channel %wu_chan

Code

 

 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jul 07, 2012
@Hari_Seldon
Along with what @Jethro said about the INPUT and TEXT lines,

I can simply it even more. For the Command Prep Area, just add this simple line:

Code

 


This simply replaces the @ ($chr(64)) with the ! ($chr(33)) in %wu_command.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jul 02, 2012
@Hari_Seldon In the future, You just need to change the two at the beginning (on*:INPUT and on*:Text),

Code

 

and then modify just the ";---Command Prep." area.
You can simply add the following, and the rest of the code will work just fine.:

Code

 
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jun 28, 2012
@B1aderunner The issues you mentioned are on wunderground's side. Look at the xml pages the wunderground script is pulling from:
weather: http://www.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=90210
Forcast: http://www.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=90210
You will see that heat index shows up there as N/A. Not much I can do about that. Sorry.
As for the forecast. It has to do with the detailed forcast, vs the simple forecast tags. It always gets a bit screwed up towards the evening hours local time. I haven't found a fix for that.

As for the wind speed. It only comes in MPH (see <wind_mph> tag) In your msg $chan part, you will just need to do some calculation to get it correct.

Code

 
 Respond  
eqrunner commented on a Snippet, Twitter (out dated)   -  Jun 18, 2012
You have to be an OP of the channel in order to use the ON / OFF feature. If your only voice or normal user, you will get the result you mentioned.
 Respond  
eqrunner commented on a Snippet, Twitter (out dated)   -  Jun 17, 2012
@ryan7461035 !twitter v1.6 released. It includes the on/off function.

My bad for giving you bad direction. It needed to be placed in the "if (%t_2 != $null)" Section. I had copied/pasted from my wunderground script and didn't test it.
The v1.6 should work. It is set up for each individual channel of each network. (Aka you can be on irc.hawkee.net with twitter off on #bestchanever. But still have twitter on and working on irc.efnet.net's #bestchanever)
Hope this helps.
 Respond  
eqrunner commented on a Snippet, Twitter (out dated)   -  Jun 16, 2012
@ryan7461035 Below is code you can add into the 'Main code' section to give you the option to turn it off per channel.

Code

 
 Respond  
eqrunner commented on a Snippet, Twitter (out dated)   -  Jun 09, 2012
@ryan7461035 In the top area in the ;;; Network line. you could add a simular line for the chan and network. and have the line say simply t_cleanup | halt.
as for a switch function, who would you want to be able to control it? ops only of said chan? I will follow up next week when i am back near a computer. cant edit well on a smart phone :p
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jun 09, 2012
wu_cleanup is the alias at the bottom of the script right above the version history. Its used to clean up all the variables. Are you by chance missing it?
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  May 28, 2012
@RicJames Ok, Fixed the !w problem. I just uploaded v4.1 to fix that error.
Or just take the space out in lines 50, and 53.

Code

 
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  May 26, 2012
@RicJames No offense intended. I just look towards the obvious problems before diving deep in.
If I understand your first problem correctly. The !w is not working with registered users? I believe this stems back to the starting on:TEXT: line. I was having problems with the weather script responding to any command that started with a !w. ( Say !work, !whois, !wasted, etc) So I put a space after it. I will need to look at that more.

I am unclear as to the issue you are having with the WHILE inside the !alertinfo response. Could you elaborate further?
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  May 25, 2012
@RicJames The !w only works if the person/$nick is already registered with the BOT hosting the script and not the NickServ of that network. Have you !w REGISTER 90210 <-- to the $nick you are testing with?
 Respond  
eqrunner commented on a Snippet, Now playing Radio Station (shoutcast based)  -  May 24, 2012
@DragonHeart version 3.0 posted. It now includes !justplaying script.

Let me know if there are any bugs in it.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  May 23, 2012
@RicJames Looks like you have an extra 'IF' in that line.
Yours:

Code

 


Corrected:

Code

 
 Respond  
eqrunner commented on a Snippet, Now playing Radio Station (shoutcast based)  -  May 13, 2012
@DragonHeart I did once in the past. And I am not sure where it is at the moment. (Gonna have to dig through my files) Thou I do recall, it uses the admin.cgi data page which requires a server user name and password.
Do you operate the server you want the song history for, or is it someone elses? If its some one elses, I will have try and create one for the public song history page, which may be a few as my schedule is busy.
 Respond  
eqrunner commented on a Snippet, Now playing Radio Station (shoutcast based)  -  May 09, 2012
@Yawhatnever Line 68 is ment to be commented out. It is a detailed 'status' giving you all the stats on the station. vs line 67 which only tells you if the station is online or offline.

and yes, on line 33, it has been corrected to %np_nick. I have had made this script years ago, but finally got around to posting it. So I may of messed up a few areas. Let me know if you find anything else.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  May 07, 2012
@KilllerX I have a secondary script that works to prevent it.
The second line in the main alias code shows ;botabuse. Just remove the semi-collan and add the following script alias. This limits how many times someone can activate the bot before it will ignore the user.
That code is here:
http://www.hawkee.com/snippet/7858/
If that won't work, let me know and I can adjust.
 Respond  
eqrunner commented on a Snippet, Twitter (out dated)   -  Apr 09, 2012
I did dig deeper and have made needed corrections. version 1.5 was released 2012-03-16
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Feb 15, 2012
@ Bladerunner
Change the following section of code. (The 'Command Prep.' Section, located between lines 126 thru 150)

Code

 
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jan 28, 2012
Updated script to v4.0
Added some changes to the script to allow the Local hosting client to also be able to activate the scripts.
Ex. Billy is hosting the script, and Kyle is also in the chan. Before, only Kyle could use the script. Now both Billy and Kyle can use the script.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jan 23, 2012
V3.3
!alert has been corrected. Line 238 is looking in the code for a <alert count, and when it is found, is supost to remove all other text from said line. Well wunderground.com had changed that line, So I have corrected the script to reflect the new TOS text.
 Respond  
eqrunner commented on a Snippet, Weather script for mIRC  -  Jan 23, 2012
Got you messages, I will check out the issues when I get a chance
 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.