Jump to content

chain

Administrators
  • Posts

    5997
  • Joined

  • Last visited

  • Days Won

    17

chain last won the day on September 5 2023

chain had the most liked content!

3 Followers

About chain

  • Birthday 01/26/1962

Contact Methods

  • Website URL
    http://www.coders-resources.net

Profile Information

  • Gender
    Male
  • Location
    Montreal,Quebec
  • Interests
    scripting and chatting

Recent Profile Visitors

102130 profile views

chain's Achievements

Grand Master

Grand Master (14/14)

  • Dedicated Rare
  • First Post Rare
  • Collaborator Rare
  • Posting Machine Rare
  • Conversation Starter Rare

Recent Badges

32

Reputation

  1. Title: No Spam Chan v1.1 Script: NoSpamChan.mrc Program: mIRC Author: Epic Description: The script monitors communication on the channel in order to search the strings of the "#" symbol to identify ads from other channels. If detected, it checks the real existence of such a channel by executing the "/WHO" command, and if it is in the list, it performs "Kick+Ban" on the nickname of the violator. Renewal: Added the ability to configure the script via the "nospamchan" alias. Added "ACTION" message spam check. Changed the channel existence check from the "/LIST" command to the "/WHO" command to speed up the process. Installation: Open your client's script editor using the "ALT+R" keyboard shortcut. Next, use the "File/New" top menu to open a new file and place the code there. Next, use the top menu "File/Save As..." to save the code as a script called "NoSpamChan.mrc". If you already have a previous version of this script installed, replace it with the new code. Do not leave previous versions of scripts to avoid conflicts. NoSpamChan_v1.1.rar
  2. ; #INDEX# ======[mIRC Script UDF]============================================================================================================ ; Title........: Duck Hunter Script v1.1 (with ZombieHunt Extension) ; mIRC Version.: mIRC 7.25+ ; Description..: Event script and command functions that assist with DuckHunt IRC bot games, including a radar notification when a duck is ; present in an unactive chat window. Duck Hunt bot originally by Menz Agitat. ; Dual channel duck radar, notifies you when a duck is detected on the channel(s). ; Built in shop menu (just use /shop) ; HotKeys assigned for !bang (F12), !reload (F11) ; Simplified commands like /b (!bang), /r (!reload), /s <id> <target> (!shop [id] [target]) ; ZombieHunt extension for the variant ZombieHunt bots. ; And more! ; Version Info.: Version 1.0 - Original rough draft (unavailable) ; Version 1.1 - First Beta Release (Added ZombieHunt extension) ; Author.......: Neo_Nemesis ; Instructions.: Copy and paste this script into a new remote file in mIRC. Click okay and allow initialization commands to run. ; MAKE SURE YOU INPUT YOUR CHANNEL AND BOT INFORMATION BELOW IN THE VARIABLES FUNCTION. ; ========================================================================================================================================== ; #CURRENT USER COMMANDS# ================================================================================================================== ; Description..: List of basic ease of use commands. (more commands listed in functions list below) ; /duck <ON/OFF> - Turns Duck Hunter Assist ON/OFF ; /radar <ON/OFF> - Turns Duck Hunter Radar ON/OFF ; F12 KEY - !bang ; F11 KEY - !reload ; /b - !bang ; /r - !reload ; /shop - Brings up shop menu ; /s - Brings up shop menu ; /s <number> <user> - For !shop [id] [target] ; /td - !topduck ; /ds - !duckstats ; ========================================================================================================================================== ; #VARIABLES FUNCTION# ===================================================================================================================== ; Description..: This command is the start up and maintainence command for Duck Hunter Script. It is run every time the script loads or ; when mIRC stats up with Duck Hunt script already loaded. Please take notice of the notes below, and make the changes ; so that this script will work in your channel this function directly handles all of the variables in this script. ; (SEE *** NOTES BELOW) ; ========================================================================================================================================== alias -l _duckstart { ;### PUT YOUR SETTINGS HERE!!! ### ;*** Put the name of Duck Hunt channel here set %duckchan #Channel1 set %duckchan2 #Channel2 | ;*** <--- If not using Channel 2 put None here ;*** Put the name of the Duck Hunt bot here set %duckbot BotName1 set %duckbot2 BotNam2 | ;*** <--- If not using Channel 2 put None here ;*** Put the name of the Zombie Hunter bot and channel here set %zombiebot ExtBotName | ;*** <--- If not using Channel Ext put None here set %zombiechan #ExtChannel | ;*** <--- If not using Channel Ext put None here ;*** Set your preferences here. ;*** RECOMMENDED SETTINGS & DEFAULT: "duck off", "radar on" and "zombie off" duck off radar on zombie off return } ; #EVENTS SCRIPT# ========================================================================================================================== ; Description..: This events script handles _duckstart commands on starting and loading, as well as handling all on TEXT events. ; ========================================================================================================================================== ;Loading and Starting on *:START: { _duckstart | return } ;Text Events for Channel 1, Channel 2 and Channel Ext on *:TEXT:*:*: { ;================================================== ;Duck Channel 1 ;================================================== ;Duck Hunter Assist If (%duck == ON) && ($nick == %duckbot) && ($chan == %duckchan) && (QUACK isin $1-) { if ($active == $chan) { msg $chan !bang return } if ($active != $chan) && (%radar == OFF) { echo -a 7,4 * DUCK DETECTED IN $upper(%duckchan) $+ !!! return } } ;Duck Hunter Radar If (%radar == ON) && ($nick == %duckbot) && ($chan == %duckchan) && (QUACK isin $1-) { if ($active != $chan) { echo -a 9,3 * Duck Hunter Radar: [8DUCK DETECTED9] Channel 1: $chan return } if ($active == $chan) && (%duck == OFF) { echo -a 9,3 * Duck Hunter Radar: [8DUCK DETECTED9] Channel 1 return } } ;================================================== ;Duck Channel 2 ;================================================== ;Duck Hunter Assist If (%duck == ON) && ($nick == %duckbot2) && ($chan == %duckchan2) && (QUACK isin $1-) { if ($active == $chan) { ;.timerduck 1 1 msg $chan !bang msg $chan !bang return } If ($active != $chan) { echo -a 7,4 * DUCK DETECTED IN $upper(%duckchan2) $+ !!! return } } ;Duck Hunter Radar If (%radar == ON) && ($nick == %duckbot2) && ($chan == %duckchan2) && (QUACK isin $1-) { if ($active != $chan) { echo -a 9,3 * Duck Hunter Radar: [8DUCK DETECTED9] Channel 2: $chan return } if ($active == $chan) && (%duck == OFF) { echo -a 9,3 * Duck Hunter Radar: [8DUCK DETECTED9] Channel 2 return } } ;================================================== ;Zombie Extension Channel ;================================================== if (%zombie == ON) && ($nick == %zombiebot) && ($chan == %zombiechan) && (ZOMBIE ALERT isin $1-) { if ($active == $chan) { echo -a 1,4 Zombie Mode Extension - RADAR [7ZOMBIE DETECTED1] > msg $chan .shoot return } if ($active != $chan) { echo -a 1,4 Zombie Mode Extension - RADAR [7ZOMBIE DETECTED1] > Channel Ext: %zombiechan return } } } ; #FUNCTIONS# ========================================================================================================================== ; /duck ON/OFF - Turns Duck Hunter Assist ON or OFF. This aides by automating !bang to get a first shot in quicker. ; When turned on this only works when user is active on the duck channel. ; /radar ON/OFF - Turns Duck Hunter Radar ON or OFF. This will send a pop-up message to the active window notifying the user that a ; has been detected on one of the duck channels. ; /zombie ON/OFF - Turns Zombie Mode Extension ON or OFF. When turned on this mode combined Assist and Radar for ZombieHunt. While user ; is active on the Channel Ext with Zombie mode on, it will help the same as Duck Hunter Assist. ; While user is not active on the Channel Ext with Zombie mode on, it will use Zombie Radar to send pop-up message to ; the active window to notify user of zombie detection on the Channel Ext. ; /shop - This will bring up the DuckHunt shop menu. (If performed in ZombieHunt channel window will displat ZombieHunt shop menu) ; /foolsgold - Sends a fake golden duck message to the active chat window (Trick gun confiscation) ; /fakeduck - Sends a fake duck message to the active chat window (Trick gun confiscation) ; /falseduck - Sends a false duck message to the active chat window (Trick gun confiscation) ; ====================================================================================================================================== ;================================================== ;Shop Menu Command ;================================================== alias shop { if ($active == %zombiechan) { echo -a 1,4 * Zombie Mode Extension: [/shop] (ZombieHunt Shop Menu) } if ($active != %zombiechan) { echo -a 7,4 * Duck Hunter Script: [/shop] OR [/s] (DuckHunt Shop Menu) } echo -a 4 * [id]-[Name]-(xp cost) echo -a 4 * 1- Extra bullet (7 xp) echo -a 4 * 2- Extra clip (20 xp) 7,4[/ammo] echo -a 4 * 3- AP ammo (15 xp) echo -a 4 * 4- Explosive ammo (25 xp) echo -a 4 * 5- Repurchase confiscated gun (40 xp) 7,4[/gun] echo -a 4 * 6- Grease (8 xp) echo -a 4 * 7- Sight (6 xp) echo -a 4 * 8- Infrared detector (15 xp) echo -a 4 * 9- Silencer (5 xp) 7,4[/s9] echo -a 4 * 10- Four-leaf clover (13 xp) echo -a 4 * 11- Sunglasses (5 xp) echo -a 4 * 12- Spare clothes (7 xp) 7,4[/s12] echo -a 4 * 13- Brush for gun (7 xp) echo -a 4 * 14- Mirror (7 xp) echo -a 4 * 15- Handful of sand (7 xp) echo -a 4 * 16- Water bucket (10 xp) 7,4[/s16] echo -a 4 * 17- Sabotage (14 xp) echo -a 4 * 18- Life insurance (10 xp) echo -a 4 * 19- Liability insurance (5 xp) if ($active == %zombiechan) { echo -a 4 * 20- Scarecrow (50 xp) } if ($active != %zombiechan) { echo -a 4 * 20- Decoy (80 xp) } if ($active == %zombiechan) { echo -a 4 * 21- Piece of flesh (2000 xp) } if ($active != %zombiechan) { echo -a 4 * 21- Piece of bread (50 xp) } if ($active == %zombiechan) { echo -a 4 * 22- Zombie detector (5 xp) } if ($active != %zombiechan) { echo -a 4 * 22- Ducks detector (50 xp) } if ($active == %zombiechan) { echo -a 4 * 23- Mechanica Zombie (50 xp) } if ($active != %zombiechan) { echo -a 4 * 23- Mechanical duck (50 xp) } if ($active == %zombiechan) { echo -a 4 * Syntax: .shop [id] [target] } if ($active != %zombiechan) { echo -a 4 * Syntax: !shop [id [target]] } if ($active != %zombiechan) { echo -a 7,4 * Duck Hunter Syntax: /s <id> <username> (See also /s12 and /s16) } return } ;================================================== ;/duck <ON/OFF> - Duck Hunter Assist ON/OFF function ;================================================== alias duck { if ($1 == ON) { echo -a 7,4 * DuckHunt Duck Hunter Assist Turned > 8ON7 < [Channel 1: %duckchan $+ ][Channel 2: %duckchan2 $+ ] set %duck ON return } if ($1 == OFF) { echo -a 7,4 * DuckHunt Duck Hunter Assist Turned > 8OFF7 [Channel 1: %duckchan $+ ][Channel 2: %duckchan2 $+ ] set %duck OFF return } } ;================================================== ;/radar <ON/OFF> - Duck Hunter Radar ON/OFF function ;================================================== alias radar { if ($1 == ON) { echo -a 9,3 * DuckHunt Duck Hunter Radar Turned > 8ON9 < [Channel 1: %duckchan $+ ][Channel 2: %duckchan2 $+ ] set %radar ON return } if ($1 == OFF) { echo -a 9,3 * DuckHunt Duck Hunter Radar Turned > 8OFF9 < [Channel 1: %duckchan $+ ][Channel 2: %duckchan2 $+ ] set %radar OFF return } } ;================================================== ;/zombie ON/OFF - Zombie Hunter extension ON/OFF function ;================================================== alias zombie { if ($1 == ON) { echo -a 1,4 * Zombie Mode Turned > 3ON1 < [Zombie Extension Channel: %zombiechan $+ ] set %zombie ON return } if ($1 == OFF) { echo -a 1,4 * Zombie Mode Turned > 7OFF1 < [Zombie Extension Channel: %zombiechan $+ ] set %zombie OFF return } } ;================================================== ;F12 Key - !bang ;================================================== alias F12 { if ($active == %zombiechan) { msg $active .shoot return } msg $active !bang return } ;================================================== ;F11 Key - !reload ;================================================== alias F11 { if ($active == %zombiechan) { msg $active .reload return } msg $active !reload return } ;================================================== ;/foolsgold - sends a false golden duck message to chat (trick gun confiscation) ;================================================== alias foolsgold { msg $active -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUOCK 7* GOLDEN DOCK DETECTED * } ;================================================== ;/fakeduck - sends a fake duck message to chat (trick gun confiscation) ;================================================== alias fakeduck { msg $active -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< KWAK } ;================================================== ;/falseduck - sends a false duck message to chat (trick gun confiscation) ;================================================== alias falseduck { msg $active -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· ><))°> QUACK } ;================================================== ;reduck - remedial duck ;================================================== alias reduck { msg $active \_҈< ɊևԬҀҠ } ;================================================== ;rebang - remedial !bang ;================================================== alias rebang { msg $active !ɮѧӤԍ } ;================================================== ;/b - for !bang ;================================================== alias b { msg $active !bang } ;================================================== ;/r - for !reload ;================================================== alias r { msg $active !reload } ;================================================== ;/s9 - for !shop 9 (buy silencer, wont scare ducks for 24hrs) ;================================================== alias s9 { msg $active !shop 9 } ;================================================== ;/s12 - for !shop 12 (buy dry clothes when soggy) ;================================================== alias s12 { msg $active !shop 12 } ;================================================== ;/s16 <username> - for !shop 16 (make <username> soggy) ;================================================== alias s16 { msg $active !shop 16 $1 } ;================================================== ;/ammo - for !shop 2 (buy extra clip) ;================================================== alias ammo { msg $active !shop 2 } ;================================================== ;/gun - for !shop 5 (return confiscated gun) ;================================================== alias gun { msg $active !shop 5 } ;================================================== ;/s <number> <user> - for !shop X N (shopping) if just /s then brings up menu ;================================================== alias s { if ($1- == $null) { shop return } msg $active !shop $1- return } ;================================================== ;/td - for !topduck stats ;================================================== alias td { msg $active !topduck } ;================================================== ;/ds - for !duckstats ;================================================== alias ds { msg $active !duckstats } ; #UDF END# ================================================================================================================================ ; Foot Note...: Duck Hunter Script v1.1 (with ZombieHunt Extension) by Neo_Nemesis ; ==========================================================================================================================================
  3. Still alive last update was in 2023 by snerf IceChat 9.54
  4. From its humble beginnings to the latest release, BitchX has always been about community. Over the years, a handful of people have voluntarily contributed a great deal of time and energy to the project by writing scripts, providing support, troubleshooting, patches, enhancements - or simply making BitchX a fun thing to be involved with. With such a long history, we have had our losses. Several of the friends that we came to regard as a kind of extended family left us before their time, and we would like to remember them here. ssshooter Jason Higham, known to his friends on IRC as ssshooter, left us on July 11th, 2004. He is remembered fondly by his family and friends. sellfone On the 18th of July, 2004, our dearly missed friend Miles Wilson (also known as sellfone) passed away in his sleep. turtlex Amy Elizabeth Haskew died on June 16, 2009 at 34. Goodbye turtlex, you'll always be remembered as someone very kind, and wise beyond your years. frash RIP Marc Casillo aka frash [25/Nov/1970 - 28/Sep/2009] void Matthew Luberto, known to his many friends online as void, passed away in his sleep on February 16, 2013 in his 38th year. We'll miss you, void. bitchx-1.2.1.tar.gz
  5. RC Scripts How To Make A Fighting Script _________________________________________________ _________________________________________________ Table of Contents: 1. Introduction 2. What is mIRC? What are Scripts? 3. The Basics 4. Variables 5. If-Else Statements 6. Loading External Txt Files 7. Timers 8. The Battle Script v1 Code 9. Conclusion _________________________________________________ Battle Script v1
  6. Buzzen Connection Addresses: irc.buzzen.com r-bz-01.ircwx.com -> 167.114.203.97 r-bz-02.ircwx.com -> 167.114.203.102 port 7778 ssl port 7843 use ircwx.com domain address for ssl http://www.buzzen.com Irc.buzzen.net no longer works!!
  7. If anyone knows of an irc site that is still around with scripts or Snippets post it here plz 
  8. Im still Happy to see that DreamIRC is still alive. Meaning Website and downloads.
  9. Protect Your MSP business and customers from Cyber Threats! Are you tired of using multiple products to secure your endpoint, user, network and SaaS security? Introducing our single multitenant platform that converges all critical functionalities into one. Say goodbye to breaches and hello to peace of mind with Cynet today!
  10. https://github.com/aw-junaid/Hacking-Tools
  11. Buzzen Has a Tik Tok which we will be displaying the website how to do things and become Creative with your Profile page and etc
  12. I like to take the time to Introduce you to the new Buzzen People think that Jay and Mohammed and previous owners own Buzzen, Well that's not the case. The running of Buzzen is Eyecu also known as Wes and he's done a lot for Buzzen with the help of err0r who is in the website division and etc. Now we have also changed a lot with staff and I'm happy to say Sysop_Passion is back with us. Buzzen has removed a lot of the old stigma rooms that have haunted Buzzen for a long time and we have revamped new rooms which are showing a great number's of chatter's coming in the rooms. We have also put a radio Station Relay-Radio which is the official radio station of buzzen. Plus we have done a lot of upgrades to helping chatter's and etc. Not to mention starting to create a great atmosphere. We also have open an official Events Room which soon we will be starting small events to get chatter's involved in. Wes & err0r have done a great job behind the scenes & I'm proud to be apart of that team. So Come and see for yourself what Buzzen has become and join us in creating a great chatting experince!! www.buzzen.com
  13. Its sad news to hear that Scott has shut down his website Hawkee. After so many years he's decided it was better to close it, And let me tell you its a shame as TG007 & Coder's have tried to get him to sell or allow us to take care of the spamming and not loose all those snippets that have been on for years. What a waste and what a huge mistake. It pisses me off that people just wont allow other's to help and keep things running. So once again another good site closed and all of it's resources gone!! 😭🤬 Hawkee.com We regret to inform you that Hawkee.com has closed due to the overwhelming spam and operational overhead. Thank you to all our users who have participated in our community over the years. Your contributions, interactions, and support have meant the world to us. We appreciate every one of you and the vibrant community we built together. We hope that the connections and experiences you've had on Hawkee.com will continue to be valuable to you. Thank you for being a part of our journey.
  14. J'aimerais remercier Radio Canada de m'avoir aidé à faire connaître Buzzen Chat. Comme on me l'a demandé, nous allons ouvrir une salle de discussion appelée Montréal. J'attends avec impatience les bavardages de Montréal.I would like to thank Radio Canada for helping me spread the word out about Buzzen Chat. We will be opening a chatroom called Montreal as I have been requested to do. Looking Forward to Montreal Chatter's
×
×
  • Create New...