Arigateaux

Arigateaux

Joined
Dec 31, 2009

Activity Stream

Arigateaux commented on a Page, $cleanEquation()  -  Jun 05, 2017

So, a problem I see is this:
$cleanEquation(2+16/4%3+2^4) - Output: ((2 + (16 / (4 % 3))) + (2 ^ 4))
This gives two completely different answers. This should probably be fixed.

Note: order of operations dictates that % is on the same level as * and /

 Respond  
Arigateaux is now following Protheus  -  Mar 18, 2017
Arigateaux created a Page  -  Feb 14, 2017
2 112 

Returns a value in Base-64, since mIRC $base() only goes up to 36.

Arigateaux created a Page  -  Feb 13, 2017
100 

$average(N N N ...).[id]

 Respond   mIRC  
Arigateaux commented on a Comment, mIRC /hswap  -  Feb 13, 2017
Arigateaux created a Page  -  Feb 09, 2017
77 

From a recommendation by Jamie on LunarIRC.net, I created /hswap. It's a little weird how I have it set up for a part of it, but the rest works like it should. Feedback is encouraged, since I don't know if I want to keep the optional swap info. It basically works one of two ways:

 Respond  
Arigateaux created a Page  -  Feb 09, 2017
53 

Needed a way to move one item over from a different table so I created this. Pretty self-explanatory.

 Respond  
Arigateaux commented on a Comment, Spin the Bottle Script  -  May 12, 2016
Arigateaux commented on a Page, mIRC Simple Basketball script  -  Apr 19, 2016

This is a pretty good start. There are better ways of doing this without having to resort to copy/pasting the same type of information to add new content. One way I'd recommend is to think about it logically and make things that repeat themselves put on a single line, such as msg $chan $nick. Since these lines all share this trait in common, making it so it only has to use it once will save a lot of space when it's used a bunch of times.

Another thing that you can do is to set the new sentences to a single variable and just return the variable. This will also save space. The best way is to use tokens or a file for something as simple as this. Files can sometimes be a pain in the butt, since you have to edit a separate thing, but in the long run, it's a lot more manageable and makes your code a lot cleaner. If you don't want to attach a file with your script, which many people opt not to do, you could use tokens. Check out the Token Identifiers file in the help.

Arigateaux commented on a Page, Spin the Bottle Script  -  Apr 19, 2016

There's an easier way to achieve this. Since your responses all have the same prefix "has to", you can just toss that into the response itself and create a list of items you want to add using tokens. Then you wouldn't need to keep track of how many tokens you have, since you can just use $numtok(text, C) to get the number of tokens and comparing it to %r. After doing this, you just append the returned token to your response and it makes the script much more usable. You can also use a text file and allow people to add their own responses via a command if you'd like.

 Respond  
Arigateaux commented on a Page, The Guessing Bot! v0.5  -  Apr 19, 2016

It's good to see people still writing scripts and posting them to Hawkee.

Arigateaux liked a Page, The Guessing Bot! v0.5  -  Apr 19, 2016
Arigateaux commented on ginyudotnet's Thread  -  Apr 03, 2015
Arigateaux commented on a Page, Text Conversions  -  Nov 02, 2014

/bin This is an example returns:
010101000110100001101001011100110010000001101001011100110010000001100001011011100010000001100101011110000110000101101101011100000110110001100101

/bin 010101000110100001101001011100110010000001101001011100110010000001100001011011100010000001100101011110000110000101101101011100000110110001100101 returns:
This is an example

/txt2hex This is an example returns:
5468697320697320616E206578616D706C65

/hex2txt 5468697320697320616E206578616D706C65 returns:
This is an example

I actually am working on an RGB HEX converter like Hawkee mentioned using some of the stuff already available with mIRC.

Arigateaux created a Page  -  Oct 30, 2014
326 

This is just a simple little setup that allows you to do conversions from binary <--> text and hex <--> text.

Arigateaux commented on Iyouboushi's Thread  -  Sep 26, 2014
Arigateaux created a Page  -  Sep 04, 2014
393 

Based on Ayon's script, since it hasn't been worked on in a long time and it's the newest one available. Same commands still apply.

Arigateaux commented on a Page, Help with copy chat bot  -  Sep 01, 2014

A few things to note here:

  • Make sure the nick you're trying to annoy is actually present in the channel.
if ($2 ison $chan)
  • Make sure you have a check for !annoy and !stop being used.
if (%me. $+ $2)
  • On execution, you only need one *****.
on *:text:*:#:{
  • You don't need an else if your check passes.
if (%me. $+ $nick) msg $chan $1-
 Respond  
Arigateaux commented on a Comment, Steam Game Information  -  Sep 01, 2014
Arigateaux commented on a Page, Steam Game Information  -  Aug 25, 2014

I've updated the script. Please feel free to play with it and test it for bugs. :)

 Respond  
Arigateaux created a Page  -  Aug 20, 2014
1 998 
Arigateaux commented on BambiFocus's Thread  -  Jul 15, 2014
Arigateaux commented on Cheiron's Thread  -  Jun 29, 2014
Arigateaux commented on a Page, [Help] - with timed token allocation  -  Jun 24, 2014

This isn't the place to ask questions regarding scripting help, however, try using a /timer to globally add points to a user every x seconds.

 Respond  
Arigateaux commented on Cheiron's Thread  -  Jun 24, 2014
Arigateaux commented on Buggsy's Thread  -  Jun 09, 2014
Arigateaux commented on g3mini's Thread  -  May 25, 2014
Arigateaux commented on cptpan's Thread  -  May 23, 2014
Arigateaux commented on a Comment, TextGangsters  -  May 06, 2014
Arigateaux commented on a Page, TextGangsters  -  Apr 24, 2014

if /jerkupdate needs to be run when it is first installed, just create an

on *:load:

event to do it automatically.

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.