ds dark scorpion // User Search

ds dark scorpion // User Search

1  |  

mult-instance

Nov 24, 2005, 11:55pm
It would be ridiculous to login 1000 bots. Completely unnecessary.

Just my thoughts..
=\

mult-instance

Nov 25, 2005, 11:40pm
=\...Your pretty much an ass to be honest.
Could all this be happening because of karma?

Just my thoughts...
=\

mult-instance

Nov 26, 2005, 4:11pm
Yeah, funy how things turn out when your an asshole to each and every
person on AW except the people who blow sunshine up your ass.

mult-instance

Nov 26, 2005, 4:15pm
Strike, I am SO SO SO SO SO glad you got disabled :D if only your NG
access would get disabled too =[

New World - Now Hiring Lead Programmer(s)!

Nov 25, 2005, 11:40pm
I am a programmer in VB6 and VB.NET

I am much better in VB6 than .NET though. If you do not mind having a VB
programmer on your team, I would be glad to join. All I ask for is a one
year citizenship renewal. $70.

Cheapest offer you've had yet eh?

Don't think I am a bad programmer because I don't ask for much.

[View Quote]

This is just a test...

Nov 24, 2005, 11:48pm
I wanted to make sure I could post.

Need a bot? Read this.

Nov 24, 2005, 11:52pm
Hello, I am DS Dark Scorpion aka Theworld.

I am in need of a renewal of my citizenship and I can help the person who
helps me ;-)

If you need a bot programmed for you, I can program pretty much anything you
need within reason. Just tell me what you need and I can get it done for
you. Here is the list of prices

____________________________________________________________

Paintball Bot - 2 months renewal of citizenship
RPG Bot - 3 months renewal of citizenship
Business(To promote your business) Bot - 1 month renewal of citizenship
Customs Aide - 1 month renewal of citizenship
Other - Contact me for prices.

VB.NET(2005) Working SDK Code.

Nov 25, 2005, 3:38am
I have it working now. It was pretty easy but it keeps giving me exceptions
and it's just being gay. If anyone wants the SDK Core code for .NET just
post.

VB.NET(2005) Working SDK Code.

Nov 25, 2005, 11:13am
You can use the 36 or 41 COM Wrapper for .NET...Here is the code, but you
must put AWSDK3 as a reference. This is a module by the way

Imports AWSDKLib3

Imports System

Imports System.IO

'import the enums

Imports AWSDKLib3.AW_ATTRIBUTE

Imports AWSDKLib3.AW_CHAT_TYPES

Imports AWSDKLib3.AW_EVENT_ATTRIBUTE

Imports AWSDKLib3.AW_SDK_CONSTANTS







Module SDKCore

Public BotName As String

Public AvatarName As String

Public ChatMessage As String

Public ObjectAction As String

Public Session As Long

Public BotVersion As String

Public WithEvents SDK As New AwSdk3

Private WithEvents EvntTimer As New Timer

Public Function Logon(ByVal UniHost As String, ByVal UniPort As Long, ByVal
Owner As Long, ByVal Bot As String, ByVal PPW As String, ByVal World As
String, ByVal X As Long, ByVal Y As Long, ByVal Z As Long, ByVal YAW As
Long) As Long

BotName = Bot

Dim RC As Long = 0

'initialize the AW Sdk

RC = SDK.aw_init(AW_BUILD)

If Not RC = 0 Then Logon = RC : Exit Function

'connect to universe

RC = SDK.aw_create(UniHost, UniPort)

If Not RC = 0 Then Logon = RC : Exit Function

'logon to the universe

SDK.aw_string_set(AW_LOGIN_APPLICATION, BotName)

SDK.aw_string_set(AW_LOGIN_NAME, BotName)

SDK.aw_int_set(AW_LOGIN_OWNER, Owner)

SDK.aw_string_set(AW_LOGIN_PRIVILEGE_PASSWORD, PPW)

BotName = BotName

RC = SDK.aw_login()

If Not RC = 0 Then Logon = RC : Exit Function

'get into the world with global mode

SDK.aw_bool_set(AW_ENTER_GLOBAL, 1)

RC = SDK.aw_enter(World)

If Not RC = 0 Then Logon = RC : Exit Function

'Set the coordinates

RC = ChangeBotCoords(X, Y, Z, 0, 0)

If Not RC = 0 Then Logon = RC : Exit Function

'Set the Events

Dim i As Integer = 0

For i = 0 To AW_MAX_EVENT - 1

SDK.aw_event_set(i)

Next

'Set the timer

EvntTimer.Interval = 100

EvntTimer.Enabled = True

End Function

Public Sub Disconnect()

SDK.aw_term()

SDK.aw_destroy()

End Sub

'useful functions

Public Function ChangeBotCoords(ByVal X As Long, ByVal Y As Long, ByVal Z As
Long, ByVal Type As Long, ByVal Yaw As Long) As Long

SDK.aw_int_set(AW_MY_X, X)

SDK.aw_int_set(AW_MY_Y, Y)

SDK.aw_int_set(AW_MY_Z, Z)

SDK.aw_int_set(AW_MY_YAW, Yaw)

SDK.aw_int_set(AW_MY_TYPE, Type)

ChangeBotCoords = SDK.aw_state_change

End Function

Public Function Console(ByVal Session As Long, ByVal Message As String,
Optional ByVal Red As Long = 0, Optional ByVal Green As Long = 0, Optional
ByVal Blue As Long = 0, Optional ByVal Bold As Boolean = False, Optional
ByVal Italics As Boolean = False) As Long

Message = Replace(Message, "%t", vbTab)

Message = Replace(Message, "%n", vbCrLf)

SDK.aw_string_set(AW_CONSOLE_MESSAGE, Message)

SDK.aw_int_set(AW_CONSOLE_BLUE, Blue)

SDK.aw_int_set(AW_CONSOLE_RED, Red)

SDK.aw_int_set(AW_CONSOLE_GREEN, Green)

SDK.aw_bool_set(AW_CONSOLE_ITALICS, Italics)

SDK.aw_bool_set(AW_CONSOLE_BOLD, Bold)

Console = SDK.aw_console_msg(Session)

End Function

Public Function ObjectAdd(ByRef ReturnNumber As Long, ByVal Model As String,
ByVal X As Long, ByVal Y As Long, ByVal Z As Long, Optional ByVal Action As
String = "", Optional ByVal Description As String = "", Optional ByVal Yaw
As Long = 0, Optional ByVal Tilt As Long = 0, Optional ByVal roll As Long =
0, Optional ByVal owner As Long = 0) As Long

SDK.aw_int_set(AW_OBJECT_X, X)

SDK.aw_int_set(AW_OBJECT_Y, Y)

SDK.aw_int_set(AW_OBJECT_Z, Z)

SDK.aw_int_set(AW_OBJECT_YAW, Yaw)

SDK.aw_int_set(AW_OBJECT_TILT, Tilt)

SDK.aw_int_set(AW_OBJECT_ROLL, roll)

SDK.aw_string_set(AW_OBJECT_MODEL, Model)

SDK.aw_string_set(AW_OBJECT_ACTION, Action)

SDK.aw_string_set(AW_OBJECT_DESCRIPTION, Description)

If Not owner = 0 Then

SDK.aw_int_set(AW_OBJECT_OWNER, owner)

ObjectAdd = SDK.aw_object_load()

Else

ObjectAdd = SDK.aw_object_add()

End If

ReturnNumber = SDK.aw_int(AW_OBJECT_NUMBER)

End Function

Public Function ObjectDelete(ByVal Number As Long, ByVal X As Long, ByVal Z
As Long) As Long

SDK.aw_int_set(AW_OBJECT_OLD_NUMBER, Number)

SDK.aw_int_set(AW_OBJECT_NUMBER, Number)

SDK.aw_int_set(AW_OBJECT_OLD_X, X)

SDK.aw_int_set(AW_OBJECT_X, X)

SDK.aw_int_set(AW_OBJECT_OLD_Z, Z)

SDK.aw_int_set(AW_OBJECT_Z, Z)

ObjectDelete = SDK.aw_object_delete()

End Function

Private Sub EvntTimer_Tick(ByVal sender As Object, ByVal e As
System.EventArgs) Handles EvntTimer.Tick

SDK.aw_wait(0)

End Sub

Private Sub SDK_EventAvatarAdd() Handles SDK.EventAvatarAdd



End Sub

Private Sub SDK_EventAvatarDelete() Handles SDK.EventAvatarDelete

End Sub

Private Sub SDK_EventChat() Handles SDK.EventChat

End Sub

End Module

VB.NET(2005) Working SDK Code.

Nov 25, 2005, 8:37pm
It's easier in a module then when you want to do something in a different
form, you dont have to do Form2.SDK.Aw_string(AW_CHAT_MESSAGE)

All you have to od is sdk.aw_string(AW_CHAT_MESSAGE)
So, like I said, its easier.

Bot emulator

Nov 26, 2005, 11:35am
So where can I get the 4.1 VB Wrapper at?

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 2:30am
We are going to upgraded to a p50-15 soon, but currently don't have the
funds. We need as many people to donate as possible, and there will be a
special hall in the RPG dedicated to the people who donated to SpiraRPG.
They will also get their own line of equipment too.

hlaftermath at gmail.com

Hurry guys! We need the money ASAP!

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 3:47pm
No I'm not. That was a different person evidently.

Heh. wutend auge thinks this is a Billybob RPG Bot.

Nov 26, 2005, 11:12pm
http://www.angelfire.com/rpg2/everwind/SpiraRPGBot.JPG

Does that even FAVOR Billybob in the slightest bit? Hell no. People
think that just because its a RPG Bot and it has enemies, "OH FUK U
CHEATAR U JUTS EDITED a BILLY U SUK at PROGRAMMIN U FAG!"
Billybob had barely ANYTHING on the GUI.

Chat Log :
wutend auge: The BillyBob bot you were using today in there?
Lucius Verus: My friend bought 10 360's and sold 9 on ebay for 1,300
wutend auge: Damn.
DS Dark Scorpion: <_<
wutend auge: Tell him to buy some more and send one my way fer free ^_^
Operator: You have a telegram.
Operator: You have a telegram.

Telegram from Keller, sent just now:
Oh


Telegram from Keller, sent just now:
The final version will arrive in 2-3 weeks, right?

Lucius Verus: lol
DS Dark Scorpion: Its private dumbass.
Operator: You have a telegram.
DS Dark Scorpion: You couldn't have gone in there
wutend auge: Well, it was open today.
DS Dark Scorpion: www.angelfire.com/rpg2/everwind/SpiraRPGBot.JPG
wutend auge: Gnu was in there
DS Dark Scorpion: Oh yeah, thats a Billybob Bot

Telegram from Keller, sent just now:
Ok, afk

wutend auge: Actually, that is.
DS Dark Scorpion: Goddamn pansy.
wutend auge: its the exact same way it used to be.
DS Dark Scorpion: Oh really?
DS Dark Scorpion: omfg.
wutend auge: yes
*eject*

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 2:30am
We are going to upgraded to a p50-15 soon, but currently don't have the
funds. We need as many people to donate as possible, and there will be a
special hall in the RPG dedicated to the people who donated to SpiraRPG.
They will also get their own line of equipment too.

hlaftermath at gmail.com

Hurry guys! We need the money ASAP!

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 3:47pm
No I'm not. That was a different person evidently.

Need a Bot? Read this.

Nov 24, 2005, 11:52pm
Hello, I am DS Dark Scorpion aka Theworld.

I am in need of a renewal of my citizenship and I can help the person who
helps me ;-)

If you need a bot programmed for you, I can program pretty much anything you
need within reason. Just tell me what you need and I can get it done for
you. Here is the list of prices

____________________________________________________________

Paintball Bot - 2 months renewal of citizenship
RPG Bot - 3 months renewal of citizenship
Business(To promote your business) Bot - 1 month renewal of citizenship
Customs Aide - 1 month renewal of citizenship
Other - Contact me for prices.

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 2:30am
We are going to upgraded to a p50-15 soon, but currently don't have the
funds. We need as many people to donate as possible, and there will be a
special hall in the RPG dedicated to the people who donated to SpiraRPG.
They will also get their own line of equipment too.

hlaftermath at gmail.com

Hurry guys! We need the money ASAP!

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 2:48am
The old version of SpiraRPG is here
www.spirarpg.be
There are no fee's involved, we just would like some donation. We have
only collected $152.58 out of $350 and we are still collecting.
I have been programming in Visual Basic for 3 1/2 years. I have had
extensive experience with RPG's and my builder from another universe is
going to use one of the free citizenships.
Also, a friend named Drake is going to host the world, and I will host
the bot until it's done. Then I will give it to Drake to host.
It will be a mix between RuneScape,AD&D,and AWRPG. You will have several
different places to be, and things to do. You don't have to be *click
click click click click click click click click* in my RPG.

SpiraRPG Needs Donation through Paypal. Any amount helps

Nov 26, 2005, 3:47pm
No I'm not. That was a different person evidently.

1  |  
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