Search found 62 matches

by Gadget
2003-10-30 13:27
Forum: Hubs and scripts
Topic: $UserCommand script
Replies: 5
Views: 3086

is there a way to add private commands in the script (so i will know that is working with all my opers)?, gadget? Sure, they are raw commands, so you can do almost anything: "$UserCommand 1 6 Kick$$To: %[nick] From: %[mynick] $<%[mynick]> You are being kicked!|$Kick %[nick]||" Check wiki for more i...
by Gadget
2003-10-29 23:53
Forum: Hubs and scripts
Topic: $UserCommand script
Replies: 5
Views: 3086

Damn &# -escapes... Scripts can be downloaded here, copypaste from this page will not work!
by Gadget
2003-10-29 23:33
Forum: Hubs and scripts
Topic: $UserCommand script
Replies: 5
Views: 3086

$UserCommand script

Here are basic scripts for usual default commands for $UserCommand extension (will work right-clicking the userlist or hub tab with DC++ 0.301 or newer): NMDCH+GeneralBot: ' UserCommand extension script for NMDCH by Gadget Sub OpConnected(curUser) curUser.SendData "$UserCommand 255 7" curUser.SendDa...
by Gadget
2003-09-15 11:27
Forum: Hubs and scripts
Topic: Hey every one .. how do i register a hub on the list ?
Replies: 8
Views: 4171

- Check your hub settings so that your address and port is correctly set. - Check registration addresses. (usually vandel405.dynip.com;dcreg.mine.nu;warez.1stleg.com) - Wait. - Hublist.org does not yet have registration server (it collects addresses from other lists) but you can add your hub to the ...
by Gadget
2003-09-13 22:59
Forum: Hubs and scripts
Topic: Finnish hublist Problem!
Replies: 1
Views: 1847

by Gadget
2003-07-10 17:14
Forum: Hubs and scripts
Topic: the best script request ever made in the world
Replies: 12
Views: 5103

Function CheckRegUser(sUser) CheckRegUser=True End Function So actually you dont need the whole function =) the invalid newuserconnected (like mldc) are stopped by the initial conditions Cant really say if it's mldc until it sends $MyINFO, so upload bandwidth is wasted anyway if hub doesn't use del...
by Gadget
2003-07-10 04:54
Forum: Hubs and scripts
Topic: the best script request ever made in the world
Replies: 12
Views: 5103

''''''''''''''''''''''''''''''''''' 'Check if user is in hub registry '''''''''''''''''''''''''''''''''''' Function CheckRegUser(sUser) CheckRegUser = True For Each oItem In frmHub.lstOps.listItems If lcase(oItem.Text) = Lcase(sUser) then CheckRegUser = True End IF Next End Function That function r...
by Gadget
2003-07-02 16:26
Forum: Hubs and scripts
Topic: Script request
Replies: 5
Views: 2698

Actually previous script wont work in NMDCHub if the vips are registered (reg users trigger OPConnected sub). Here's one universal with customizable messages to ops, registered users, normal users and by nick: 'WelcomeMsg by Gadget Dim sBotName, sUserMsg, sRegMsg, sOpMsg, oUser Sub Main sBotName = "...
by Gadget
2003-07-02 11:20
Forum: Hubs and scripts
Topic: general bot strange behavour
Replies: 7
Views: 2941

Well value 0 works just like value 1... Try this if you want to change it: Sub tmrScriptTimer_Timer() If UBound(aRedirHub)>0 Then frmHub.txtRedirect=CStr(Trim(aRedirHub(Int(Rnd*(UBound(aRedirHub)+1))))) iMinute=iMinute+1 If iMinute=>iSearchInterval And iSearchInterval>0 Then iMinute=0 If iSearchBadF...
by Gadget
2003-07-02 04:42
Forum: Hubs and scripts
Topic: [HELP] A pb with our hub in the main chat, need your help !
Replies: 2
Views: 1570

Wrong forum but anyway...

Assuming you are using NMDCHub. Probably you had switched on "Optimizations->Block chat messages when" checkbox and the characters/minute value is too low (betting 1€ for zero). Uncheck the checkbox or put a larger value to chars per minute.
by Gadget
2003-07-02 04:19
Forum: Hubs and scripts
Topic: general bot strange behavour
Replies: 7
Views: 2941

Ohh, try this:

Code: Select all

   ElseIf sLastPunished=CStr(curUser.sName) And iPolicy(iReason)>0 Then
    curUser.Disconnect
   End If
Disconnect only is to avoid millions of same tempbanned ip's.
by Gadget
2003-06-30 09:49
Forum: Hubs and scripts
Topic: general bot strange behavour
Replies: 7
Views: 2941

No, you shouldn't. What the script does/doesnt?
by Gadget
2003-06-28 11:11
Forum: Hubs and scripts
Topic: Slots
Replies: 4
Views: 2346

If it's passive user using NMDC, there's no easy way to check slots with hub script
by Gadget
2003-06-26 20:25
Forum: Hubs and scripts
Topic: Search Spam?
Replies: 8
Views: 3945

1. Why is that? Over 7 search requests came from same nick in 5 seconds. This can have many reasons: - Somebody's got a laggy connection and all his search requests come suddenly at once - Hub's got laggy connection and all the searches come suddenly at once - You've got laggy connection and all th...
by Gadget
2003-06-23 01:29
Forum: Hubs and scripts
Topic: Australian Hubs ?
Replies: 1
Views: 1348

I guess this place is not quite right for posting hub addresses, but you coult try searching for hubs.
by Gadget
2003-06-21 05:59
Forum: Hubs and scripts
Topic: +myip ???
Replies: 2
Views: 1850

Code: Select all

Sub DataArival(curUser,sCurData)
  If sCurData="<"+curUser.sName+"> +myip" Then curUser.PrivateMessage "YourIP",CStr(curUser.IP)
End Sub
by Gadget
2003-06-18 03:52
Forum: Hubs and scripts
Topic: Odd problem with General Bot
Replies: 2
Views: 1692

I've never seen such behavior... Maybe it's some kind of leak in NMDCHub's internal user counter, what does the hubsoft's status bar say as user amount? AFAIK the max users slider value won't always affect before hub reboot if adjusted from script (iMaxHubUsers value), use rather iMaxUsers for adjus...
by Gadget
2003-06-17 06:10
Forum: Hubs and scripts
Topic: faked version detecting [HUB Script]
Replies: 10
Views: 4462

Well the script doesn't wait for locks so it shouldn't slow down the hub much. Included dll will listen for incoming connections and log the locks, so they are available to the hub script when they arrive. I tested a little with 200 users and looked like it worked nicely. Same method could be used f...
by Gadget
2003-06-17 05:37
Forum: Hubs and scripts
Topic: faked version detecting [HUB Script]
Replies: 10
Views: 4462

No way to do it? That sounded like a challenge... Download it
by Gadget
2003-06-05 14:25
Forum: Hubs and scripts
Topic: Hub config
Replies: 5
Views: 2904

There is a "Only allow registered users" checkbox in security page, try that
by Gadget
2003-06-05 00:10
Forum: Hubs and scripts
Topic: Scripts and stuff---need a few basic ones..
Replies: 2
Views: 1789

Min share script? Well i suppose you are talking about Neo-Modus's hub software because most of the others do have min share checking embedded. Here's simple one: Sub DataArival(curUser.sCurData) If Left(sCurData,8)="$MyINFO " And Not curUser.bOperator Then If curUser.iBytesShared<5*1024^3 Then CurU...
by Gadget
2003-05-18 14:27
Forum: Hubs and scripts
Topic: Hub list problems? LOOK HERE!!
Replies: 32
Views: 1372052

New dynamic hublist at http://www.hublist.org/PublicHubList.config.bz2 with over 2000 online hubs. The hublist uses www.hublist.org database on real-time and it's customizable in many ways: http://www.hublist.org/PublicHubList.config.bz2?SE.bz2 gives list of all swedish hubs (choose any country) htt...
by Gadget
2003-03-26 19:59
Forum: Hubs and scripts
Topic: General Bot PM
Replies: 4
Views: 2479

This is because i hate new popups. If you want to open a new window with answer from the script, just type your question privately to it. Script will answer to the same window. If you want to change that behavior, find line #1057 from the script: curUser.SendData CStr("<"+sBotName+" (private)> "+sA)...
by Gadget
2003-03-19 06:41
Forum: Feature Discussion (Archived)
Topic: MULTIHUB PLZ
Replies: 16
Views: 7176

Indeed you are :) The protocol only allows for active clients to use multi searching. So there is no big amount of bandwidth wasted. Never made that NMDCHub's multihub search to work properly. Looks like search requests take about 5-10% of hub traffic so multihub searching with lot of hubs could no...
by Gadget
2003-03-18 21:53
Forum: Feature Discussion (Archived)
Topic: MULTIHUB PLZ
Replies: 16
Views: 7176

IMHO multihub searching doesn't really improve hub performance, at least when it comes to passive searcing. There are much stuff in active too which could take up much upload bandwidth when there are lot of hubs connected. I might be wrong, somebody could make some calculations?
by Gadget
2003-03-17 21:23
Forum: Hubs and scripts
Topic: Quick fix for GeneralBot and DC++ 0.24
Replies: 15
Views: 6533

sarf wrote:Just to do some shameless plugging for my new and improved DC++k version
Looks like a "permban on sight" version of dc++
by Gadget
2003-03-17 05:12
Forum: Programmer's Help
Topic: compiling error .24
Replies: 12
Views: 5874

volume wrote:Ps. you are the gadget of 'gadget hub script' ?
http://gadget.no-ip.info
by Gadget
2003-03-17 05:08
Forum: Protocol Alley
Topic: Multiple Locks
Replies: 1
Views: 1594

It's part of GeneralBot's client checking feature. NMDC answers with $Key while DC++ doesn't. Clients without proper tag and key will be flagged as fakes.
by Gadget
2003-03-14 09:08
Forum: Programmer's Help
Topic: compiling error .24
Replies: 12
Views: 5874

volume wrote:Linking...
MainFrm.obj : error LNK2001: unresolved external symbol "public: static class ADLSearchFrame
Add ADLSearch.cpp and ADLSearch.h to Client files and ADLSearchFrame.cpp and ADLSearchFrame.h to DCPlusPlus files.
by Gadget
2003-03-12 15:52
Forum: Programmer's Help
Topic: compiling error .24
Replies: 12
Views: 5874

Code: Select all

	for(Directory::MapIter j = directories.begin(); j != directories.end(); ++j) {
		delete j->second;
	}
by Gadget
2003-03-12 15:48
Forum: Hubs and scripts
Topic: designated user room
Replies: 7
Views: 3237

by Gadget
2003-03-12 10:21
Forum: Hubs and scripts
Topic: Quick fix for GeneralBot and DC++ 0.24
Replies: 15
Views: 6533

I'll add adjustable ratio of each connection type in future versions. i.e. normal hub=1 hub, registered hub=0.5 hubs and oped hub=0 hubs...
by Gadget
2003-03-12 03:20
Forum: Hubs and scripts
Topic: Quick fix for GeneralBot and DC++ 0.24
Replies: 15
Views: 6533

There is also GeneralBot 0.241 available: - supports H:x/y/z tag - rules command for users (displays login message) - hub traffic in hubinfo - sunet pinger detection Generalbot-optimized DC++ 0.24 can be found here . It has some right-click commands for operators and two new advanced options: - abil...
by Gadget
2003-03-11 21:09
Forum: Hubs and scripts
Topic: Quick fix for GeneralBot and DC++ 0.24
Replies: 15
Views: 6533

I've decided to use only the first value for now, because registered/oped hubs were not counted in earlier versions. Users simply don't use the new version or make their own faked descriptions if it's harder to get in with new tag.
by Gadget
2003-03-11 15:23
Forum: Hubs and scripts
Topic: Quick fix for GeneralBot and DC++ 0.24
Replies: 15
Views: 6533

It's slower
by Gadget
2003-03-11 13:11
Forum: Hubs and scripts
Topic: Quick fix for GeneralBot and DC++ 0.24
Replies: 15
Views: 6533

Quick fix for GeneralBot and DC++ 0.24

New DC++ gives slot amout as H: x/y/z where x is count of hubs where user is normal user y is count of hubs where user is registered user z is count of hubs where user is operator That's why generalbot can't get hub count correctly (VBScript functions can't handle string->integer conversions if stri...
by Gadget
2003-03-09 10:49
Forum: Hubs and scripts
Topic: script to display traffic information for NMDC hubserver
Replies: 4
Views: 2541

The string is in frmHub.stsHub.Panels(2).Text
by Gadget
2003-03-05 20:44
Forum: Hubs and scripts
Topic: Need help ... plz
Replies: 6
Views: 2969

Nope, but it activates NewUserConnected(curUser) or OpConnected(curUser) sub...
by Gadget
2003-02-27 21:29
Forum: Hubs and scripts
Topic: DCHubSetup software help
Replies: 3
Views: 2319

426239th time... Download and install Neo-Modus Direct Connect also. Hub installer wont install needed libraries.
by Gadget
2003-02-25 15:29
Forum: Hubs and scripts
Topic: Making a Hub on XP
Replies: 5
Views: 3149

Cool. Lot of info. Let's guess.
Using probably NMDC Hub, it should work fine on XP.

- You havent installed Direct Connect, libraries missing?
- You have some non-working script there?
- You have XP's internal firewall on and users can't get in?
by Gadget
2003-02-23 11:38
Forum: Feature Discussion (Archived)
Topic: always on top
Replies: 5
Views: 3118

Naah, he just wants to leech in every 700 hubs on the list, and opening those all by doubleclicking them one by one and getting back to the hublist takes too much time.
by Gadget
2003-02-18 20:37
Forum: Hubs and scripts
Topic: Visual Basic
Replies: 20
Views: 8573

Whoops, wrong fixup, this shoud do it, line 1045:

Code: Select all

      If Left(sCurData,1)="<" Or iSecurity=2 Then
to

Code: Select all

      If Left(sCurData,1)="<" And iSecurity=0 Then
by Gadget
2003-02-18 20:32
Forum: Hubs and scripts
Topic: Visual Basic
Replies: 20
Views: 8573

If you want answer as private message in separate window, just send question privately to generalbot.

If you want to change that feature, edit the line 1045:

Code: Select all

      If Left(sCurData,1)="<" Or iSecurity=2 Then
to

Code: Select all

      If Left(sCurData,1)="<" Then
by Gadget
2003-02-18 15:46
Forum: Hubs and scripts
Topic: A /Me script
Replies: 9
Views: 4209

There is some kind of me support in ChatSecurity, it needs a slightly modified hub software.
by Gadget
2003-02-17 21:30
Forum: Hubs and scripts
Topic: Question for gadget...
Replies: 2
Views: 1957

Looks like all the dollar symbols are gone, if it looks the same in script host, download it again. You can set as many admins as you like to.
by Gadget
2003-02-12 20:15
Forum: Feature Discussion (Archived)
Topic: Search Just for ISO, BIN, CUE, or IMG files
Replies: 16
Views: 7164

.BIN CDRWin, CloneCD, Nero, Daemon Tools, IsoBuster .BWI BlindWrite .BWT BlindWrite, Daemon Tools .C2D WinOnCD, IsoBuster .CCD CloneCD, Daemon Tools .CD CDi, OptImage, IsoBuster .CDI DiscJuggler, Daemon Tools .CDJ DiscJuggler .CDP NTI CD-Maker .CIF Easy CD Creator, DiscJuggler, IsoBuster .CUE CDRWin...
by Gadget
2003-02-12 19:57
Forum: Feature Discussion (Archived)
Topic: Kick fakeshareusers automatic
Replies: 2
Views: 2495

Check Ragnarock out
by Gadget
2003-02-09 08:33
Forum: Feature Discussion (Archived)
Topic: show ip of downloaders/uploaders
Replies: 11
Views: 5746

Yeah, right. Maybe a ddos attack option would be nice in dc++ too?
by Gadget
2003-02-08 19:17
Forum: Hubs and scripts
Topic: Wanted to know if i could get a script that....
Replies: 3
Views: 2404

All listed can send mass messages to all ops or all users, commands are: massmessage <message> and opmessage <message> Messages sent by powerops privately to bot will be sent as private opmessage. Ops can also answer to mass messages - whoever sent that first message will recieve the answer (kind of...