trekkerx // User Search

trekkerx // User Search

1  2  3  4  5  6  ...  12  |  

Detecting a Object Click, and Verafying it.

May 17, 2001, 9:41pm
So is there anygood way to do it without having to find out the Object
number?

[View Quote] > Anwser: well the sdk_object_click event does not give the AwObjectAction
> back, it only gives AW_AVATAR_SESSION
> AW_AVATAR_NAME
> AW_CELL_X
> AW_CELL_Z
> AW_OBJECT_NUMBER
>
> so u would have to search through a list of objects u queried for that
> object(by object number) and then use that to get the action.

make up your mind!

May 20, 2001, 10:28pm
kahnews.cjb.net dosnt work

[View Quote] > KAH,
>
> I think they meant that they wanted new newsgroups in news://news.activeworld.com & not some other server. No offense to you though, it was a nice gesture. But I think they just wanted AWCI to do something.

make up your mind!

May 22, 2001, 7:55pm
Ohhh dont cry

[View Quote] > You have a 56k I assume? Most 56k users don't host things.
>
[View Quote]

make up your mind!

May 23, 2001, 9:10pm
Thats like getting me to act smart, lol....

[View Quote] > Will you shut up already?
>
> How is your VB coming? Good since I did most of it for you I hope.
>
[View Quote]

make up your mind!

May 24, 2001, 11:25pm
I had ya fooled for a while huh?

[View Quote] > Yea, we all know it's acting.
>
[View Quote]

VB: Getting someones Co-ords...

May 28, 2001, 4:51pm
That just gets the person that last moved. Try to make a libary, and then when
a person enters, add there session number to it, and cords. then when it
changes, have it look up the session of the avatar that moved, and have it
edit that session. Then you got a libary of accurate locations. then if you
need the cords of a certan session later, you can look it up

[View Quote] > Private Sub sdk_EventAvatarChange()
> AvName = sdk.AwAvatarName
> AvX = sdk.AwAvatarX
> AvY = sdk.AwAvatarY
> AvZ = sdk.AwAvatarZ
> End Sub
>
> Works for me at least.
>
[View Quote]

VB: Getting someones Co-ords...

May 29, 2001, 7:36pm
Then make it delete the Avatar session from the libary. Thought you where smart
enoughf to figure something like that out. And only and idot would have it
record the data onto a text, or a Ini file.

[View Quote] > Ok, if I get what your saying, it is just like I said, only under
> sdk_EventAvatarAdd Sub too.
>
> Also, if someone leaves, their session is still in the library, then you
> have coords to an avatar that isn't there, what is the main purpose for this
> anyway? All you need to do is record everything in a (dreaded) database or
> the (stupid) registry or in a .txt or .ini file and the call it from there.
>
[View Quote]

VB: Getting someones Co-ords...

May 29, 2001, 7:37pm
What im talking about will updade every time someone moves

[View Quote] > The purpous of the bot is that it keeps a list of all the people in range of
> the bot and they're current co-ords...it must update like every second or
> somthing i want very exact co-ords...
>
> How do I go about creating session tables and libraries? I dont know how and
> if I am to progress in programming i think i need to learn about it...
>
> -Gamer

BOTS

May 27, 2001, 6:47pm
What kinda Bots?

[View Quote] > AmigosVR Worlds is looking for people who know sdk and makes bots. If you
> want to join the AmigosVR group, please contact us by replying at this post
> or sending a Tgram to StarCube.VR at aw
>
> StarCube.VR
> www.amigosvr.com
> starcube at net-uno.net

Using a MDI Child in a bot

May 29, 2001, 9:23pm
I thought of using a MDI CHild, in a bot, so you could like have 50 bots
running at once. And I got it kinda to work. But when I log into a
world, the bot, cant Here, say, or do anything. It dosnt even know there
are people there. It can still get the world attrabutes, and stuff like
that. But it cant here anything. Ive tryed moving the sdk, and timers
around. Like I would have the SDK, in the Main form, then the MDI form,
and nothing seems to work. Can anyone help me?

A nice simple INI Module!!!

Jul 9, 2001, 1:57am
--------------A5656D2318770E09C0169028
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Okay here is the code for VB


------------------------------------------------------------------------

Public Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationname As String, ByVal lpKeyName As Any, ByVal lsString As Any,
ByVal lplFilename As String) As Long
Public Declare Function GetPrivateProfileInt Lib "kernel32" Alias "GetPriviteProfileIntA" (ByVal lpApplicationname As String, ByVal lpKeyName As String, ByVal nDefault As Long, ByVal
lpFileName As String) As Long
Public Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationname As String, ByVal lpKeyName As String, ByVal lpDefault As
String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long

------------------------------------------------------------------------

now here is an example
------------------------------------------------------------------------

Dim lpAppName As String, lpFileName As String, lpKeyName As String, lpString As String, lppwname As String, lpPPW As String

'to write to a file
lpAppName = "Settings"
lpKeyName = "Windows"
lpString = "Test"
lpFileName = app.path & "\settings.ini"
ret = WritePrivateProfileString(lpAppName, lpKeyName, lpString, lpFileName)

'Now to load a setting
lpAppName = "Settings"
lpKeyName = "Windows"
lpFileName = app.path & "\settings.ini"
ret = GetPrivateProfileString(lpAppName, lpKeyName, "", Temp, Len(Temp), lpFileName)
If ret = 0 Then
text1.Text = ""
Else
text1.Text = Temp
End If
------------------------------------------------------------------------

that would make it look like this in text format
[Settings]
Windows=test

Get It? Very simple, I looked for it a long time, and when i found it it And figured it out it was simple

[View Quote] > Does that mean that stupid Micro$lop opens the ini file for EACH parameter access?? Yuck!!! At least in Borland you pass an open stream parameter to the retrieval/write function.
>
> Andras
>
[View Quote] --------------A5656D2318770E09C0169028
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Okay here is the code for VB
<br>&nbsp;
<p>
<hr WIDTH="100%">
<br>Public Declare Function WritePrivateProfileString Lib "kernel32" Alias
"WritePrivateProfileStringA" (ByVal lpApplicationname As String, ByVal
lpKeyName As Any, ByVal lsString As Any, ByVal lplFilename As String) As
Long
<br>Public Declare Function GetPrivateProfileInt Lib "kernel32" Alias "GetPriviteProfileIntA"
(ByVal lpApplicationname As String, ByVal lpKeyName As String, ByVal nDefault
As Long, ByVal lpFileName As String) As Long
<br>Public Declare Function GetPrivateProfileString Lib "kernel32" Alias
"GetPrivateProfileStringA" (ByVal lpApplicationname As String, ByVal lpKeyName
As String, ByVal lpDefault As String, ByVal lpReturnedString As String,
ByVal nSize As Long, ByVal lpFileName As String) As Long
<p>
<hr WIDTH="100%">
<p>now here is an example
<br>
<hr WIDTH="100%">
<br>Dim lpAppName As String, lpFileName As String, lpKeyName As String,
lpString As String, lppwname&nbsp; As String, lpPPW As String
<p>'to write to a file
<br>lpAppName = "Settings"
<br>lpKeyName = "Windows"
<br>lpString = "Test"
<br>lpFileName = app.path &amp; "\settings.ini"
<br>ret = WritePrivateProfileString(lpAppName, lpKeyName, lpString, lpFileName)
<p>'Now to load a setting
<br>lpAppName = "Settings"
<br>lpKeyName = "Windows"
<br>lpFileName = app.path &amp; "\settings.ini"
<br>ret = GetPrivateProfileString(lpAppName, lpKeyName, "", Temp, Len(Temp),
lpFileName)
<br>If ret = 0 Then
<br>&nbsp;text1.Text = ""
<br>Else
<br>&nbsp;&nbsp;&nbsp; text1.Text = Temp
<br>End If
<br>
<hr WIDTH="100%">
<br>that would make it look like this in text format
<br>[Settings]
<br>Windows=test
<p>Get It? Very simple, I looked for it a long time, and when i found it
it And figured it out it was simple
[View Quote] --------------A5656D2318770E09C0169028--

A nice simple INI Module!!!

Jul 9, 2001, 7:58pm
Ive notesed sometimes the Temp in reading the ini has to be dimed like this...
Dim Temp as String * 50

Also try and make a sub just to read and write the Ini, it makes it cleaner and
easer to deal with.

[View Quote] > please excuse typos...typed it in a rush...
>
[View Quote]

A nice simple INI Module!!!

Jul 20, 2001, 1:08am
lanezeri, you only need the ocx file. And... why use a ocx file, and not a
moduel?
A ocx file is bigger, then a moduel would do to add to your bot?

[View Quote] > The Reg sucks.. trust me.. use an INI file.. you can even use my INI file
> creator.. I'd put it for download.. (my latest one) but I dont know which
> files you need..
>
> I have four.. I dont distribute my OCX's so that's why I dont know:
>
> .exp
> .lib
> .oca
> .ocx
>
[View Quote]

community

Jul 15, 2001, 3:21am
Dose any one have this problem?
When they start up ActiveWorlds, it goes to loggin in.. and then says
"Unabel to contact activeworlds..." and so on?

community

Jul 19, 2001, 1:50am
Yea, but it says loggin in.... then says cant login, and it works perfictaly
in othere universes, when I am logged in, and it works on other computers

[View Quote] > Yes, I get that some times.. For me, it usually means im not connected to
> the internet..
>
[View Quote]

community

Jul 31, 2001, 4:34pm
The browser i use to goto other universes is in a diffrent folder, and the universe
is correct to goto the Main server

[View Quote] > itsin the ini file under
> [universe]
> host=UNIVERSE_HOST
>
> aws is auth.activeworlds.com
> imnot sure about any others
[View Quote]

community

Aug 2, 2001, 4:31pm
Limme explain, when i was selecting what newsgroups this subject was to go to,
it was SDK, BOTS, and COMMUNITY, now, somehow I typed community in the subject
part, and it dident get sent to the community newsgroup. And the orignal subject
was 'Suppose' to be 'Problems with my browser'. Now dont go getting mad at me
because I must of pressed tab to early, or something

[View Quote] > They are not distributing it.. meaning it is against their will.. meaning it
> is illegal.. damn idiot..
>
[View Quote]

community

Aug 2, 2001, 4:31pm
(I dont think you would report him, im shure youve done plenty of illegal
things)

[View Quote] > You say I'm moody just because I won't send you InoculateIT PE Setup.. you
> shouldn't ask me illegal things.. I could report you.. your lucky I'm nice..
>
[View Quote]

C++

Jul 27, 2001, 1:29am
--------------297D4CEC09E6F98CE8D9CE83
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Try the msdn CDs you got with C++, or Visual Studios.

[View Quote] > can anyone give me website for tutorials or anything to teach C++ also
> any good compilers that will compile programs to work under windows 98
> or higher

--------------297D4CEC09E6F98CE8D9CE83
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<body bgcolor="#FFFFFF">
Try the msdn CDs you got with C++, or Visual Studios.
[View Quote] </body>
</html>

--------------297D4CEC09E6F98CE8D9CE83--

C++

Jul 31, 2001, 4:38pm
Get Netscape 6.0, or Microsoft Composer, (I think, i use netscape 4.0, im
to lazy to upgrade)

[View Quote] > um, a newsreader that doesnt even know how to deal with HTML or binary
> attachments is actually more secure than a newsreader that can. HTML
> code can automatically be run in HTML posts that could be damaging to
> your system. if this client only supported multiple servers i'd use it
> on Andras' newsgroups as well.
>
> i *do* have the better newsreader. do you?
>
> On 30 Jul 2001 15:35:04 -0400, "brandon" <brandon at my.activeworlds.com>
[View Quote]

WHo here dosnt liek Lanezeri?

Aug 2, 2001, 4:33pm
I dont like him!!!

Zeebot

Aug 2, 2001, 11:09pm
ZeeBot Version 1.0.0 Beta, is now available for download, on an Open
Beta Program.

At www.commatron.com/zeebot/index.html

If you encounter any errors, e-mail me at zac at commatron.com, and I will
try and fix them.


Thank you ~ TrekkerX

(e-mail from Lanerzi, will be ignored, and deleted)

Zeebot

Aug 4, 2001, 11:01pm
So ive learned, they deleted the commatron account, Im trying to get my friend
to host the server, but he cant do that until he gets his network up.

[View Quote] > geocities suxx for website specialy if your serving zip files from one
[View Quote]

Zeebot

Aug 27, 2001, 11:54pm
Yea, I have a free servers account, I might jus have to use that.


>

Zeebot

Aug 27, 2001, 11:56pm
huh? That makes no sence once so ever. I said I will icnore his e-mail.;
To me.
And I cant beleve that you themask would go over to the dark side
(stuff-x).

[View Quote] > correct that,not in the program..
> --
> TheMask
> Stuff-X - Bot & World Hosting Services
> http://aw.stuff-x.com/
> TheMask at stuff-x.com

Zeebot

Aug 28, 2001, 1:38am
Yea maybe in russia. But its not in America. I can say anything, call anyone
anything I want. (Leagley) There isnt a law saying I cant; and if there is
show it to me.

[View Quote] > Defamation of character is illegal ya know, downing a company is another
> illegal thing.. (dont know exact name for it off hand) but it draws
> customers away from the company.. be careful what you say TrekkerX..
>
[View Quote]

Zeebot

Aug 28, 2001, 4:09pm
Yea, I know we cant go an yell out "FIRE" in a movie theater, and stuff like that.

[View Quote] > hmmm, well I dont have any specific web site, but our freedom of speech
> is more limited than you might think. Little kids try to get away with
> cursing because they know of their constitutional right to "freedom of
> speech" but just the words "freedom of speech" are far too broad:
>
> We have a freedom to speak out against out government, its members, and
> its actions. We can also boycott, petition, stuff like that... but
> just saying "SOANDSO SUCKS A BIG ONE!!" is bad. Its slander, and its
> wrong. Also, if you have reasons to dislike a company, it is ok to make
> it known, but just saying "SOANDSO CORPORATION SMELLS LIKE ROTTEN
> CHEESE!!" is bad.
>
> Am I right here or just completely random?
>
> -JV
>
[View Quote]

Zeebot

Aug 28, 2001, 4:25pm
No duh. Haven't you ever called someone a name? I don't like stuff-x, cuz
there evil
Saying there evil isn't bad, don't tell me your prefect ether. Your always going
on how only certain people cant. That's what I don't like about stuff-x. Is
there attitude. There always acting better than everyone else, and pretend there
superior to everyone else.

Especially you Lanezeri. Your always bagging on people who make programs, or
write them. Especially ones that just started programming, and aren't your
friends. Also people who put out programs, (Like me) you start trashing them
EVEN IF YOU HAVENT USED IT. You automaticly assume because its not yours it just
happend to be a bad program.

[View Quote] > Defamation of character tells you that you can't say things about someone,
> reasearch your shit..
>
> --
>
> Lanezeri
> Lead Bot Programmer at Stuff-X
> http://aw.stuff-x.com
>
[View Quote]

Question

Aug 15, 2001, 8:45pm
My way is basicly the same as barons but a little diffrent.\

Public Sub MsgFile(FileName as string)
Dim temp as string

On Error Goto ErrHandel

Open FileName for Input as #1
while Not EOF(#1)
temp = #1 & vbNewLine
wend
MsgBox temp
Exit Sub

ErrHandel
temp = "Error in reading file"
close #1
End Sub

[View Quote] > well they both do the same thing this is just how
> i learned to do it i forgot that you wanted to put
> the entire line into a message box :/ this code
> was to use certain pieces in a line...oops
>
[View Quote]

First Bot, help please

Aug 21, 2001, 1:04am
To bad you 'dog' everyone.

[View Quote] > Why not supply helpful information? I've learned it's easier to help by
> typing a few lines than to dog them in several lines. So next time don't
> say anything pud!
>
[View Quote]

1  2  3  4  5  6  ...  12  |  
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