|
the derek // User Search
the derek // User Search
Aug 15, 2001, 1:50pm
for sequential file access: (since you were using
input in your code attempt)
filenumber=freefile
open filename for input as filenumber
while not eof(filenumber)
input #filenumber, [list]
wend
close filenumber
[View Quote]lanezeri wrote:
>
> Visual Basic Question:
>
> How do you open a file from the beginning, pop a message box for the
> line-by-line input, then exit sub at end of file?
>
> It's something like this..
>
> Open File$ as Input as #1
> Do Until EOF
> MsgBox #1
> Loop
>
> I'm prolly totally off.. I don't know.. I'm blanking out lol..
|
Aug 15, 2001, 2:06pm
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]lanezeri wrote:
>
> That has useless code in it.. :-) Baron's way works great, thanks tho.. I
> would have tried this if u would have posted it b4 Baron..
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B7A9715.3B0CFD18 at yahoo.com...
|
Aug 15, 2001, 11:08pm
what exactly is cell iterator and what does it do?
i think its an attribute all i know is aw had it
on their site somewhere at some point and i just
wanna know what the heck it is ahhhhh
Aug 18, 2001, 2:58am
nope but if uhave more you can organize your
project better... and use those modules in other
projects as well
[View Quote]brandon wrote:
>
> sorry for all the VB questions lol, but anyways.....do i need to create
> seperate modules (Like i have one for INI and one for splashscreen code) or
> can you put all the code into one?
>
> --
> - Brandon
> (website coming soon)
> World: A'Dude
> Co-owned world: Safira
|
Aug 18, 2001, 3:23am
sdk.awinit(AW_BUILD) sdk does the rest itself
[View Quote]brandon wrote:
>
> arg and you know how it says Fucktion AwInit (Build as long) As Long? do i
> have to declare that or put it somewhere? cause the adk.AwInit and etc.
> doesnt seem to work
>
> "brandon" <brandon at my.activeworlds.com> wrote in message
> news:3b7de905$1 at server1.Activeworlds.com...
> does
|
Aug 18, 2001, 3:48am
If rc Then
MsgBox "Unable to enter world (reason " & rc & ")"
Else
MsgBox sdk.AwWorldWelcomeMessage
End If
try that
you also had a "'" in front of end if
i dont think you can put the method on the same
line as if if you havean else
if that doesnt work check your code for another
else out somewhere
[View Quote]brandon wrote:
>
> woops here it is:
>
> ' Login to World
> rc = sdk.AwEnter(LOGIN_WORLD)
> If rc Then
MsgBox "Unable to enter world (reason " & rc & ")"
> Else
> MsgBox sdk.AwWorldWelcomeMessage
> 'End If
>
> and there IS an If but it sats Else without If
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B7DFA07.26C688B5 at yahoo.com...
> i
> bot
> bar
> not
|
Aug 18, 2001, 3:49am
you only need one sdk and one timer for each bot
instance regardless of forms
to use the sdk thats on a diferent form do it like
you would with any other object
formname.sdk.action
replace formname with the name of the form and
action with what you wanna do
[View Quote]brandon wrote:
>
> and can you answer my first question toi please? sorry for all the questions
> but i need ot knwo this to get the bot to log-in
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B7DFA07.26C688B5 at yahoo.com...
> i
> bot
> bar
> not
|
Aug 18, 2001, 4:47am
if it cant talk or shows no avatar then you didnt
do aw_create right
[View Quote]brandon wrote:
>
> also my bot loggs in, i know becuaee the world log says so and it pops up
> the welcome message in a mnsgbox. But it wont say sdk.AwSay("Hi") or
> anything and it doesnt even appear no avatar no nothing
>
> also whats the code to move the bot, teleport, i only saw AwTeleport but
> that is to teleport other people
>
> "brandon" <brandon at my.activeworlds.com> wrote in message
> news:3b7de905$1 at server1.Activeworlds.com...
> does
|
Aug 18, 2001, 5:46pm
universe=auth.activeworlds.com
port=0 (default)
[View Quote]brandon wrote:
>
> erm ok...for uniport and unihost what do i type for active worlds
>
> "kah" <kah at kahbot.com> wrote in message
> news:3b7e91b9 at server1.Activeworlds.com...
> to
|
Dec 30, 2000, 5:04am
members.xoom.com/ITbot/ObjectPath
i add any objects that people send to me also
[View Quote]
> Telegram me. I have one, but its avatars and most of its objects are
> passworded, so I need to set it up for you:)
>
> --
> - Tony56 (chandler56 at mail.com)
> "Freedom: That's What The Government Wants You To Believe!"
> ____________________________________________________________
[View Quote]> agent fox mulder <jarync at home.com> wrote in message
> news:3a4be99c$1 at server1.Activeworlds.com...
> could
|
Aug 22, 2001, 3:13am
it might help if you tell us the code you used? if thats it then you really dont know what your doing cause its basically just english
if you want the bot to say its owner and cit# if someone says "owner" then this would be the code (case INsensitive)
'if they say owner do the following stuff:
If UCase(sdk.AwChatMessage) = "OWNER" Then
'create a variable for the owners name
Dim OwnerCitName as string
'get the attributes of the owners cit# cause there is no direct function for owner name
sdk.AwCitizenAttributesByNumber(sdk.awloginowner)
'make owner name variable the citizenname from the last function
OwnerCitName = sdk.AwCitizeNname
'say it!
sdk.AwSay "my owner is: " & OwnerCitName & " (" & sdk.awloginowner & ")."
End If
[View Quote]brandon wrote:
>
> If sdk.AwChatMessage Is "owner" Then sdk.AwSay "My owner is: " &
> sdk.AwLoginOwner & sdk.AwLoginPrivilegeNumber
>
> I did that for the version to with a diferent message but the bot doesnt say
> it. I dont really know of another way to do this ether
> --
> - Brandon
> (website coming soon)
> World: A'Dude
> Co-owned world: Safira
|
Aug 22, 2001, 3:20am
lol tell me how that works...and buy a book :P
[View Quote]brandon wrote:
>
> yes thats what i used....i had no idea how to do it so sooooooory....actualy
> what i used looks more like how bot script would do it lol
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B833C61.AC39A9B0 at yahoo.com...
> really dont know what your doing cause its basically just english
> this would be the code (case INsensitive)
> for owner name
> say
|
Aug 22, 2001, 3:41am
can you see the bot?
[View Quote]brandon wrote:
>
> well it doesnt say anything when i say version or owner and i used that code
> for both :\
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B833DF3.BF8C841E at yahoo.com...
> sooooooory....actualy
> then
> function
> ")."
> doesnt
|
Aug 22, 2001, 3:41am
more importantly did you install the event
handler?
[View Quote]brandon wrote:
>
> well it doesnt say anything when i say version or owner and i used that code
> for both :\
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B833DF3.BF8C841E at yahoo.com...
> sooooooory....actualy
> then
> function
> ")."
> doesnt
|
Aug 22, 2001, 3:51am
ok did you use the aw_wait timer?
can you use sdk.say "jggrjre" in any other sub and
have it work?
[View Quote]brandon wrote:
>
> yes and yes
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B8342F7.D513BAE0 at yahoo.com...
> code
> you
> "owner"
> &
> bot
|
Aug 22, 2001, 4:07am
menubar is the name of the form i suppose?
[View Quote]brandon wrote:
>
> MenuBar.sdk.AwEventSet AW_EVENT_AVATAR_ADD
> MenuBar.sdk.AwEventSet AW_EVENT_CHAT
>
> thats what i use for the events right? It should be so im doing that part ok
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B83453A.80CEC53A at yahoo.com...
> that
> then
> english
> direct
> function
> sdk.awloginowner
> " &
> the
|
Aug 22, 2001, 4:18am
wellthats weird you dont get any errors or nutin
heres a longshot but last resort:
change this line to this
sdk.AwSay "my owner is: " & OwnerCitName & " (" &
to
rc=sdk.AwSay "my owner is: " & OwnerCitName & " ("
&
if rc>0 then
msgbox rc
end if
[View Quote]brandon wrote:
>
> yah lol....this code is on the log-in window and the sdk is on the menubar
> (becuase it is always open) thats why
>
> anyways...i dunno about this right now i'll figure it out tommorrow i
> guess...probly just some stupid mistake i overlook like always ;)
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message
> news:3B8348DB.D7F0FE2E at yahoo.com...
> part ok
> used
> it
> says
> is:
> but
|
Aug 22, 2001, 8:19pm
nope if ithas ps it can hear a little further but
other than that theres no other way except having
tons ofbots everywhere
[View Quote]scifair wrote:
>
> I am trying to make a bot that will log all of the conversations that happen
> in my world. The only problem is every instance of the bot can only "hear"
> things that are within 20 degrees of it. Ex. If my bot was at GZ the
> farthest convo it could pick up would be at 20N 20W. Is there any way
> around this other than creating a bunch of instances and placing them
> throughtout the world? I tried giving myself Public Speaker rights and
> being the bot owner I thought maybe that would do it but it doesnt seem to
> work, Any suggestions?
> Thanks,
> Bogey
|
Aug 22, 2001, 9:31pm
why do therehave to be 50 people in the area?
[View Quote]young phalpha wrote:
>
> All PS does is if there are over 50 people in a area, the PS will always be
> heard as long as its 200 meters within the avatar, as described in the help
> files. :)
>
> Young Phalpha
>
> "scifair" <bkondracki at hotmail.com> wrote in message
> news:3b840f45$1 at server1.Activeworlds.com...
> happen
> "hear"
|
Jan 5, 2001, 1:29am
then what the hell is the idea? and what if we ask you for what it is and
later say we cant do it?
[View Quote]
> Hi,
> I have an idea for a new bot. I'd like to know if someone is interested in
> making it?
> In return for my ideas, you would allow me to use the bot. I think this
> could be a profitable bot for someone who is trying to sell bots. I do
> modeling, I don't do bots. hehehe if you can do it right, I'd be willing
> to trade some of my models for usage rights.
> If anyone is interested, contact me in AW.
>
> Paul
Aug 24, 2001, 1:11am
it means there are 2 subs with the samenamei
believe
[View Quote]brandon wrote:
>
> What does this mean:
>
> Compile Error:
> Ambiguous name detected: sdk_EventAvatarAdd
>
> this never happened and havent chnaged anything to the sdk except for the
> position on the form
>
> --
> - Brandon
> (website coming soon)
> World: A'Dude
> Co-owned world: Safira
|
Aug 24, 2001, 1:30am
well search your code to makesurethere arent two
of them i get that error a lot when i dont know
why it added another sub when i was programming...
sometimes a copy/past goes bad or something i
dunno :P
[View Quote]brandon wrote:
>
> thats strange...i didnt chnage any of my code since after i tested it
> (whitch works fine)
>
> "jey" <bobo1186 at aol.com> wrote in message
> news:3b85b0e6$1 at server1.Activeworlds.com...
> means
> can't
> the
|
Sep 1, 2001, 9:32pm
well he came in seemingly with no intent except to
spam i mean he even said he wasnt gonna reply
which i take it as "im advertising and leaving so
dont bother" and html posts take a long time to
load its not something id bitch about just would
ask the person to stop
[View Quote]lanezeri wrote:
>
> Hey buddy.. I don't care if u post in HTML, it don't bother me at all..
> actually.. I don't know why people bitch about it.. but.. I guess thats just
> me.. anyway.. u weren't a menace lol.. trust me..
>
> --
>
> Lanezeri
> Lead Bot Programmer at Stuff-X
> http://aw.stuff-x.com
>
> "r y a n" <birkin at ozemail.com.au> wrote in message
> news:3b90a2c2 at server1.Activeworlds.com...
> Rules
|
Sep 1, 2001, 9:35pm
cross posting is when someone posts the same thing
in different ngs... basically making people read
the same thing over an dover in each ng and making
it look unread when it is actually not... i dont
complain but it does bug the heck out of me
[View Quote]donna wrote:
>
> Maybe it is time to put this issue with Ryan to bed, I talked to
> Ryan last night, he tells me he 11 years old. I personally disagree with
> warez sites (I found out what they were only last night) but this is a child
> for goodness sake!!! has any one of us ever done anything wrong when we were
> kids? I interpret Ryan's 1st response to EEP's post as a childish way of
> defending his self. I saw his apology as a much more mature way to handle
> what he did wrong. I saw that anana's (whom I believe a decent human being)
> had mentioned cross posting. What the heck is that? And am I doing this
> also?
> Donna
>
> "r y a n" <birkin at ozemail.com.au> wrote in message
> news:3b90a2c2 at server1.Activeworlds.com...
> Rules
|
Sep 3, 2001, 3:40am
well its twice as long try downloading 30 or 40 on
a 28k modem and each text message can take up to
10 seconds for me almost a minute if its html
[View Quote]young phalpha wrote:
>
> uhh, you mean the difference of 150-300 milliseconds or so is that much? :)
> --
> Young Phalpha
>
> "the derek" <ImTheDerek at yahoo.com> wrote in message news:3B916CF3.51A9493F at yahoo.com...
> well he came in seemingly with no intent except to
> spam i mean he even said he wasnt gonna reply
> which i take it as "im advertising and leaving so
> dont bother" and html posts take a long time to
> load its not something id bitch about just would
> ask the person to stop
>
> lanezeri wrote:
|
Sep 1, 2001, 9:30pm
umm its good youre apologizing but putting it in
the wrong newsgroup is gonna just make things
worse... u shoulda emailed him or posted in
general discussion i doubt he hasnt filtered you
[View Quote]r y a n wrote:
>
> This is a message to Eep,
> Eep, Please stop being rude to me... im a citizen of activeworlds aaswell,
> and i have a right to post, and i will never stop posting because of you....
> so dont look at my posts if your just gonna be rude to me ok?
|
Sep 3, 2001, 3:41am
i have a VB copy
[View Quote]joeman wrote:
>
> Hi, I need the 2.2 SDK for a project I'm working on. If any one has a copy,
> could they please send it to joeman at bootdown.com.
>
> Thanks
> -Joe
|
Sep 3, 2001, 3:42am
lol no it costs 10 grand TO upgrade or at least it
did i think with the release of 3.2 all universes
can upgrade for free but none of it is mandatory
[View Quote]agent1 wrote:
>
> Who still has those? Isn't it mandatory to upgrade uniservers?
>
> -Agent1
>
> "joeman" <Joeman at bootdown.com> wrote in message news:3b92c0b4$1 at server1.Activeworlds.com...
|
Sep 3, 2001, 4:58pm
no those variables arent in the 2.2 sdk
[View Quote]joeman wrote:
>
> It should be able to get more, or so im told.
>
> -Joe
>
> "kah" <kah at kahbot.com> wrote in message
> news:3b93b7ca at server1.Activeworlds.com...
> the
> and
|
Sep 3, 2001, 4:59pm
yeah but i thought you could only get it when
youre on the root account hmmmm
[View Quote]ananas wrote:
>
> Are you sure that the user email is an attribute in the 2.2 SDK?
>
> agent1 wrote:
>
> --
> "_
> |
> /\
> \ /
> __/ /_
|
|