Search the web
Sign In
New User? Sign Up
palace-bots · Join us for trading tips and code on building and operating bots in Palace-space
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
bots.artfink.com update   Message List  
Reply | Forward Message #20 of 201 |
Re: [palace-bots] Bot Help

Okies, I've tested this and it works, this script will
let you have your bot dress ppl in avs. What you'll
need to do is make spotpics for all the avs you want
the bot to be able to pass out and make sure the pid's
are in the array.
ON OUTCHAT {
{ { ME GETSPOTSTATE 1 + ME SETSPOTSTATE
}
{ "I'm sorry, that's all the avs I have" LOCALMSG
;change the 3 to 1 less then the total number of pics
in the spot
1 ME SETSPOTSTATE } ME GETSPOTSTATE 3 < IFELSE }
CHATSTR "next" == IF
{ [ [ 909971752 ] [ 909971761 ] [ 909971773 ] [
909971779 ] ] ME GETSPOTSTATE GET SETPROPS
} CHATSTR "dressme" == IF
}
Frodo
--- Pauleine Dean <sexydean1@...> wrote:
>
> Ok the bot that is produced at west pole via their
> room I want to make into
> a room script so that when peeps come in they can
> chat the bot and collect
> av¹s from it as well can this be done?
> Help! This is what I got from that room, and its
> used as a cyborg....smiles
>
> ;;; COPY FROM HERE DOWN ;;;
>
> ; Buddy Bot by Art Fink, 2001
> ; http://bots.artfink.com
>
> ON SIGNON
> {
> ;;; things I'll need to remember ;;;
> {GLOBAL} [ myName ownerName comeHere avArray
> userSaid1 userSaid2 userSaid3
> userSaid4 userSaid5 reply1 reply2 reply3 reply4
> reply5 ownerGreet userGreet
> isBot ] FOREACH
>
> ;;; names, commands, av's ;;;
> "damebot" myName =
> "Alan(p)+" ownerName =
> "here" comeHere =
> [
> [918624812 918624773 918624723 918624704 918624592
> 918624019 952737871
> -1233784404 ]
> [975365788 975365836 975365843 975365799 975365900
> 975365828 975365773 ]
> [961966237 961966292 -1222028109 961966280 961966272
> -1222028257 ]
> [894425242 894424691 894424850 894425195 894425087
> 894424681 ]
> [922380565 919843623 919790240 919843534 919843389
> 919843352 919843152
> 922380430 ]
> ] avArray =
>
> ;;; if I hear these.. ;;;
> "hello" userSaid1 =
> "how are you" userSaid2 =
> "where can i get av's?" userSaid3 =
> "where can i get props?" userSaid4 =
> "ok" userSaid5 =
>
> ;;; ..I'll reply with these ;;;
> "hi there" reply1 =
> "great and you?" reply2 =
> "ooo i can share some with you" reply3 =
> "ooo i can share some with you" reply4 =
> "ok here i go" reply5 =
>
> ;;; greetings I use ;;;
> "hi" userGreet =
> "!" ownerName & ownerGreet =
> 1 isBot =
> }
>
> ON ENTER {
> ;;; Auto-Greet ;;;
> numUsrs GLOBAL
> NBRROOMUSERS numUsrs =
> { 300 ME SETALARM } greet IF
> }
>
> ON INCHAT {
> ;;; Globals ;;;
> {GLOBAL} [ botSays myName ownerName ownerSaid
> comeHere greet avArray
> userSaid1 userSaid2 userSaid3 userSaid4 userSaid5
> reply1 reply2 reply3
> reply4 reply5] FOREACH
>
> ;;; my owner said ;;;
> WHOCHAT WHONAME ownerName == WHOCHAT WHONAME "^[*]"
> GREPSTR OR ownerSaid =
>
> ;;; my name is said ;;;
> CHATSTR myName SUBSTR CHATSTR USERNAME SUBSTR OR
> nameSaid =
>
> ;;; my reply ;;;
> "" botSays =
> {
> ;;; owner commands ;;;
> {
> ;;; go to owner ;;;
> { "ok" botSays = WHOCHAT WHOPOS SETPOS} CHATSTR
> comeHere SUBSTR IF
>
> ;;; turn greet on/off ;;;
> {"ok" botSays = 1 greet = 300 ME SETALARM} CHATSTR
> "greet on" SUBSTR IF
> {":ok" botSays = 0 greet =} CHATSTR "greet off"
> SUBSTR IF
>
> ;;; change avatar ;;;
> { "$1" GREPSUB ATOI 1 - avIndex =
> avArray avIndex GET SETPROPS
> } CHATSTR "av ([0-9]+)" GREPSTR IF
> ;
> } ownerSaid IF
>
> ;;; Chat Replies ;;;
> {reply1 botSays =} CHATSTR userSaid1 SUBSTR IF
> {reply2 botSays =} CHATSTR userSaid2 SUBSTR IF
> {reply3 botSays =} CHATSTR userSaid3 SUBSTR IF
> {reply4 botSays =} CHATSTR userSaid4 SUBSTR IF
> {reply5 botSays =} CHATSTR userSaid5 SUBSTR IF
> } nameSaid WHOCHAT WHOME == NOT AND IF
>
> ;;; say reply / no flood ;;;
> { botSays SAY TICKS 60 + antiFlood = } "" botSays ==
> NOT antiFlood TICKS <
> AND IF
> }
>
> ON ALARM {
> {GLOBAL} [greet numUsrs lastUserin greetMsg
> ownerName ownerGreet userGreet]
> FOREACH
> "" greetmsg =
> ;;; greet new user ;;;
> { NBRROOMUSERS 1 - ROOMUSER WHONAME lastUserin =
> { userGreet " " & lastUserin & greetMsg =
> { ownerGreet SAY }
> { greetMsg SAY } lastuserin ownerName == IFELSE
> } numUsrs NBRROOMUSERS < IF
> NBRROOMUSERS numUsrs =
> 300 ME SETALARM
> } { BREAK } greet IFELSE
> }
>
> ;;; COPY FROM HERE UP ;;;
>
>


=====


__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35
a year! http://personal.mail.yahoo.com/



Sun Jun 3, 2001 10:06 pm

Foodog62@...
Send Email Send Email

Forward
Message #20 of 201 |
Expand Messages Author Sort by Date

Hi all, I've added some stuff to my website, more coming soon. I'll be reformatting the website soon for easier navigation as it's beginning to take some...
Art Fink
fink@...
Send Email
Jan 17, 2001
1:38 am

I would like to add bud to my palace in a room can you tell me how or show me how too so that peeps that come here can also do the same i did at your palace?...
Pauleine M Dean
sexydean1@...
Send Email
Jun 1, 2001
3:40 pm

i would like help to build a bot that could run himself. please email me if you know the answer tauket2@... thanx, chris ...
Christopher VAlente
tauket2@...
Send Email
Jun 1, 2001
9:15 pm

There are a couple of websites you can check out the bot scripts on and try to either rework them to suit you if you understand iptscrae pretty good or at...
Jade
jaders2@...
Send Email
Jun 3, 2001
10:07 am

I just re read some of that email I sent and that should have said I was working on a bot page WITH Frodo if I'll ever get my butt in gear. Had alot going on...
Jade
jaders2@...
Send Email
Jun 3, 2001
10:20 am

Very slowly, raises his hand.... Maybe I could help. :) Mike <snip>...
Mike Sparling
msparling@...
Send Email
Jun 3, 2001
3:21 pm

LOL! Mike, I didnt know you were on here either. hahahaha that cracked me up! Ok yea now I KNOW Mike can help too. Yer so cute! Jade ... he...
Jade
jaders2@...
Send Email
Jun 3, 2001
7:48 pm

Ok the bot that is produced at west pole via their room I want to make into a room script so that when peeps come in they can chat the bot and collect av¹s...
Pauleine Dean
sexydean1@...
Send Email
Jun 3, 2001
7:57 pm

This is an excerpt from my .pat file and is an example of a room bot that I've been playing around with when I have some spare time. It's pretty basic right...
kevin williams
Foodog62@...
Send Email
Jun 3, 2001
9:17 pm

Can ANY ONE tell me how to do any of this, once i get a script were do i put it???? helmp me out here!!! im so lost.......
annebcf
Offline Send Email
Apr 13, 2002
9:14 pm

Your question is pretty vague. What are you trying to do? If you're not already aware of it: A 'bot' is a stand alone client running a cyborg.ipt that makes...
Alan Templeton
alan_templeton
Offline Send Email
Apr 13, 2002
9:26 pm

actually, you can use two palaces in windows... you just need a hexed client and a different reg code. actually if you use multi x palace you can run up to 9 ...
Christopher VAlente
tauket2@...
Send Email
Apr 14, 2002
3:16 pm

Okies, I've tested this and it works, this script will let you have your bot dress ppl in avs. What you'll need to do is make spotpics for all the avs you want...
kevin williams
Foodog62@...
Send Email
Jun 3, 2001
10:06 pm

Okies, I've tested this and it works, this script will let you have your bot dress ppl in avs. What you'll need to do is make spotpics for all the avs you want...
kevin williams
Foodog62@...
Send Email
Jun 3, 2001
10:06 pm

Okies, I've tested this and it works, this script will let you have your bot dress ppl in avs. What you'll need to do is make spotpics for all the avs you want...
kevin williams
Foodog62@...
Send Email
Jun 3, 2001
10:06 pm

... Oh my thank you both I will be testing today....wish me luck...hehe Thank you thank you thank you thank you!!! Pauleine(A)+...
Pauleine Dean
sexydean1@...
Send Email
Jun 4, 2001
11:59 am

What that is, is a cyborg script. To make it into a room script is going to take some doing and some things cant be used. Basically, what you are after is a...
Jade
jaders2@...
Send Email
Jun 3, 2001
10:30 pm

I love Frodo. He saves me work... lol...
Jade
jaders2@...
Send Email
Jun 4, 2001
1:55 am

LOL...well it still needs some work to make it what she's looking for so feel free to tinker all ya want Jaders *wink* Frodo ... === message truncated === ...
kevin williams
Foodog62@...
Send Email
Jun 4, 2001
2:08 am

LOL...well it still needs some work to make it what she's looking for so feel free to tinker all ya want Jaders *wink* Frodo ... === message truncated === ...
kevin williams
Foodog62@...
Send Email
Jun 4, 2001
2:09 am

LOL...well it still needs some work to make it what she's looking for so feel free to tinker all ya want Jaders *wink* Frodo ... === message truncated === ...
kevin williams
Foodog62@...
Send Email
Jun 4, 2001
2:09 am

LOL...well it still needs some work to make it what she's looking for so feel free to tinker all ya want Jaders *wink* Frodo ... === message truncated === ...
kevin williams
Foodog62@...
Send Email
Jun 4, 2001
2:09 am
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help