|
joeman // User Search
joeman // User Search
Aug 20, 2002, 12:22am
Yes, but due to the fact that your using VB, and console messaging only the
people near the bot is out of your grasp.
-Joe
[View Quote]".duo." <ncommons at juno.com> wrote in message
news:3d619e5c$1 at server1.Activeworlds.com...
> Console messages are better for phonebots
> "joeman" <joeman at bootdown.com> wrote in message
> news:3d617b42$1 at server1.Activeworlds.com...
>
>
|
Oct 6, 2002, 1:48pm
Nope.
-Joe
[View Quote]"john" <johnfricker at lineone.net> wrote in message
news:3da04925 at server1.Activeworlds.com...
> Can anyone here decompile EXEs (vb) to their original source? I need help.
I
> made a maths game a while ago and now I dont have code.
>
>
>
|
Oct 20, 2002, 10:35pm
Import strike, not inport....
-Joe
[View Quote]"strike rapier" <strike at rapiercom.freeserve.co.uk> wrote in message
news:3db30120 at server1.Activeworlds.com...
> http://members.tripod.co.uk/mralpha/pictures/datastar.jpg
> -mark
> "agent1" <webmaster at shatteredplattersDOTcom> wrote in message
news:3db2d42b at server1.Activeworlds.com...
site works just fine.
Active Worlds SDK (C++ only at first) including the DLLs, Databases, Reason
Codes, Documentation in some sort of way like the MSDN does?
>
>
|
Oct 30, 2002, 11:40pm
HTML = bad, damnit! Never, ever, ever post in HTML. For the love of god,
dont post in HTML!
-Joe
[View Quote]"god zedle" <greg at greggage.com> wrote in message
news:3dc08a39$1 at server1.Activeworlds.com...
Hello, I am starting a large scale RPG project that will take advantage of
every feature in AW there currently is. If you are an EXPERIENCED C/C++
programmer, please telegram me.
|
I will test you for the project, then we will see what we can do about a
world. Then the fun begins.. from scratch, we will make the best RPG bot
ever seen on AW.
Please do not join if you plan to quit.
PS- check out the november newsletter coming soon to see my bot of the month
article!
--
God Zedle (#306364)
--Programmer--
Nov 5, 2002, 3:14pm
It needs to say something, unless you want to enable "view all avatars" or
whatever in 3.4. Have it whisper a welcome message or say something at
random intervals. Other than that, nothing can be done :).
-Joe
[View Quote]"chazrad" <petrossadeletethis at msn.com> wrote in message
news:Xns92BD66B2D8AB3petrossa at 64.94.241.201...
> does anyone has a solution for:
>
> if you enter a global bot, as a gatekeeper, how do you make it visible in
> the whisperlist of tourists and non-cits without letting it say something?
> AFAIK sending a consolemessage doesn't make bot visible, only a normal
> aw_say. Or do i do something wrong?
>
> Chazrad
|
Nov 22, 2002, 8:10pm
The SDK sends an event mask to the world server when connected, the world
server in turn only sends the events that the mask specifies.
-Joe
[View Quote]"grimble" <grimble2000NOSPAM at btinternet.com> wrote in message
news:3dde7f70$1 at server1.Activeworlds.com...
> Another quickie ... probably to a bot developer with a world server.
>
> Can anyone tell me where the filtering of events is made - i.e. does the
> world server only send those events explicitly subscribed to or do all
> events get received by the SDK and filtered accordingly depending on
whether
> the event has been subscribed to?
>
> Essentially, what I need to know is whether subscribing to all events
> actually impacts the amount of information transmitted across the net to
the
> instance of the SDK.
>
> Thanks,
>
> Grims.
>
>
|
Nov 23, 2002, 3:45pm
When you set events, the mask is generated, and when you connect to the
world server, the mask is sent... That's why if one tries to set events
during an open connection to the world server, they will not trigger.
-Joe
[View Quote]"strike rapier" <strike at rapiercom.freeserve.co.uk> wrote in message
news:3ddf6398 at server1.Activeworlds.com...
> Maybe I could just throw in a question here? Does this mask get sent to
the server every time you use AW_EVENT_SET or AW_EVENT_UNSER, or when
connecting to the world?
>
> - Mark
> "joeman" <joeman at bootdown.com> wrote in message
news:3ddeab5d$1 at server1.Activeworlds.com...
world
the
to
>
>
|
Nov 23, 2002, 11:22pm
Nah :). You're forgetting that you cant change events on the fly. When you
set an event, it doesn't matter if you change it to another handler, its
still set. Also, if you set it to NULL, the sdk will still get it, but not
pass the data on to anything else. So, lets say you have 3 events set, then
if one event triggers, it sets 2 other new events. 3 events are set when it
connects, correct? Wrong, all five are sent in the mask.
-Joe
[View Quote]"grimble" <grimble2000NOSPAM at btinternet.com> wrote in message
news:3de001dc$1 at server1.Activeworlds.com...
> Can you define "an open connection to the world server" for me please??
Does
> this mean on aw_enter() because I have no problems setting up and
receiving
> new events while "in" a world (with SDK build 27).
>
> Grims
>
> "joeman" <joeman at bootdown.com> wrote in message
> news:3ddfbed2$1 at server1.Activeworlds.com...
to
server.
does
> all
on
> events
> net
>
>
|
Nov 24, 2002, 10:45pm
Nah, you're forgetting that the program can look ahead into itself, and
check what events are set, whenever. The SDK would send a mask for all five
of the events.
-Joe
[View Quote]"grimble" <grimble2000NOSPAM at btinternet.com> wrote in message
news:3de1658f$1 at server1.Activeworlds.com...
> I still don't understand you're concept of an "open connection". If I have
> the following, everything works perfectly logically ...
>
> aw_create
> aw_event_set(<event 1>, <handler1>)
> aw_event_set(<event 2>, <handler2>)
> aw_event_set(<event 3>, <handler3>)
> aw_login
> aw_enter
> .
> .
> (some time later)
> aw_event_set(<event 4>, <handler4>)
> aw_event_set(<event 5>, <handler5>)
>
> Events 4 and 5 will fire after the appropriate aw_event_set. If a
persisted
> connection to the world server is established on aw_enter, then by your
> reckoning (one mask only, sent at connection time) events 4 and 5 should
not
> be received by the client application, whereas in fact they are. Events 4
&
> 5 are "not set" as far as the SDK is concerned until some point later in
the
> app after entering the world ... OR are you saying that a short-term
session
> is established and terminated with each aw_wait call (and the mask is
> transmitted each time in a kind of "give me these this time" fashion)??
>
> *a tad confused now* ;O)
>
> Grims
>
>
> "joeman" <joeman at bootdown.com> wrote in message
> news:3de029f2$1 at server1.Activeworlds.com...
> you
> not
> then
when
> it
>
>
>
|
Nov 25, 2002, 12:02am
Isn't it time to take your medication now? Remember to take all five of
them.
-Joe
[View Quote]"milesteg" <MilesTeg at nerim.net> wrote in message
news:3de17450$1 at server1.Activeworlds.com...
> AHAHAHAHAHAHAHHAHAHAHAHA
> i love that one :)))))))))
>
> MilesTeg
>
>
> "joeman" <joeman at bootdown.com> a écrit dans le message de news:
> 3de172ac$1 at server1.Activeworlds.com...
> five
> have
your
should
Events
> 4
in
fashion)??
> When
> its
> but
> set,
>
>
|
Nov 25, 2002, 12:09am
Gah, I feel silly now. Just looked through the protocol documentation.
Setting an event mask is its own packet. I saw somewhere, where it was sent
with the login packet, but, I was wrong. Its sent right after the login
packet, along with a state change packet. The browser only sends one mask
setting packet (0x018f), to receive all events, so that's all I've delt
with.
-Joe
*hides in cave*
[View Quote]"grimble" <grimble2000NOSPAM at btinternet.com> wrote in message
news:3de1658f$1 at server1.Activeworlds.com...
> I still don't understand you're concept of an "open connection". If I have
> the following, everything works perfectly logically ...
>
> aw_create
> aw_event_set(<event 1>, <handler1>)
> aw_event_set(<event 2>, <handler2>)
> aw_event_set(<event 3>, <handler3>)
> aw_login
> aw_enter
> .
> .
> (some time later)
> aw_event_set(<event 4>, <handler4>)
> aw_event_set(<event 5>, <handler5>)
>
> Events 4 and 5 will fire after the appropriate aw_event_set. If a
persisted
> connection to the world server is established on aw_enter, then by your
> reckoning (one mask only, sent at connection time) events 4 and 5 should
not
> be received by the client application, whereas in fact they are. Events 4
&
> 5 are "not set" as far as the SDK is concerned until some point later in
the
> app after entering the world ... OR are you saying that a short-term
session
> is established and terminated with each aw_wait call (and the mask is
> transmitted each time in a kind of "give me these this time" fashion)??
>
> *a tad confused now* ;O)
>
> Grims
>
>
> "joeman" <joeman at bootdown.com> wrote in message
> news:3de029f2$1 at server1.Activeworlds.com...
> you
> not
> then
when
> it
>
>
>
|
Jan 17, 2003, 12:44am
I think Jacobs had a bit too much to drink.
-Joe
[View Quote]"bowen" <thisguyrules at 7k2.4mg.com.ANTISPAM> wrote in message
news:3e274d30 at server1.Activeworlds.com...
>
> "strike rapier" <strike at rapiercom.freeserve.co.uk> wrote in message
> news:3e2749bc at server1.Activeworlds.com...
>
> Did that make sense to you at all? It didn't to me, it reminded me of
someone in the
> mental hospital though.
>
> --Bowen--
>
>
|
Jan 17, 2003, 12:45am
Calm down, take a few deep breaths, and say whatever you tried to say
again... But this time in proper english, well, at least readable english...
-Joe
[View Quote]"jacob the hero" <jacob2000caca at yahoo.ca> wrote in message
news:3e2745fd$1 at server1.Activeworlds.com...
> it Must be hack you! You can't Open C++, But You Not Making File of
Program!
> You Know Why? Aw 3.4 Build 453 Just Came out! You Gonna see this! I Be
> watching You! *evil laugh* lol
>
>
> Jacob The hero
>
> <equin0x> wrote in message news:3e1e8b10 at server1.Activeworlds.com...
people
>
>
|
Feb 8, 2003, 8:23pm
.... Im tempted to call you a dolt... But that would be too good for you.
-Joe
[View Quote]"scuz" <webmaster at awscape.com> wrote in message
news:3e457fc5 at server1.Activeworlds.com...
> PLEASE PEOPLE!!! DONT GO OFF THE SUBJECT!!!
>
>
|
Mar 7, 2003, 9:23pm
Hacker, haha, how could he hack AW, ahaha.
-Joe
[View Quote]"yami trunks" <Chris101d at attbi.com> wrote in message
news:3e692784 at server1.Activeworlds.com...
> http://www.petitiononline.com/ejectTW/petition.html
>
> Please many have been wronged by this theiving hacker, go here and sign
it!
> Please Suport our cause in getting rid of this monster.!
>
>
|
Jul 25, 2003, 10:35am
Really pimping your hosting, its on there twice ;D.
-Joe
[View Quote]"builderz" <builderz at vastnexus.com> wrote in message
news:3F203682.C9CA525C at vastnexus.com...
> Here are a few more:
>
> XelaG Bots
> http://www.imatowns.com/xelagot
>
> AW News
> http://www.awnews.org/html/
>
> 3D Host
> http://www.3dhost.net/
>
> Magsbot
> http://www.turtleflight.com/magine/mb.html
>
> Builderz
> http://www.3dhost.net
|
Jul 25, 2003, 2:21pm
Ah, well, you formatted the list just like your signature ;).
-Joe
[View Quote]"builderz" <builderz at vastnexus.com> wrote in message
news:3F213F94.D8578285 at vastnexus.com...
> If you'll read my other posts, you'll notice that my signature always
> has my hosting URL on it. I just didn't take it out of my signature for
> that post and it was listed twice. :)
>
> Builderz
> http://www.3dhost.net
>
> joeman wrote:
|
Aug 1, 2003, 5:14pm
There's six bytes of overhead in a aw_whisper message. So, considering \n
is two bytes, we can say that 4 bytes * number of lines that are being sent
is saved ;). But, we also have the limitation of maximum message size and
all that to take into account too :O.
-Joe
[View Quote]"baron sweetman" <petrossadeletethis at msn.com> wrote in message
news:Xns93CA5E538E29Apetrossa at 64.94.241.201...
> "swe" <swe at swe-e.com> wrote in news:3f2971dc at server1.Activeworlds.com:
>
>
> methinks it wastes almost the same bandwidth of you send 1 long message or
> several short ones.
|
Aug 16, 2003, 8:39pm
Your bot seems to be written in some lame programming language that isn't a
programming language at all. Perhaps you should, write it in a real one?
-Joe
[View Quote]".duo." <ncommons at comcast.net> wrote in message
news:3f3e9164$1 at server1.Activeworlds.com...
> sdk.QuickStartGlobal = True
> sdk.aw_init AW_BUILD
> Dim rc As Long
> rc = sdk.QuickStart(342836, "PASSWORD REMOVED (-:", "Duobot", "Duobot",
> "jediwrld", 0, 0, 0, 0, 0)
> If rc Then MsgBox rc
> peoplepos = 0
>
> help, lol
>
> BTW, thanks for sdkocx6 richard
>
>
|
Aug 17, 2003, 1:21am
I don't see many openings for "Ultra-l33t VB pr0ramma for t0p seakrit
project!", the openings I see are "Talented C/C++ programmer needed for high
paying position.".
-Joe
[View Quote]"baron" <pk39srt at hot[youknowwhat].com> wrote in message
news:MPG.19a8e3bf5936a0c398968a at news.activeworlds.com...
> In article <3f3eb62a at server1.Activeworlds.com>,
strike at Rapiercom.freeserve.co.uk says...
the
is
isn't
one?
>
> Don't blame the weapon, blame the murderer. VB is a great tool for
devoloping countless
> solutions, not to mention that it can keep many young fellows with a null
CV and zero
> understanding of the job market out of the unemployment line. Keep your
eyes on the ball.
>
> ./B
|
Aug 17, 2003, 4:38am
Ok, so... I know every windows version (save windows 1.0), unix, Linux,
Solaris, OS X.... I know VB, and C/C++, enough assembly to get me through
some tight spots, PHP, XBox API... and a lot more... So, now what do I
learn? It seems I've already met and exceeded your "quota" to diss on VB.
Also, I've read plenty of job listings.
So, I say I'm fully qualified to say that VB is a horrible programming
language. Not only do you need runtime DLLs to run the most basic code, but
its really not programming at all, only scripting. You can do a lot more
with C, its more portable, and it also does require 9 million runtime dlls
that bloat up your system.
Sure, it might be *easy*, but sometimes the easy way, isn't the best way to
do things. Compare a basic C application with a VB one, both do the exact
same thing. You'll find that VB wastes like, 400 - 900KB on god knows what.
I will admit, I've used VB for a few simple programs when I don't want to
mess with Winsock and windows in C, but all of those programs sucked. All I
can say is: been there, done that, hated it.
Seriously... learn C for Christ's sake.
-Joe
[View Quote]"baron" <pk39srt at hot[youknowwhat].com> wrote in message
news:MPG.19a9442ae1e8bd5e98968b at news.activeworlds.com...
> In article <3f3ef4ce$1 at server1.Activeworlds.com>, joeman at bootdown.com
says...
high
>
> Then you are probably looking in the wrong places assuming that you even
bothered looking
> in the first place, of course the syntax is slightly different for job
openings than the
> one you used :)
>
> My point is, learn all you can and don't underestimate corporate standards
like VB out of
> superiority syndrome or whatever other mystical reasons. Things are hard
and they are
> going to get harder; no one likes one trick ponies. If you know C++, learn
VB and Delphi;
> if you know windows, learn unix. Btw from my experience, the "for high
paying position"
> part is wishful thinking for any programmer with a null or less than two
pages CV who
> knows only one language (even if that is assembly).
>
> ./B
|
Aug 17, 2003, 6:34pm
I learned programming with a tin can, $.35, and one of those adapters that
allows you to plug in larger old skewl headphones into the smaller more
conventional plug... I had to consume the $.35, then attempt to put the can
on my head while singing "I want to marry a light house keeper", and
stabbing at random things in the dark. I might have been drunk, I cant
remember.
-Joe
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3f3f95e0 at server1.Activeworlds.com...
> Let me give all of the newbs to programming a piece of advice from my own
> experience...
>
> Way yonder back, I wanted to be a programmer. I was shopping one day, and
> found a book in a bookshop called "Using Visual Basic" it was about £6.99
so
> I bought it...
>
> I took it home... fired up Visual Basic.. and then set to work! I wondered
> why most the stuff it told me to do didnt actually exist in my version of
> the VB IDE... and why I had to load it up though MS Word each time, It
didnt
> say anything about that in the book... oh dear... yep you guessed it, I
> thought VBA was full VB... what a prat I was...
>
> Anyway, VB went out the window for a few weeks... then, a friend gave me a
> VB package, the one above the training edition... and I realised... wow!
> Timer control, this must be the real deal! Indeed it was... I managed
> form.print "Hello World" and was amazed with myself and went running off
> bragging about how good I was at VB... sad sad me...
>
> I spent about 10 hours a day coding... lol, Managed to make 3 calculators
> erm... all using inputboxes and just had basic stuff... litterally, utter
> crap...
>
> You only learn how crap you are at something when your either humble...
> which lets face it no new programmer is... or you have a more experienced
> programmer take the piss... in my case it was the latter... and Robbie
> (Gamer at the time) absolutly slammed me when I couldent even impliment a
> simple function!
>
> I copied and pasted and thought I was soooo l33t not understanding the
first
> bloody thing about what the hell I was doing with all this code, error
after
> error.... It was about this time Baron was close to having a mental
> breakdown from me telegraming him every... 30 seconds or so... (no...
> literally) and at this time he gave me this really brilliant idea.... why
> not... get a book!? The idea seemed so enlightening at the time, so I went
> off down to PC world and I got a book called 'Visual Basic Step By Step'
> from the MS press....
>
> I spent the next 3 week or so doing NOTHING but learning things from that
> book, it actually explained what functions, subs etc are, what control
> attributes and GUIs are... I thought I was so good before but I knew
NOTHING
> that this book was teaching me...
>
> One thing I must stress to every new programmer, programming takes utter
> dedication, if you can not be bothered with it, turn back now...
>
> Anyway, I kept learning and learning, bots were the key to me learning VB,
I
> made everything with it, database bots, drawing bots, the works, being
> reassured by friends that I could make it and always having the fallback
of
> chuckling at the person who taught me almost everything else I know about
it
> (Baron) when he took out all of AWGZ with a PK bot on eject by accident...
>
> Now I know I was bad... but some people out there are worse... telegrams
> such as 'how do I put text in a text box'... a person can explain to you
how
> to put text in a text box... but thats all, but if you LEARN how about
> control attributes and properties, you will be able to handle everything!
> Background colours, fonts etc...
>
> But you have to keep commiting yourself to it.. never give up and seek
help
> from people when you need it, but don't be a idiot and try and get *all*
the
> solutions from other people, its what I tried doing with Baron.. it dosent
> work... you end up getting more and more confused....
>
> But keep at it, and remember you have to LEARN... get books, read
> websites... its all good...
>
> Eventually I got to the point (World Core 5) where VB could no longer
handle
> what I needed to do with it... and that was the end of VB for me... now
Ive
> started all over again (Although this time I promised myself I wouldent
> hassle anyone!)... And hey, look where its got me. Im lead programmer for
an
> AW distributor :)
>
> - Mark
>
>
|
Aug 17, 2003, 8:00pm
Uh, perhaps you should do a little more research... There *is* an SDK for
java, at least there was a version ago, I see no reason why it wouldn't be
updated.
-Joe
[View Quote]".duo." <ncommons at comcast.net> wrote in message
news:3f3f7166 at server1.Activeworlds.com...
> I know like 2 things in C. One of them is printf, and the other is scanf
> rofl.
> I would use C++ if I was good with the windows API in it (-:. I'm great
with
> swing in java, too bad there isn't an sdk for that...
> "joeman" <joeman at bootdown.com> wrote in message
> news:3f3f22de$1 at server1.Activeworlds.com...
through
VB.
> but
more
dlls
> to
exact
> what.
to
All
> I
seakrit
> for
even
> standards
hard
> learn
two
>
>
|
Aug 17, 2003, 8:01pm
Precompiled headers are the devils tools.
-Joe
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3f3f7a3a at server1.Activeworlds.com...
> StdAfx - precompiled header
>
> - Mark
>
> ".duo." <ncommons at comcast.net> wrote in message
> news:3f3f7806$1 at server1.Activeworlds.com...
>
>
|
Aug 19, 2003, 2:25am
I typed three words into yahoo and came up with this:
http://www.insead.edu/CALT/Project/AWJavaBots/
.... I'm mean because I'm 80 and live in a shack out in the woods alone. I
have no one out here by my cat patches. I eat grass and ramen, because
social security isn't so good.
-Joe
[View Quote]".duo." <ncommons at comcast.net> wrote in message
news:3f418426$1 at server1.Activeworlds.com...
> Then where is it? And why are you always so mean? >:-P
> "joeman" <john at fakeplastic.com> wrote in message
> news:3f3ffb04$1 at server1.Activeworlds.com...
for
be
scanf
great
> Linux,
I
on
programming
> code,
runtime
> way
knows
want
sucked.
> joeman at bootdown.com
> needed
you
> job
are
C++,
> high
than
>
>
|
Aug 18, 2003, 9:13pm
The "heartbeats" are only send after a full minute has elapsed since the
last message was sent to the server, timeout is two minutes, so if the
client misses two from the server, or visa-versa, and the socket is still
open, the connection is dropped. All of the SDKs protocol handling and
whatnot is called whenever any function is called, or aw_wait is called. By
putting aw_wait in a loop, eg:
while (aw_wait(-1))
;
You update everything correctly, events are called -on time-, etc. If you
wait 16 to 32 seconds before calling another aw_wait, and don't call any
other functions in the meantime, all events are ~16 to 32 seconds old by the
time you get them... Not a good coding practice. But, in order for a
heartbeat to be sent after the 60 seconds, you'll need to call an aw_wait;
so just put it in a never-ending loop at get it done with.
-Joe
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3f414aa5 at server1.Activeworlds.com...
> I used to notice how if you had a 1 time per second heartbeat, you could
get
> quite a few dissconections... especially on 56k...
>
> But now I use 16 / 32 a second so... hehe
>
> - Mark
>
> "baron" <pk39srt at hot[youknowwhat].com> wrote in message
> news:MPG.19ab5784e5050a39896c1 at news.activeworlds.com...
> world
> problem,
> another
times
> per
in
> the
like
>
>
|
Aug 18, 2003, 10:20pm
No, I didn't, because they really don't have anything to do with eachother.
Aw_wait is just a convient way of moving and processing traffic. The
heartbeat *will* be sent by Aw_wait if a minute has elapsed... But, that's
it...
-Joe
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3f415eb6 at server1.Activeworlds.com...
> Meh, aw_wait not specific heartbeats.. you know what I mean...
>
> - Mark
>
> "joeman" <john at fakeplastic.com> wrote in message
> news:3f415da2$1 at server1.Activeworlds.com...
still
> By
you
> the
aw_wait;
>
>
|
Aug 19, 2003, 4:43pm
.... Ok, you just admitted to running a pirated uniserver in a newsgroup!
You get the award for stupidest thing EVER today... that, and a gold star.
-Joe
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3f425c31 at server1.Activeworlds.com...
> I ran a 3.1 uni on localhost.. and I think ive had that session before..
:S
>
> - Mark
>
> "xelag" <xelag at digitalspace.com> wrote in message
> news:jbe4kvg1ivqcgv0uit7ej1rfu8ao0ud7e9 at 4ax.com...
>
>
|
Aug 19, 2003, 5:43pm
Well then, I object to the p-20 world. You don't need any land in a world
to test a bot, really. Also, chances are, you got the version of the 3.1
server that wasn't properly "cracked", and is riddled with virii and Trojans
as far as the eye can see. I also wouldn't be surprised if one out 20
people had this nasty piece of software that's been passed around more then
nobody's business. There are other "brilliant" and *legal* ways to develop
bots, such as logging into a uniserver and testing your code. Mine, well,
lets see there, this is a goose of a different color my friend.
-Joe
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3f42794a$1 at server1.Activeworlds.com...
> Egh yuo havent seen much else... I seriously don't think anyones going to
> object to using a redunct uni with no external access, and 1 P-20 world
for
> the sole purpose of testing bots Joe... Infact... I do believe that its a
> brilliant way to develop bots when your on something like 56Kb modems... I
> wouldent be suprised if a significant majority of people in this NG had
them
> to test also... and im not even gonna get started on yours
>
> - Mark
>
> "joeman" <john at fakeplastic.com> wrote in message
> news:3f426fb8 at server1.Activeworlds.com...
star.
>
>
|
Aug 19, 2003, 5:48pm
Yes little Timmy, its what evil hackers like Strike Rapier use to pirate the
uniserver software. Don't do *crack*, and stay in school!
-Joe ;)
[View Quote]"s t e f a n" <ssss at sss.cmg> wrote in message
news:3f427e53 at server1.Activeworlds.com...
> there is a cracked uniserver ?
>
>
|
|