agent1 // User Search

agent1 // User Search

1  ...  3  4  5  6  7  8  ...  31  |  

where can i find it?

Aug 13, 2001, 1:03pm
C++ is a language :)

I'd take a look at these if you're looking for a compiler/linker, though:
http://msdn.microsoft.com/visualc/
http://www.bloodshed.net/devcpp.html


-Agent1


[View Quote]

cell_iterator

Aug 16, 2001, 11:47am
http://www.activeworlds.com/sdk/AW_CELL_ITERATOR.htm


-Agent1


[View Quote]

C++, Visual Basic,Delphi for free

Aug 22, 2001, 8:29pm
If you don't care what people think, why advertise that fact?

-Agent1

[View Quote]

Public Speaker rights in Bots

Aug 23, 2001, 3:53pm
No.

-Agent1

[View Quote]

Public Speaker rights in Bots

Aug 23, 2001, 6:19pm
Logging telegrams *can* be enabled, but I don't think it is in the main universe. Even if it is, you are sending information through their servers... of course they're going to be able to read it. You have no reasonable expectation of privacy when it comes to AWC. It is not "illegal" in any way.

-Agent1

[View Quote]

Need somthin...

Aug 28, 2001, 1:16pm
Could look at http://www.botbarn.net/bot1.html

-Agent1

[View Quote]

Sample C++ Bot

Oct 2, 2001, 11:43am
If you want to access the contents of BotBarn.net, you'll need to use the URL http://hairsquare.virtualave.net/. My domain expired... I'm wondering whether to renew it. In the mean time, some images may not work.


-Agent1

[View Quote]

Sample C++ Bot

Oct 3, 2001, 9:59pm
What sorts of problems?

-Agent1

[View Quote]

Sample C++ Bot

Oct 4, 2001, 11:23am
Hmm... Are you installing the event handler properly? Can we see the code you're using for the chat handler?

-Agent1

[View Quote]

Custom Bots

Oct 2, 2001, 7:55pm
Ever have a really good idea for a bot and not be able to implement it because you weren't a programmer? Need something done in your world but don't know how? Send me an email describing your idea, and I'll see what we can work out. I will charge for the bots, but the price will be determined on a case-by-case basis depending on complexity.


-Agent1

removing cits when leaving area

Oct 23, 2001, 7:13pm
I'm not sure about VB, but maybe citnum.text isn't a constant, so it can't be put into a constant value. I'm not sure.

-Agent1

[View Quote]

What reason codes where...

Oct 28, 2001, 11:31am
What might the point of that be? It's not like RC_ENCROACHES would be returned from aw_login.

-Agent1

[View Quote]

Bot Ideas

Nov 16, 2001, 11:55am
Why would you need his permission? He didn't invent Paintball, so what's the problem?

-Agent1

[View Quote]

well...

Dec 1, 2001, 1:57pm
Hmm... try slowing down when you type a post. Check it over for mistakes before sending it and it'll be easier to read :)

Oh, and one more thing: it's "compiler" :)

-Agent1

[View Quote]

Please just give me a list and tell me if it'll be a definate or you'll need another program.

Dec 1, 2001, 10:07pm
If C/C++ or VB are too hard for you, what are you doing with the SDK? I would think that any other programming language would be just as "hard", they just might have different ways of expressing the same thing. Look on the Internet for information about a progamming language -- there are plenty of free, beginner-level tutorials for all of the main languages. Pick one and start learning.

-Agent1

[View Quote]

list

Dec 2, 2001, 1:45pm
Look at the replies to "2 questions". Someone already DID give you a list.

-Agent1

[View Quote]

didn't know

Dec 2, 2001, 7:08pm
Not to mention that all of his questions should have been posted to the SDK group... *sigh*

-Agent1

[View Quote]

didn't know

Dec 4, 2001, 8:17pm
[View Quote] uhh... I've never seen *any* evidence that Microsoft includes anything in their EXEs other than your code. I'm sure more people would be saying this if it were true. The only time VC++ will add a window to your code is if you ask it, or if it is the Introductory edition. If it's the Introductory one, it's part of the EULA that you can't distribute the EXEs you create.

> It's not legal, so much as microsoft has ever done that's legal.. just finding the loop-holes so they don't look bad.

Even if it was true, how is it illegal? If you dislike Microsoft so much, why the "X-Newsreader: Microsoft Outlook Express 5.50.4133.2400"?


> I would recommend you look at a site but it's domain name isn't PG so I can't post it here. I can give you one that points to it that's not R in language, but it's still > on the site.. it has some pretty informative stuff about microsoft.

Please email me the URL of this site... I won't be offended :)

> I hope that was good enough?

Well, not yet since you really didn't give us any evidence.


> I'm tired of pointing out Microsoft's blunders and faults and all the other crud that they've done wrong.

Then don't. If you have a problem with Microsoft, stop using their products. I don't care what anyone says, no one forced you to buy any Microsoft operating system or other software.


-Agent1

LogBot v2.23 FINAL

Dec 23, 2001, 12:46pm
LOL :) Time difference between posts is only like 11 hours... that was fast ;)

-Agent1

[View Quote]

mIRC bot !

Feb 14, 2002, 5:53pm
AW doesn't publish their protocol, so you'd have to use the SDK. I'm pretty
sure what you're doing would be *very* difficult to accomplish.

On the other hand, making something to log a bot into AW and something into
an IRC server would be much easier.

-Agent1

[View Quote]

aPhoneBot

Feb 18, 2002, 4:07pm
Sounds more like user error :)

-Agent1

[View Quote]

Paintball bot

Jul 13, 2002, 8:50pm
Don't reply to posts that are 18 months old. If the person really needed a bot they would have found it by now.

-Agent1

[View Quote]

Paintball bot

Jul 14, 2002, 11:36am
ahh... I missed a subtle clue when I decided you replied to something that old. Nevermind ::rolls eyes at Outlook Express::

-Agent1

[View Quote]

Is there a wait command?

Jul 15, 2002, 12:45pm
I wouldn't use aw_wait as a timer because it was never designed for that purpose.

You would probably be better off doing something like this (pseudocode):

int StartTime, CurrentTime;
StartTime = time(NULL);

while((CurrentTime - StartTime) < MILLISECONDS)
{
CurrentTime = time(NULL)
aw_wait(0);
}

-Agent1

[View Quote]

Is there a wait command?

Jul 16, 2002, 12:17pm
Actually, I've been informed that my code is a bad idea ;)

You could always have the bot start a Windows Timer and wait for that to be triggered before continuing...

-Agent1

[View Quote]

new bot (yay)

Jul 22, 2002, 8:09pm
::rolleyes:: Try to work on that reading comprehension...

"a build may become available that will let you change this color"

-Agent1

[View Quote]

new bot (yay)

Jul 23, 2002, 1:31pm
If you feel the need to reply to a message, at least read the whole thing.

-Agent1

[View Quote]

Backup bot wanted

Aug 10, 2002, 2:36pm
I've heard that the compressed (gzip) propdump for Alphaworld is around 9GB. Big ;)

-Agent1

[View Quote]

I need help getting my preston to do something awesome I saw in aw.

Aug 17, 2002, 1:12pm
Break the problem into steps.

1. Find the location of the avatar that told you to create the orb.
2. Do some math to find the absolute coordinates to where you want to add
the orb.
3. Call aw_object_add().
4. When the avatar moves, delete the old orb and create a new one.


-Agent1

[View Quote]

[release] Demeter 1.18

Jan 11, 2003, 1:02pm
All I can say to that ridiculous statement is: prove it. In any case, just because it is a Microsoft product doesn't mean it is immune to firewalls. Its communications must pass through the same place as every other application.

-Agent1

[View Quote]

1  ...  3  4  5  6  7  8  ...  31  |  
Awportals.com is a privately held community resource website dedicated to Active Worlds.
Copyright (c) Mark Randall 2006 - 2024. All Rights Reserved.
Awportals.com   ·   ProLibraries Live   ·   Twitter   ·   LinkedIn