ep0ch // User Search

ep0ch // User Search

1  2  3  4  5  6  |  

AW_EVENT_OBJECT_BUMP

Feb 27, 2004, 10:57pm
Ground is an object as well so there ya go.
[View Quote]

AW_EVENT_OBJECT_BUMP

Mar 1, 2004, 5:23am
Its the new fad.

-Ep0ch

[View Quote]

AW_EVENT_OBJECT_BUMP

Mar 1, 2004, 6:12am
Ahahahaah, it could happen!

-Ep0ch

[View Quote]

WARNING TO EVERYONE, READ!! (CROSSPOSTED)

Dec 13, 2003, 6:23pm
There is currently a trojan going around, a supposed "Terrain bot" that is
from terbot.0catch.com. I was infected with it and the little #$%^& used my
acct and ftp server to distrobute another version of it called VWTViewer. If
you see eather one DO NOT DOWNLOAD THEM. VWTViewer i have deleted and have
changed all of my passwords, but DO NOT UNDER ANY CIRCUMSTANCES download
these. They are a real #$%^& to remove.

-Ep0ch

Sorry for cross-post.. tis funny!

Dec 22, 2003, 10:36pm
lol :P, tis true

-Ep0ch

[View Quote]

aw_server_world_list

Feb 6, 2004, 2:40am
Using VB, how would I go about listing the worlds on the world server? So
far I have it connecting to it, but aw_server_world_list returns 0. Im
probably barking up the wrong tree with my coding, but any insight on how to
use this would be very nice.

Ep0ch

aw_server_world_list

Feb 6, 2004, 5:33pm
I have looked at that, and converting C++ code to VB code is kind of hard.
Thats why I asked here to see if anyone could tell me how to work it in VB

Ep0ch

[View Quote]

aw_server_world_list

Feb 6, 2004, 10:31pm
Im not that dumb, contrary to popular belief.

Ep0ch

[View Quote]

Few Random Classes

Feb 9, 2004, 3:14am
Very useful, thanks :)

-Ep0ch

[View Quote]

Coordinates Function

Feb 9, 2004, 3:05am
Ah good. Does this one actually work correctly? the AW SDK Functions module
makes the y axis positive all the times...but now we need a working aw
coords to nsew coords. Maybe ill write one...

-Ep0ch

[View Quote]

Coordinates Function

Feb 9, 2004, 4:44am
Erm...just shoot me before i reply again alright?


[View Quote]

Coordinates Function

Feb 9, 2004, 5:05am
This code is reversed making it go south instead of north. Replace

If VBA.Right(TMP, 1) = "n" Then
Zcoord = Val(VBA.Left(TMP, Len(TMP) - 1)) * -1000
ElseIf VBA.Right(TMP, 1) = "s" Then
Zcoord = Val(VBA.Left(TMP, Len(TMP) - 1)) * 1000
End If

with

If VBA.Right(TMP, 1) = "n" Then
Zcoord = Val(VBA.Left(TMP, Len(TMP) - 1)) * 1000
ElseIf VBA.Right(TMP, 1) = "s" Then
Zcoord = Val(VBA.Left(TMP, Len(TMP) - 1)) * -1000
End If

otherwise a great module john. Im going to use it on my bot since the
conversion module i have now is broken. Thanks!

-Ep0ch
[View Quote]

Coordinates Function

Feb 9, 2004, 5:11am
Also
Ycoord = Val(Va(2)) * 1000
should be
Ycoord = Val(Va(2)) * 100

And
Y = Val(Y) / 1000
should be
Y = Val(Y) / 100

All the errors i see right now

-Ep0ch

[View Quote]

Coordinates Function

Feb 9, 2004, 5:23am
Another correction:

If Z < 0 Then TMPz = -Z & "N" Else TMPz = Z & "S"
needs to be changed to
If Z < 0 Then TMPz = -Z & "S" Else TMPz = Z & "N"

-Ep0ch
[View Quote]

Coordinates Function

Feb 9, 2004, 10:04pm
Forgot to add the StringCoords modifications
[View Quote]

Coordinates Function

Feb 10, 2004, 10:10pm
You forgot my Ycoord corrections as well as

If Z < 0 Then TMPz = -Z & "N" Else TMPz = Z & "S"
to
If Z < 0 Then TMPz = -Z & "S" Else TMPz = Z & "N"

[View Quote]

Coordinates Function

Feb 12, 2004, 12:44am
I brought the errors to john's attention, its his choice if he includes all
of the bugfixes i posted or not.

-Ep0ch

[View Quote]

Aw Sdk Functions Module

Feb 21, 2004, 10:28pm
Hmm useful, i can get rid of 1 working module and 1 half working module with
one working module...finally...Thanks Richard.

-Ep0ch

[View Quote]

sdk.aw_address conversion code

Feb 25, 2004, 12:02am
Since the output from sdk.aw_address(session) is given in Network Byte Order
(ie, junk) I coded a conversion code snippit. It will take "389473245" and
make it into a pretty "65.65.65.65".

Public Declare Function inet_ntoa Lib "wsock32.dll" (ByVal addr As Long) As
Long

Public Declare Function lstrcpyA Lib "kernel32" (ByVal RetVal As String,
ByVal Ptr As Long) As Long

Public Declare Function lstrlenA Lib "kernel32" (lpString As Any) As Long

Public Function GetInetStrFromPtr(Address As Long) As String

GetInetStrFromPtr = GetStrFromPtrA(inet_ntoa(Address))

End Function

Public Function GetStrFromPtrA(ByVal lpszA As Long) As String

GetStrFromPtrA = String$(lstrlenA(ByVal lpszA), 0)
Call lstrcpyA(ByVal GetStrFromPtrA, ByVal lpszA)

End Function

Usage:
sdk.aw_address(session)
var = GetInetStrFromPtr(sdk.aw_int(AW_AVATAR_ADDRESS))

Enjoy! Any bugs or anything just let me know. Also theres a function to
convert TO the junk if you really need it.

-Ep0ch

sdk.aw_address conversion code

Feb 25, 2004, 11:18pm
It was an example. I never calculated it...

-Ep0ch

[View Quote]

sdk.aw_address conversion code

Feb 25, 2004, 11:22pm
As aw doesnt see fit to document all the functions/events/attributes
whatever thanks. If only they had documented it I would have saved half an
hour worth of coding...

-Ep0ch

[View Quote]

sdk.aw_address conversion code

Feb 26, 2004, 12:43am
*Turns green and hobbles around the screen*

-Ep0ch

[View Quote]

sdk.aw_address conversion code

Feb 26, 2004, 11:49pm
Hmm...maybe people with SARS got compiled by a GNU compiler? ;)

-Ep0ch

[View Quote]

browser 498 and bots

Feb 26, 2004, 11:53pm
Not really a priority for me...right now im bashing my head in trying to
figure out why AW_EVENT_UNIVERSE_ATTRIBUTES wont work...tis a mystery and i
must be sherlock! But good to know, ill make sure to include that into my
bot.


- Ep0ch

[View Quote]

browser 498 and bots

Feb 27, 2004, 1:05am
Been there, done that :) Its just like every other event I use except this
one decided to go funky on me.

- Ep0ch

[View Quote]

browser 498 and bots

Feb 27, 2004, 7:00pm
Ahahahaha, i got it working, turns out i removed this bit of code and it
started working.

- Ep0ch

[View Quote]

browser 498 and bots

Feb 27, 2004, 10:54pm
Haha, lesson number two: AW doesnt document properly
[View Quote]

Reason 29 ?¿?

Mar 1, 2004, 5:18am
RC_DONT_LISTEN_TO_STRIKE
lol

-Ep0ch

[View Quote]

Reason 29 ?¿?

Mar 1, 2004, 6:12am
Agreed.

-Ep0ch

[View Quote]

Reason 29 ?¿?

Mar 1, 2004, 6:13am
Or RC_CODED_BY_STRIKE....

-Ep0ch
[View Quote]

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