strike rapier // User Search

strike rapier // User Search

1  ...  6  7  8  9  10  11  ...  141  |  

Querying Ejections and Citizen Numbers

Jul 4, 2003, 3:12pm
Try this: Its worked for me a few times... not sure its technically correct

Dim AvatarIP As String
sdk.aw_address (sdk.aw_int(AW_AVATAR_SESSION))
sdk.aw_wait(0)
AvatarIP = sdk.long2ip(sdk.aw_int(AW_AVATAR_ADDRESS))

Querying Ejections and Citizen Numbers

Jul 4, 2003, 7:20pm
Almost identical :)

Its something like this.

Private sub Form_Load( )
call sdk.aw_callback_set(AW_CALLBACK_ADDRESS)
end sub

private sub Callback_Address(rc as long)
call Msgbox(sdk.Long2IP(sdk.aw_int(AW_AVATAR_ADDRESS))
end sub

[View Quote]

Querying Ejections and Citizen Numbers

Jul 5, 2003, 2:29pm
Yer know Baron.. why am I not suprised the first question you asked was
about the security features on aw? :)

- Mark

[View Quote]

Unofficial AwOcxSdk6.ocx INCOMPLETE TEST

Jul 9, 2003, 9:09pm
I don't get why people want to stick with old, out of date stuff, just for
the sake of a hours time. *sigh* Arnt we programmers meant to be adaptive?

- Mark

AwSdkDll 1.1

Jul 12, 2003, 8:34pm
You pick up a mallet... and you hit E N Z O around the head with it for
nuking the newsgroups...

- Mark

[View Quote]

Sync'ing with VRT

Jul 23, 2003, 6:20pm
lol... no comment

[View Quote]

AWSdkOcx4/5/6/Whatever object query!

Jul 23, 2003, 6:19pm
way to waste memory :)

[View Quote]

AWSdkOcx4/5/6/Whatever object query!

Jul 23, 2003, 7:01pm
I love pointers :)

[View Quote]

Trusted Sources

Jul 24, 2003, 4:03pm
www.imabot.com
www.imatowns.com
www.activeworlds.com
www.mauz.info
www.virtuallylearning.com
http://objects.activeworlds.com
www.aweduserve.org

Off top of my head

[View Quote]

Trusted Sources

Jul 24, 2003, 5:31pm
my first shortcuts =p .lol

urs is great 2 of course :)


[View Quote]

Getting session number isnt working...

Jul 27, 2003, 6:21am
You are not, by any chance trying to get the session of a chat event are
you?

If so, common mistake (One on my first)

dim lChatSession as long
lChatSession = sdk.aw_int(AW_CHAT_SESSION)

- Mark

[View Quote]

Avatar location

Jul 31, 2003, 3:13pm
Isnt that basically... like keeping em in a database?

- Mark

[View Quote]

Avatar location

Jul 31, 2003, 7:47pm
It does :)

- Mark

[View Quote]

Avatar location

Aug 1, 2003, 3:13pm
Database = Structured list of attributes pertaining to a certain item...
like a struct or class ;)

- Mark

[View Quote]

Avatar location

Aug 1, 2003, 7:52pm
\n = 2 bytes??? In Hex? I thought
\n = 0x10 and \n\l or whatever the other 1 was was 0x10 and 0x0D


[View Quote]

Avatar location

Aug 2, 2003, 7:37am
Ahh, but this is the programming newsgroup ;)

- Mark

[View Quote]

Avatar location

Aug 2, 2003, 9:20am
Hmmm. I always just used chr(10) without problem...

chr(10) and chr(13) for carridge return

- Mark

[View Quote]

Avatar location

Aug 2, 2003, 4:02pm
hmmmmm, the \r just gets anihalate when I try it.... only the \n remains.
Try pasting 10 and 13 dec chracters into the AW chat window, and then try
sending them though a bot.

- Mark

[View Quote]

Avatar location

Aug 2, 2003, 7:04pm
Hmmm, i always use \n only in printf's

- Mark

[View Quote]

Avatar location

Aug 7, 2003, 3:23pm
Thanks for clearing that up Alex, lol

- Mark

[View Quote]

Avatar location

Aug 7, 2003, 6:20pm
We know... but try this:

aw_string_set(AW_CONSOLE_MESSAGE, "This is line one\nThis is line 2");
aw_console_msg(<you>);

aw_string_set(AW_CONSOLE_MESSAGE, "This is line one part 2\r\nThis is line 2
part 2");
aw_console_msg(<you>);

The \r is not really valildated, but both will print on 2 lines.

- Mark


[View Quote]

Moving Objects from one world to another

Aug 7, 2003, 3:47pm
Movement is not confined to the same world... Teleport, reload the project
in Xelagot and rebuild it.

- Mark

[View Quote]

Moving Objects from one world to another

Aug 7, 2003, 3:49pm
btw..... GAHHH!!!!

Why did you post EVERYWHERE appart from where your not allowed to post to?!

- Mark

[View Quote]

Documentation: aw_instance / aw_instance_set

Aug 10, 2003, 10:20am
I have noticed, there is no documentation / examples on either aw_instance
or aw_instance_set. While I can work out most of it (from looking at hambot)
I think that we could do with some documentation on it.

- Mark

VB SDK Terrain Height Set

Aug 11, 2003, 9:56pm
You cant... decompile any language.. back to the origional language other
than Java JAR files....


[View Quote]

Amusement at my own stupidity...

Aug 11, 2003, 3:10pm
Hello folks!
I thought I would offer a little bit of fun on how NOT to debug your
bots when using DAO....

// Set the avatars position in our JET db...
DB_SetLong(pAvatarEventRc, "X", pMyAvatar->m_X);
DB_SetLong(pAvatarEventRc, "Y", pMyAvatar->m_Y);
DB_SetLong(pAvatarEventRc, "Z", pMyAvatar->m_Z);

What the hell?! I wondered... All I was getting was Zero's absolutly
everywhere! There was no reason for it, it shouldent be happening!!! Are the
variables getting set wrong? Are my DBMS classes I just changed wrong?.....

.....Or am I stood at GZ and not realising it....

- Mark

Chat range is 204.8m???

Aug 14, 2003, 3:19pm
A 200m cube...

So 100m NSEW +-Y... at the extent (a vertex) the chat range is the largest..
its only 200m directly for say 0n 0w and 20n 0w...

:)

- Mark

[View Quote]

Chat range is 204.8m???

Aug 16, 2003, 4:29pm
True :)

My mistake, I had just been adding a feature to limit it to a diff size on
Zeus.

- Mark

[View Quote]

What's wrong with my bot's initialization code? (sorry for being a newb, lol)

Aug 16, 2003, 6:28pm
Feck knows.... (Btw, dont use SdkOcx6!!!)...

dim rc as long
rc = sdk.aw_init(AW_BUILD)
if (rc) then
MsgBox "Error Code on Init: " & rc
end if

[View Quote]

What's wrong with my bot's initialization code? (sorry for being a newb, lol)

Aug 16, 2003, 7:13pm
AwSdkDll2 - www.grimmsoft.com

Then use the RC number given to find the cause of the error on
www.activeworlds.com/sdk/reason.htm

- Mark

[View Quote]

1  ...  6  7  8  9  10  11  ...  141  |  
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