Search found 62 matches

by Gadget
2003-02-08 15:04
Forum: Hubs and scripts
Topic: Wanted to know if i could get a script that....
Replies: 3
Views: 2404

Try this.
by Gadget
2003-02-08 05:48
Forum: Hubs and scripts
Topic: Fighting DCSpam
Replies: 9
Views: 4620

That should limit the spam so that spammer cant send pm's more than n users, even if he waits that login timeout, which he currently does not. That script should also stop other advertizers and prevent main chat flood. Script really needs a modified hub with main chat and pm's disabled, script handl...
by Gadget
2003-02-07 19:20
Forum: Hubs and scripts
Topic: Hub Script site list
Replies: 28
Views: 118843

by Gadget
2003-02-07 16:56
Forum: Hubs and scripts
Topic: Fighting DCSpam
Replies: 9
Views: 4620

If the users comes into the hub that the must be first 2min in the hub before they may send a pm.
Here is such script.
by Gadget
2003-02-04 11:50
Forum: Hubs and scripts
Topic: Need some help with this slot finder script..
Replies: 7
Views: 3866

Just move that part of the script couple of lines below where the user commands are

(from line 1068)
Select Case s
<- here for example
Case sCmdPrefix+"share"
by Gadget
2003-01-31 23:12
Forum: Feature Discussion (Archived)
Topic: Passive Mode
Replies: 24
Views: 11949

Re: Passive Mode

NAT (native address translation... many users behind the same IP address) = passive Actually NAT=Network Address Translation (sometimes PAT, Port Address Translation) NAT to NAT impossible??? No, it's possible. :D This depends of type of NATting, see How NAT works . TeraPod (external plug-in for MS...
by Gadget
2003-01-31 22:38
Forum: Protocol Alley
Topic: EXTENDEDPROTOCOL for Hub Lists/Registration Servers
Replies: 3
Views: 2795

I made a $BotINFO command to GeneralBot so that hublist pingers can get more information about the hub. While pinging, send: $BotINFO <bot description> And hub should answer: $HubINFO <hub name>$<hub address>$<hub description>$<max users>$<min share>$<min slots>$<max hubs>$NMDCHub GeneralBot 0.24$ W...
by Gadget
2003-01-21 19:20
Forum: Feature Discussion (Archived)
Topic: Find New Sources needs rate control - It causes search spams
Replies: 15
Views: 7145

Usually those search spams occurs when there had been some kind of communication problems... All searchs requests client sent in i.e. one minute end up to hub or another client in short time because of some kind of timeout.
by Gadget
2003-01-19 22:45
Forum: Hubs and scripts
Topic: help with scripts
Replies: 3
Views: 2646

DC++ is a client and it wont run scripts. You need scripts only when you run a hub. With hub you should put the scripts to "Scripts" folder under hub installation folder (usually C:\Program Files\Direct Connect Hub\Scripts). There are lot of documentation about VBScript in internet, try http://msdn....
by Gadget
2003-01-17 10:52
Forum: Hubs and scripts
Topic: Two bots in same Hub
Replies: 12
Views: 5967

If you had installed Microsoft Office, search and open "VBSCRIP5.CHM" from your HD.
by Gadget
2003-01-16 12:27
Forum: Protocol Alley
Topic: $UserIP
Replies: 37
Views: 18291

Ok, changed that command, so it's now the same =)

Code: Select all

Sub DataArival (curUser, sCurData) 
  If sCurData="$UserIP "+curUser.sName Then CurUser.SendData CStr("$UserIP "+curUser.sName+" "+curUser.IP+"|")
End Sub
by Gadget
2003-01-16 08:27
Forum: Protocol Alley
Topic: $UserIP
Replies: 37
Views: 18291

Added support for $MyIP command to GeneralBot because it was easy enough to add. There are other ways for operators to find out specific users ip, at least i dont want them to be able to collect everyone's IP with a simple mouse click or so. Sub DataArival (curUser, sCurData) If sCurData="$MyIP" The...