N3M3S1S

N3M3S1S

Joined
Aug 03, 2010

Activity Stream

N3M3S1S   -  Jul 21, 2018

Looks like this place is dead, full of spam bots....

N3M3S1S   -  Jul 13, 2018

The ONLY sneak peek inside at current upcoming works. This will be part of a series of the LAST mIRC scripts I will write, moving on to stronger more capable programming languages, and also hardware tech. What you see in the screen shot is a very, very rough incomplete draft. This is a tedious one.

 Respond  
N3M3S1S   -  Jul 03, 2018

Guess who's back

 Respond  
N3M3S1S commented on a Page, Pokemon Catcher (Simple)  -  Jun 01, 2013

Here ya go, if you're looking into some Pokemon stuff for mIRC, here is some older stuff I wrote a few years back for my channel bot. Use whatever you want/need for your project. 8)

PokeDex
http://www.hawkee.com/snippet/8863/

And

(use !catch or !pokeball meant for use on a channel bot.)

;Pokeball III
;by Neo Nemesis

on *:TEXT:*:#: {
  if ($strip($1) == !pokeball) || ($strip($1) == !catch) {
    if ($2) && (!%poke) {
      .timerp1 1 1 msg $chan 7 $+ $nick 6throws a pokeball at4 $2- $+ 7!!!
      %poke = $rand(1,6)
      if (%poke == 1) || (%poke == 6) {
        .timerp2 1 3 msg $chan 7*!* RUMBLE *!*
        .timerp3 1 4 msg $chan 4 $+ $2- 6broke free!
        .timerpa 1 5 unset %poke
      }
      if (%poke == 3) || (%poke == 5) {
        .timerp4 1 3 msg $chan 7*!* RUMBLE *!*
        .timerp5 1 5 msg $chan 4*!* RUMBLE *!*
        .timerp6 1 6 msg $chan 4 $+ $2- 6broke free! It appeared to be caught!
        .timerpa 1 7 unset %poke
      }
      if (%poke == 4) || (%poke == 2) {
        .timerp7 1 3 msg $chan 7*!* RUMBLE *!*
        .timerp8 1 5 msg $chan 4*!* RUMBLE *!*
        .timerp9 1 7 msg $chan 5*!* RUMBLE *!*
        .timerp10 1 8 msg $chan 7 $+ $nick 6caught a4 $2-  $+ 7!!!
        .timerpa 1 9 unset %poke
      }
    }
  }
}
 Respond  
N3M3S1S   -  Apr 17, 2013

1172 Lines just on the QuestMaster script so far, and it still isn't fully functional. (But getting there)

How I am building it is making all the tools to create the world and items and such first, then going to use those tools to create a base world for the game and online play. So far, none of the tools have DCX.dll features, using simple .INI file handling for info storage.

Any DCX.dll features that will be used are going to be implemented for stuff that takes place during game play, not game creation.

Hoping to have some screen shots, and a demo/beta ready by the end of April. (We'll see.)

 Respond  
N3M3S1S   -  Mar 28, 2013

So one of the features on my new mIRC script (Skyfall) will be QuestMaster. It is a online "desktop" RPG that will have the tools for you to create your own worlds, quests, artifacts, NPC's and players. It will be mostly text based without any major animation and/or graphics. I may or may not use DCX.

This is still in it's beginning stages, so we'll see how this goes.

Other things to come as well ;)

N3M3S1S   -  Mar 26, 2013

Progress on mIRC Skyfall has been slow and mostly on the brainstorming side of things. Got some ideas worked out and some new features are going to be introduced, new things.

Work and this is what's been taking up a lot of my time lately. ;)

N3M3S1S   -  Mar 24, 2013

So where is everyone???

N3M3S1S   -  Mar 11, 2013

Working on a "Deployable Remote Bot" for one of the features in mIRC SkyFall.

It's basically a mini channel bot that runs through a socket connection through mIRC. It's working good, but on certain servers it won't connect properly. The connection will establish and it will begin to log into the server, but when the server sends the version request, when the script tries to respond the server returns with a 451 numeric (please register).

So the script sends the USER and NICK lines once it establishes the connection, so why am I still getting a 451 if it is already sending the USER and NICK info to the socket? Remember, this script works fine most everywhere, but a few servers it does this 451 issue.

Anyone know?

N3M3S1S   -  Mar 09, 2013

Finally was able to vanquish the coders block... Finally begun on a new script project. It's another mIRC script.

mIRC SkyFall is coming!

N3M3S1S   -  Jan 06, 2013

Dropping in, sorry been gone for so long. Been having IRL issues, fighting off coders block and trying to survive in a crumbling American economy.

New stuff eventually. :\

N3M3S1S   -  Nov 20, 2012

Coders block -.-

 Respond  
N3M3S1S   -  Oct 27, 2012

Ditched the highlight script when I realized that I had forgotten about mIRC's ability to assign identifiers to its highlight list -.-

So... What now? I'm not sure if I'm ready to start with a new language, any suggestions/requests?

N3M3S1S   -  Oct 25, 2012

UGH!!??!?! WTFBBQSAUCE.

mIRC's highlight feature is aggravating me. So aggravating that I have decided to make a highlight script for mIRC that actuall WORKS. mIRC's highlight only highlights the words you specify (So you could easily add your nickname into there), so I am going to make one that does that plus highlights your current user name, tired of missing messages because mIRC's highlight doesn't highlight nicknames. If you're someone like me, then you know that I use too many randomized user names to add them all to the highlight list...

N3M3S1S   -  Oct 22, 2012

What language should I use to make the new RPGenerator? I was thinking of making it for mIRC, but I think I will rather make it it's own program.

I was thinking Python, or maybe Perl... What about AutoIt?

N3M3S1S commented on a mIRC Script, mIRC DeluXe II - The Lost Version  -  Oct 22, 2012

CODERS/TESTERS! In case of THEME ERROR:

Go into the options dialog and disable the mIRC DeluXe theme, that will disable most of the raw events I added.

Then, in a new script file, use:

raw *:*: { echo -a NUMERIC: $numeric - INFO: $1- }

Every time a raw event will happen it will echo the information into your active window, allowing you decode and test and see if it really is the raw events causing the issue.

Either way, if you turn off the theme in the options dialog (/options) it should stop the issue, if the problem is indeed in the raw events.

 Respond  
N3M3S1S commented on a Page, PokeDex 1.0 - mIRC bot script  -  Oct 22, 2012

Also, just thought of something...

For those of you having issues with the script from time to time, it may be because of your operating system. I was doing some research and came to find out that mIRC's file handling privileges are restricted on newer operating systems.

So, FOR BEST SCRIPT PERFORMANCE I WOULD SUGGEST Microsoft Windows XP

 Respond  
N3M3S1S   -  Oct 21, 2012

Leaning towards making a new RPGenerator... One that is actually worth using and playing!

 Respond  
N3M3S1S commented on a mIRC Script, mIRC DeluXe II - The Lost Version  -  Oct 21, 2012

Okay well this particular script isn't updated anymore, so you're more then welcome to fix it. It's more than likely in the raw events. I'm willing to be that the server you're using has different raw numerics?

 Respond  
N3M3S1S   -  Oct 18, 2012

Thinking about starting to update the YouTube script, but I really want to make something new...

N3M3S1S commented on a mIRC Script, Gate Keeper 1.4  -  Oct 17, 2012

Any issues with the script, post them here. :)

N3M3S1S created a mIRC Script  -  Oct 17, 2012
N3M3S1S   -  Oct 17, 2012

DeluXe GateKeeper 1.4 due to be released for mIRC within the next 8 hours, by request for @Anon_Lewy

N3M3S1S   -  Oct 16, 2012
Good news everyone! I have decided that my coding vacation is drawing to a close. Getting familiar with the newest version of mIRC so that I can update all my scripts for mIRC 7+ including YouTube, IRC Guard 5000 and a snippet version of the PM Blocker from the mIRC DeluXe Lost Version. (That one is by request) On top of some new stuff that I am brainstorming on now, including a new, better RPGenerator, and some surprises.
N3M3S1S commented on a Page, YouTube Script 2.0  -  Oct 14, 2012

@alimak96: If you don't think its useful then don't use the script and save comment space for those who do use it :P This script is intended for a IRC channel bot anyways.

@Everyone Else:

Sorry haven't been around lately, enjoying my year long coder vacation!

When vacation is over I will begin working on YouTube Script and the IRC Guard 5000 and releasing new versions of them at the beginning of my next coding year, which should be pretty soon, I've been itching to get back to coding, just taking a break to let the carpal tunnel wear off more.

Soon my lovlies soon.

 Respond  
N3M3S1S commented on a Page, IRC Guard 5000 (V5)- Black List  -  Oct 14, 2012

Thank you for pointing that out, If I remember correctly it should be

if (!%PG5K_Ur) { noop }

But that section of the code isn't used anymore since my website is no longer operational.

In time I will release a new version.

 Respond  
N3M3S1S commented on a Page, YouTube Script 2.0  -  Jul 31, 2012

Mod at your own risk, and mod as necessary. The https and youtu.be links probably won't work since this script was made before youtube started using those.

 Respond  
N3M3S1S commented on a mIRC Script, mIRC DeluXe II - The Lost Version  -  Mar 14, 2012

Also, try the /dxabout command it will pop up a little window and play music xD

Sound effect system is fully customizable and be toggled on/off just so you guys know.

 Respond  
N3M3S1S commented on a mIRC Script, mIRC DeluXe II - The Lost Version  -  Mar 13, 2012

Thank you all :) I hope you enjoy it. If you experience any problems, please post them here in this thread :)

 Respond  
N3M3S1S commented on a mIRC Script, mIRC DeluXe II - The Lost Version  -  Mar 13, 2012

Thank You all who have used my previous scripts, I give you this, the long awaited (and probably forgot, and definitely Lost version of mIRC DeluXe!!)

I give you mIRC DeluXe II, the Lost Version.

For those of you who wonder where I have been lately, I finished DX2 before the end of 2011 and I am now on "coder's vacation". Late 2012, early 2013 the production of a new script (possilbly mIRC DeluXe III or something completely new) will begin!

Until then!!

 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.