Search found 209 matches

by ButterflySoul
2003-01-25 14:54
Forum: Other Direct Connect tools
Topic: Ragnarok - Take Back Your Hub!
Replies: 11
Views: 7389

Then again, it is perfectly possible to bump into a user who has DC++ and whom you can't download the file list from. However, it is only possible if said user has a slot blocker =) So since your script is basically checking for cheaters, that's not really a problem, is it ? =p (assuming Ragnarok do...
by ButterflySoul
2003-01-25 10:56
Forum: Hubs and scripts
Topic: Two bots in same Hub
Replies: 12
Views: 6017

*adopted AEdiX because it's really neat* =) Just in case I wasn't the only one not to know about it, this is the config file AEdiXmain.amf , modified to support the same size of tabulation as the NMDC script editor, recognize and highlight the .script files in VBS/asp, and get rid of the damn grey b...
by ButterflySoul
2003-01-25 06:45
Forum: Hubs and scripts
Topic: i'm furious
Replies: 3
Views: 3018

The whole "no-ip" service experienced a short (well, still about an hour long) outage around midnight PST today (i.e. about 3 hours ago). That means all address in the form no-ip.com, no-ip.org, etc etc were temproraly impossible to solve into an IP address. This caused over half the hubs on DC to r...
by ButterflySoul
2003-01-24 17:40
Forum: Hubs and scripts
Topic: Two bots in same Hub
Replies: 12
Views: 6017

Well, it's not that I'm that found of the blue editor in the NMDC hub, I have just been using it so far because I never found a good editor that would highlight the syntax and all =/ (The editor in office does highlight, but not with .script files for a hub) Btw, if you know of an editor that does i...
by ButterflySoul
2003-01-24 17:16
Forum: Hubs and scripts
Topic: command for connections?
Replies: 14
Views: 6761

How about : Option Explicit 'Really, it DOES save resources =) Sub DataArival (curUser, sCurData) Dim strCon if Left(sCurData, 7) = "$MyINFO" then strCon = AfterFirst(sCurData, "$ALL") strCon = AfterFirst(strCon, "$") strCon = BeforeFirst(strCon, "$") strCon = Left(strCon, len(strCon)-1) 'removes th...
by ButterflySoul
2003-01-24 14:10
Forum: Hubs and scripts
Topic: Two bots in same Hub
Replies: 12
Views: 6017

Oh, ok.. That's the trick... *blush* My bad then, sorry
by ButterflySoul
2003-01-24 13:22
Forum: Hubs and scripts
Topic: Two bots in same Hub
Replies: 12
Views: 6017

The scripts for a DC Hub have a size limit (roughly 59k), and I accidently found out about it while writing Zeus. Any script larger than this will crash the hub when you try to edit it, and make crazy funny things when you try to run it (trust me, you don't want to try =). So yes, you can (and if yo...
by ButterflySoul
2003-01-24 12:55
Forum: Hubs and scripts
Topic: help me with button
Replies: 4
Views: 2724

Actually vbs has a few native commands that allow you to directly work with textfiles (aka textstream objects). So yes, it's possible to save a bunch of stuff and call them back.. not only the hub's startup but also during runtime =) That's actually what Zeus does for the mentor file, the username-b...
by ButterflySoul
2003-01-24 12:33
Forum: Hubs and scripts
Topic: command for connections?
Replies: 14
Views: 6761

There's probably 2 problems here... The first is obvious : you don't define strMyInfo You'd need 2 extra lines: Dim strMyInfo strMyInfo = curUser.sMyInfoString Or drop the strMyInfo variable and go directly with strCon = AfterFirst(curUser.sMyInfoString, "$ALL") ----- The second problem is you appar...