Search found 209 matches
- 2004-01-09 16:28
- Forum: Hubs and scripts
- Topic: copy users from old neomodus dchub to the new version
- Replies: 3
- Views: 2212
I'm not familiar with NMDCH2, so I don't know how to do it, but as for what he meant by "copying user", it's proably importing the names / passwords / op status from the old NMDCH's frmHub.lstOPs into the new hub (thus saving a lot of typing if you 500 reged users and their passwords to migrate). Wo...
- 2004-01-09 11:19
- Forum: Hubs and scripts
- Topic: One step help, please
- Replies: 2
- Views: 1863
You should also note that SDCH allows serving on multiple ports. So if you simply added 1490 at the end of the default ports, you will end up with that setting being "1411;411;1490" This in itself, is perfectly fine, even if only 1490 is opened on your router/firewall. The hub will be serving on 141...
- 2003-12-31 10:46
- Forum: Hubs and scripts
- Topic: adsl/dsl can not get my hub
- Replies: 4
- Views: 2851
- 2003-12-20 04:35
- Forum: Hubs and scripts
- Topic: Download/upload tracking
- Replies: 1
- Views: 1679
The general idea of peer-to-peer softwares is that 2 clients transfer the data directly from each other. The hub can know who requests a connection to whom and assume a file transfer is going to occur in between the 2 clients, but it really has no way of knowing from there how many files are going t...
- 2003-11-26 18:11
- Forum: Hubs and scripts
- Topic: Network help needed
- Replies: 1
- Views: 1216
If you know a hub that's part of a network of hubs, the best way to find more about that specific network is to check their boards or ask the owner of the hub how to join. Because each of them have different rules and conditions for joining, it's very hard to answer your question from a general pers...
- 2003-11-26 14:02
- Forum: Hubs and scripts
- Topic: Hub script help
- Replies: 4
- Views: 3045
Oh, I almost forgot... If you want a list of which hub software supports which scripting language, go have a look on the very good FAQ from :
http://www.broadbandreports.com/faq/dc?r=683
(The section 7 and 7.1 of it)
http://www.broadbandreports.com/faq/dc?r=683
(The section 7 and 7.1 of it)
- 2003-11-26 13:57
- Forum: Hubs and scripts
- Topic: Hub script help
- Replies: 4
- Views: 3045
The script you saw is a script in VBS (Visual Basic Script). They are commonly used on the "old" neomodus hub (NMDCH), but there are many alternative hub softwares out there that will run VBS scripts as well. For example Ryalth's DC Hub (RDCH), old versions of SBHub (recent versions run with pascal ...
- 2003-11-24 02:29
- Forum: Hubs and scripts
- Topic: A quick question about hosting...
- Replies: 2
- Views: 1857
Essentially, what the NOP said is right. If your hub is down, you can't redirect them via scripting or anything, since there's no hub there to connect to (and be redirected from) in the first place. However, there are 2 main 100% automated solutions available : 1) Instead of having a basic dns servi...
- 2003-11-18 08:09
- Forum: Hubs and scripts
- Topic: [REL] Modified Searchkick 1.5 of Gadget
- Replies: 3
- Views: 2454
frmHub.lstPermBan.AddItem(curUser.IP()) '<-- IP Banned '<-- Nick banned... if i find the instructions frmHub.DoEventsForMe CurUser.Disconnect() anyone have them? please, please, gimme There is no nick ban under NMDCH. Only RyalthDCH, (older versions of) SBHub, and SDCH offer native nickbans to VBS ...
- 2003-11-15 19:58
- Forum: Hubs and scripts
- Topic: running a hub
- Replies: 2
- Views: 2040
where do i get the software to do this? Depends on which hub software you want to run... That probably leads to the next question "which hub software should I run ?".. The answer really depends on you, and what you want to do with the hub once it's running. For example, if you know a little about p...
- 2003-11-14 15:00
- Forum: Hubs and scripts
- Topic: Example of ml donkey?
- Replies: 2
- Views: 1910
You can find one in http://dcplusplus.sourceforge.net/forum/viewtopic.php?t=2209 If you gather the strenght to read the thread to the end =p If not, here's the extract you're looking for : Option Explicit ' --------------------------- Sub DataArival(curUser, sCurData) ' --------------------------- I...
- 2003-11-12 00:27
- Forum: Hubs and scripts
- Topic: Running DC Hub as a Windows Service?
- Replies: 7
- Views: 4027
I'll never understand why people can't use the preview button before putting up an error filled post. Yes, it's not like a super explicit name such as viewtopic.php?t=490 wasn't immediately standing out in the preview, when what you meant to post was viewtopic.php?p=2286#2286... They don't even poi...
- 2003-11-10 03:53
- Forum: Hubs and scripts
- Topic: frmHub.DoEventsForMe
- Replies: 22
- Views: 9983
what else can be done to extend the delays before other commands is execute? You can use a timer (set it to 2 seconds, and keep it turned off ), and put the 2 "batches" of commands in 2 different subs. Also declare a global variable at script level to keep track of the timer : 1) Launch the sub tha...
- 2003-11-09 23:34
- Forum: Hubs and scripts
- Topic: frmHub.DoEventsForMe
- Replies: 22
- Views: 9983
While you can look at it as a pause, it is however not a "timed" pause for a fixed amount of (mili)seconds, but clearly a hold in the original thread to go "Do" the "Events" that pilled up while it was executing... If you put 2 DoEvents in a row, the first DoEvents will hold/pause your script for a ...
- 2003-11-09 12:25
- Forum: Hubs and scripts
- Topic: frmHub.DoEventsForMe
- Replies: 22
- Views: 9983
DoEvents is commonly used to ensure messages are sent, but it is not its only use, not even in DC scripting. Here is an example of DoEvents not related to message delivery : Sub DictClean(objDict) Dim x, aClean aClean = objDict.Keys For x = 0 to objDict.Count-1 If Not colUsers.Online(cstr(aClean(x))...
- 2003-11-07 07:55
- Forum: Hubs and scripts
- Topic: Total newb...please help, I want to start my own darknet
- Replies: 6
- Views: 3590
Personally, I'd recommend giving an eye to the very neat FAQ on http://www.broadbandreports.com/faq/dc?r=683
To setup a hub, the section 7 and 7.1 of the faq should help you get started =)
To setup a hub, the section 7 and 7.1 of the faq should help you get started =)
- 2003-11-04 06:14
- Forum: Hubs and scripts
- Topic: Does VB scripts work with other Hub Prog.
- Replies: 20
- Views: 9007
sdch has really surprised me, would like to test it with some gadget scripts, but cant find the converter Just for the record, some of Gadget's scripts have been re-written especially for SDCH. Sure, running their NMDC version thru the converter works just fine, but while SDCH has direct equivalent...
- 2003-06-29 14:50
- Forum: Hubs and scripts
- Topic: Scripts
- Replies: 1
- Views: 1541
If i take the code and put it into a script, then move the script file into the /scripts directory they will auto run when the hub starts correct? They will auto run when the hub starts, indeed. In case you made some changes to an already running script, you can also hit the "reset" button, which w...
- 2003-06-28 15:07
- Forum: Hubs and scripts
- Topic: Slots
- Replies: 4
- Views: 2695
By the way, those 2 scripts don't detect people with less than 1 slot before they send results to regular passive searches from other users. If you want to force each client to always send you a few search results each time they connect or change their slot settings, just let me know and I can add a...
- 2003-06-28 14:47
- Forum: Hubs and scripts
- Topic: Slots
- Replies: 4
- Views: 2695
Option Explicit ' --------------------------- Sub DataArrival(curUser, sData) ' --------------------------- If AscW(sData)=36 Then If LeftB(sData, 8) = "$SR " Then InfoAnalysis curUser, MidB(sData, LenB(curUser.sName)+10) End If End Sub ' --------------------------- Sub SRAnalysis(objUser, sRawData...
- 2003-06-27 19:18
- Forum: Hubs and scripts
- Topic: IPBlocker Subnets
- Replies: 4
- Views: 2756
well see i wasnt sure on which ones wouldnt be appropriate i just scoured round a few sites and took note of ip they tell people to ban on there firewalls i took out the very obviousones like U.S postal service I did just the same for my own list, and it's far from being exaustive but at least it's...
- 2003-06-27 09:15
- Forum: Hubs and scripts
- Topic: IPBlocker Subnets
- Replies: 4
- Views: 2756
Would someone please have a look through it and tell me which ones are not applicable. There is currently 112 in there You mean you'd like someone to review all 112 of them and cross-reference them on the Arin and Internic for you ? =p I gave an eye to the 2 top ones in your list (the 2 first RIAA ...
- 2003-06-27 05:44
- Forum: Hubs and scripts
- Topic: connect to hub through router
- Replies: 9
- Views: 4650
are you sure this is even possible? It's not only possible, but it's also the only way it will work. even if you open the correct ports you can't connect to your own external ip can you? As long as your hub is setup properly, it is completely irrelevant. You can perfectly connect to your own hub us...
- 2003-06-26 21:33
- Forum: Hubs and scripts
- Topic: connect to hub through router
- Replies: 9
- Views: 4650
you mean the router IP or my ADSL IP The IP from your router, as seen from the "outside" (meaning as seen by computers that are on the net). Essentially, that would be the same IP as your hub, since both your computers are behind the same router. It's also the same IP as your own IP as seen from th...
- 2003-06-26 12:18
- Forum: Hubs and scripts
- Topic: connect to hub through router
- Replies: 9
- Views: 4650
my router wont allow me to connect over the net (...) get people's shares while connected internally, something that doesnt happen at the moment A hub acts as a list / directory of users. However, file transfers happen directly from one client to another, and don't transit by the hub. It's the whol...
- 2003-06-21 23:31
- Forum: Hubs and scripts
- Topic: ADE IPBLOCKER WITH COMMAND
- Replies: 13
- Views: 6343
is there any script editor to find that kind of errors? one of them that make easy the visualization/comprehension of the code? There's AEdiX , which has syntax highlighting for 24 languages, many built-in tools, and can be reconfigured entirely via Pascal (so you could add DC objects, functions an...
- 2003-06-18 11:02
- Forum: Hubs and scripts
- Topic: looking for a specific hub...
- Replies: 1
- Views: 1589
Give an eye to www.hublist.org and look if you can find it.
If you know the names of people who were in that hub, you can also look for them on that website, and see in which hubs they currently are. So you could also pay them a visit and ask them about it, if you really can't find it.
If you know the names of people who were in that hub, you can also look for them on that website, and see in which hubs they currently are. So you could also pay them a visit and ask them about it, if you really can't find it.
- 2003-06-15 20:59
- Forum: Hubs and scripts
- Topic: Newbie search 1 script
- Replies: 1
- Views: 1470
There are hub scripts that handle these messages for the neo modus clients; however it's also built-in DC++ (it's the /away and /back commands). If you prefer them handled at hub level, or want to support them for NeoModus clients as well, there are scripts in the script library (that's the sticky p...
- 2003-06-13 08:51
- Forum: Protocol Alley
- Topic: Change the order between $MyINFO and $GetNickList
- Replies: 12
- Views: 7510
The way ivul suggested still makes more sense. Obviously, if you're going to make some checks on $MyInfo to validate it against hub-specific rules, you don't need to send the nicklist before the $MyInfo is validated. If you're going to kick the client right after, it's just a big waste of bandwidth....
- 2003-06-10 10:21
- Forum: Hubs and scripts
- Topic: Search Spam?
- Replies: 8
- Views: 4580
* Search flood detection (If more than 5 searches are received from the same user within 7 seconds, DC++ will send out a warning) That's an extract from the readme file that pops up when you select the option entitled "readme / newbie help" from the help menu of the DC++ progie. So, if you're getti...
- 2003-06-10 07:50
- Forum: Hubs and scripts
- Topic: bot help :(
- Replies: 4
- Views: 2666
- 2003-06-08 11:31
- Forum: Hubs and scripts
- Topic: My users get disconnected
- Replies: 7
- Views: 3812
- 2003-06-06 12:02
- Forum: Hubs and scripts
- Topic: how to set up a hub for my LAN
- Replies: 5
- Views: 3039
- 2003-06-06 11:53
- Forum: Hubs and scripts
- Topic: HELP how to make........
- Replies: 4
- Views: 2745
wath is the name on there mother software (i can't finde it) The "mother" software, which is also the most used at this point, is the hub software from NeoModus. You can grab it from http://www.neo-modus.com/ (from their download page) I'd also suggest giving a quick eye to : http://dcplusplus.sour...
- 2003-06-04 11:30
- Forum: Hubs and scripts
- Topic: Script Help
- Replies: 1
- Views: 1383
It would probably be a bit better if you told us a bit what you need help with exactly.. For example, what is the script supposed to do, and what exactly doesn't work with it ? An other thing that would help is which arguments you pass to your function... For example, you start right away with lPos ...
- 2003-06-04 04:04
- Forum: Hubs and scripts
- Topic: how to set up a hub for my LAN
- Replies: 5
- Views: 3039
so only the computers on my Lan can access it? Easy. Ban your router, or block it with a firewall. That should cut out external traffic, and keep only LAN traffic flowing =) -that is, unless you have a very small "LAN" of only 2 or 3 computers and everything pluged directly in the router, without a...
- 2003-05-30 22:09
- Forum: Hubs and scripts
- Topic: How did he find my hub??
- Replies: 6
- Views: 4051
How are they finding it? A while ago when running a test hub to develop scripts, I noticed the NMDC hub doesn't always respect your wishes of "not auto-registering". It sends a registration string out there anyway, shortly after the hub started. You can see it in the status window, it's probably go...
- 2003-05-30 21:41
- Forum: Hubs and scripts
- Topic: mac os 9.1 file sharing hub
- Replies: 4
- Views: 2546
that's OS X only Ah, yes... Ooops. I'm completely unfamiliar with the Mac world (it shows a bit, doesn't it ? :P ) My bad =) I don't know what the terminal refers to, in a mac context, but I assumed it was something similar to Dos for win platforms, so it sounded like it just might have worked (the...
- 2003-05-30 00:04
- Forum: Hubs and scripts
- Topic: Hub Running
- Replies: 1
- Views: 1472
- 2003-05-30 00:01
- Forum: Hubs and scripts
- Topic: mac os 9.1 file sharing hub
- Replies: 4
- Views: 2546
If you're adventurous, you can also head over there and get the neo-modus hub for mac :
http://www.neo-modus.com/DCHub.sit
http://www.neo-modus.com/DCHub.sit
- 2003-05-26 08:46
- Forum: Hubs and scripts
- Topic: Script Question
- Replies: 11
- Views: 5972
I don't guess any of you know what's going on with my problem. Oh yes, ignoring bots or not doesn't have anything to do with whether or not you can see their description/connection. 1) Try with an | at the end of the data you send, and without ;) 2a) Which trigger/event do you use to send the MyInf...
- 2003-05-25 15:15
- Forum: Hubs and scripts
- Topic: Create a Hub
- Replies: 4
- Views: 3339
Oh, it's nothing that fancy, I just scrolled down 2 weeks worth and re-grabed the 2 links I had already pasted in that thread =p They seem to do the work ok =)
- 2003-05-25 07:25
- Forum: Hubs and scripts
- Topic: Create a Hub
- Replies: 4
- Views: 3339
- 2003-05-23 01:13
- Forum: Hubs and scripts
- Topic: Script Question
- Replies: 11
- Views: 5972
I can't get the MinShare to work for ANY SCRIPT I DOWNLOAD. Could you quickly describe the exact behavior ? I have already seen several cases where 2 or more scripts were trying to check minimum share size, and were steping on each other's feet (i.e. one script would kick a user, and the script wou...
- 2003-05-18 19:25
- Forum: Hubs and scripts
- Topic: LINE SCRIPT TO DETECT A SINGULAR FILE
- Replies: 10
- Views: 4940
If InStr(aFileinfo(0),"popo.red") Then iReason=20 (...) it bans also "popo.redo" or "apopo.red" If you start counting from the right, you'll avoid catching the "popo.redo", however, it will still catch "apopo.red". The search result will always mention the directory, so using \popo.red, as you sugg...
- 2003-05-18 18:50
- Forum: Hubs and scripts
- Topic: LINE SCRIPT TO DETECT A SINGULAR FILE
- Replies: 10
- Views: 4940
so, why rightb instead right? RightB goes faster than Right (counts bytes instead of characters). Of course, with RightB, you need to give the number of bytes instead of the number of characters; and in unicode a character is 2 bytes. isn't 16 the number of characters of the string? 8 characters x ...
- 2003-05-18 14:26
- Forum: Hubs and scripts
- Topic: Search Result Fomat?!
- Replies: 4
- Views: 2713
Ok, back in december 2001, the pioneer in this domain was Suxx, and he published the very first (unless I'm wrong, but it appears to be him) protocol documentation ever made. It's on : http://sourceforge.net/docman/display_doc.php?docid=8486&group_id=36589 Then you have the more recent documentation...
- 2003-05-18 14:07
- Forum: Hubs and scripts
- Topic: LINE SCRIPT TO DETECT A SINGULAR FILE
- Replies: 10
- Views: 4940
the range aint too much usualy like 81.6.83.xxx so it aint too bad First, if it's a very small provider or a modest non-provider structure that just started or with small needs, they'll have a netrange smaller than 256 IPs. Likely a /27 or a /26 network. Systematically banning a range of 256 IPs an...
- 2003-05-17 12:12
- Forum: Hubs and scripts
- Topic: LINE SCRIPT TO DETECT A SINGULAR FILE
- Replies: 10
- Views: 4940
- 2003-05-14 13:12
- Forum: Protocol Alley
- Topic: Distributed DC network
- Replies: 72
- Views: 39223
That's fine. None of it has to leak to clients, so it doesn't even have to be standardized. (...) Explain more? No, it doesn't need to be standardized. Wether you pick a master/slave setup or a masterless setup, you will need some plumbling data to flow inside the distributed structure anyway. The ...