NIGathan

NIGathan

Joined
Jun 19, 2008
Occupation
/server -m irc.cgpersia.com
Location
Texas

Activity Stream

NIGathan commented on a Page, str_tok.h - Common mIRC identifiers in C++  -  Apr 26, 2012

I have updated this a very good bit since my leave here. Maybe I'll get around to posting it.

 Respond  
NIGathan commented on a Page, !torrent search - UPDATED  -  Apr 21, 2012

I often find myself doing exactly that, napalm.

 Respond  
NIGathan commented on a Page, !torrent search - UPDATED  -  Feb 28, 2012

^ that exactly.
Sorry, but maybe one day when I get back into irc like I used to be I'll worry about it.

 Respond  
NIGathan commented on a Page, Color Config  -  Jul 31, 2010

Just updated the script:

Now the Save and Ok buttons work, sorry about that, I never realized I was using an undeclared variable to hold the color for the drawrects and drawtexts.

Now the sliders are taller than the triangles and changed the color of them to a much more noticeable one.

As well as a few modifications to help it run smoother.

I didn't upload a new screenshot, although, it looks almost exactly the same, except the sliders are darker and a little longer.

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Mar 11, 2010

Sounds to me like you dont know how to install a script properly..
Either that, or you both are using a very horribly scripted theme engine or main script. Take wIRC or NNS, for example.

 Respond  
NIGathan commented on a Page, Saraid - sajoin n times.  -  Aug 08, 2009

lol @ people still commenting on this fail script..

If youre interested, heres an update I wrote ages ago:

alias saraid {
  var %x $3, %y $1
  tokenize 32 $regsubex($str(-,$2),/(.)/g,$iif(%x,$v1,$chr(35)) $+ \n $+ $chr(32))
  .raw sajoin %y $*
}
 Respond  
NIGathan commented on a Page, Garbagebag   -  May 12, 2009

Aucun50: Maybe your var was being used as a local and global var..

 Respond  
NIGathan commented on a Page, Hover Info  -  Apr 30, 2009

Do you have any other scripts loaded?

An easy way to tell if you have any other scripts that utilize the same raw events, you should see a line somewhere when you hover over someones nick. If you do see a line, then you'll need to remove the raw events from this script file, and find the other raw events of same numeric, and add the contents from these raws to them at the begining.

If you dont see a line anywhere, and youre not using any other scripts, try using it on a different server.

 Respond  
NIGathan commented on a Page, Shinu's compatibility script  -  Apr 26, 2009

You mean, I dont have to have any of your other scripts loaded for this to work?!

I have to say, rather win indeed.

 Respond  
NIGathan commented on a Page, Notice and Message(s)  -  Apr 25, 2009

Wtf are you rambling about, andromeda?

some command are not suitable wif srver dmmns. but 'most' can run it.
First of all. Please learn to fu​cking type, I have no fuc​king clue what 'dmmns' means.

Every single one of the commands in this script send no info to the server, and only require a single line from the server to trigger the on text event:

:user!ident@host PRIVMSG #chan :text containing my nick here.

Once mIRC parses that line, and triggers the on TEXT event, the script uses the mIRC command, echo. /echo will ECHO text to your mIRC screen, making no contact with the server. Meaning no matter the server, it will work.

 Respond  
NIGathan commented on a Page, subliminal text  -  Apr 25, 2009
  if (!$1) .timer_subliminal 0 1 subliminal continue
  elseif ($1 == continue) {
    inc %_inc.subliminal
    if (%_inc.subliminal > 10000) {
      unset %_inc.subliminal
      .timer_subliminal off
    }
    _subliminal
    .timerxsubliminal -m 1 4 window -c $+(@,$chr(6))
  }

You can change this to:

  if (!$1) .timer_subliminal 10000 1 subliminal continue
  elseif ($1 == continue) {
    _subliminal
    .timerxsubliminal -m 1 4 window -c $+(@,$chr(6))
  }
 Respond  
NIGathan commented on a Page, Notice and Message(s)  -  Apr 25, 2009

Why are you blaming the server? These are all mIRC commands, not server commands...

 Respond  
NIGathan commented on a Page, Notice and Message(s)  -  Apr 24, 2009

1/10

Absolutely horrible.

Use $($+(,$me,)) for the matchtext, then you dont have to tell people to put their nick there.

You have a bracket open without closing it.

You dont even have a space between 'Hello' and '$me' causing it to echo it as plain text.

And why the hell did you make a random call to $regex?

Also the 'message is' part doesnt even show the message....

This script doesnt do a god damn thing.

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 23, 2009

I didnt port this to mSL, I originally wrote it for mSL, ported that version to C++, but made major modifications and completely changed how it worked, then I liked how it turned out so much, I ported it back to mSL

Edit: And thanks :D

 Respond  
NIGathan commented on a Page, Remote Editor Protection  -  Apr 16, 2009

But their alphabet skills apparently fail, I mean look, there isnt even a P in it.

 Respond  
NIGathan commented on a Page, aol.mrc  -  Apr 14, 2009

You think this script isnt horrible, Panix?

Well since no one else has, Ill go ahead and explain the problems with it..

alias /_aol {
  set %temp $read($script,n,$r(4,222))
  inc %_aol.count 
  return $remove(%temp,$chr(34))
}

Your using a var where no var is needed, and youve set said var. so now it will stay set globablly, should always use var where available but you dont even need a var here...

Your removing $chr(34). Should simply put it inside of $noqt()

You also arent checking if the script is saved as an .ini. Always remember .ini's include the line number before every line..

That prefixed '/' is also unnecessary, never have I seen an alias with that there before..

This is how that alias should look:

alias _aol {
  inc %_aol.count
  return $noqt($iif(*.ini iswm $script,$gettok($read($script,n,$r(4,222)),2,61),$read($script,n,$r(4,222))))
}

You can even change it up some more:

alias aol $+($iif(!$show,.),msg) $chan $_aol
on *:TEXT:!aolsay:#:aol

Now its slightly better, but this was so far into the ground, nothing can surface it.

 Respond  
NIGathan created a Page  -  Apr 13, 2009
636 

This script will allow you to save a pastebin from major pastebin sites, like pastebin.com and pastebin.ca.

  1 Thread   mIRC  
NIGathan commented on a Page, aol.mrc  -  Apr 11, 2009

You should just have a big database of random words, and have it build the lines with AI, then it would be a fairly decent script, assuming the lines made sense. Actually, scratch that, these preformed lines dont even make sense, so this should be easy to accomplish.

 Respond  
NIGathan commented on a Page, str_tok.h - Common mIRC identifiers in C++  -  Apr 11, 2009

Another update, check third release (v1.2) section of the description.

Still haven't finished $sorttok, it's not quite done yet, still need to tweak the char sorting and create some symbol sorting method.

In the mean time, here are a few more functions.

New example has been uploaded as well.

 Respond  
NIGathan commented on a Page, Colored Megatext Script  -  Apr 05, 2009

No reason to flood protect yourself on an alias...

What if they're an oper, and feel like spamming?

Only reason the flood protection would be useful, is if you added an external trigger of sorts, that others could use.

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 02, 2009

lol, np, glad you got it :D

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 02, 2009

@ Purplebeard "if one person logs off the game never ends"
Please read the description, I gave instructions how ro reset it, if necessary..
"you can use the /rps.reset command to manually reset all values."

And Im not sure what to tell you about it stoping all PM's, a halt in a ^ prefixed event shouldnt haltdef, but only halt. And the only time it haltdef's is if the notice was from a user playing and contained their choice.

 Respond  
NIGathan commented on a Page, str_tok.h - Common mIRC identifiers in C++  -  Apr 02, 2009

Updated to v1.1, a lot has been added, check description for details :D

I also uploaded a new example.

Only thing left on my todo list now is $sorttok

I am also open to any additional ideas

 Respond  
NIGathan commented on a Page, str_tok.h - Common mIRC identifiers in C++  -  Apr 02, 2009

Well I just found a function called strtok() so I may end up naming this header differently.

Also, I will be updating it soon with a sorttok() function as well as adding the isalpha, isalnum, ..etc operators as functions.

 Respond  
NIGathan commented on a Page, [C] Character counter  -  Apr 02, 2009

rofl at the 'cu​nter' tag. Nice code, happen to know if the isalpha(), isdigit(), ..etc functions are in a C++ header?

Nvm I found it, its in locale

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 01, 2009

ROFL :D

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 01, 2009

Type:
/unload -rs
/load -rs

But do not use /reload, that doesnt trigger initialization events.

Or go into the script editor, and view this script, and File->Unload, then File->Load, and find the same file.

And ya, I didnt add any of that just yet, but I plan to

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 01, 2009

Unload the script, and load it again, to recreate the hash table.

And you cant see all notices? Or just notices when someone makes a choice?

I purposefully made it hide the notices when someone makes a decision, so the bot owner cant cheat :P

I could add an on/off switch for that

 Respond  
NIGathan commented on a Page, str_tok.h - Common mIRC identifiers in C++  -  Apr 01, 2009

Thanks Hawkee :D

 Respond  
NIGathan commented on a Page, Ultimate Rock Paper Scissors v2 - Game  -  Apr 01, 2009

rofl, your just a sore loser :P

And haha, I would never attempt to play this game irl, it would take too long just for the countdown where you say ever choice before you decide..

"devil"
"woman"
"dragon"
"nuke"
"...We already said nuke"
"ffs, why do you think rock, paper, scissors didnt have more choices to begin with?!"
"People were lazy?"
...wow, I just had a conversation with myself... I should probably sleep.. Ya, sleeping could be a good idea..

 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.