I left this script and in da night, I made new one,
I have no time to finish it now,
but I can show you how it works
I wrote "interviewer-addon" its a script which can !setup new profile and ask some questions and thats all, all other stuff like !view or something else you have to make at yourself
!setup of course is in multiuser mode, script is easy to configure and easy to implement in any regular script
script checks if nick left/sign got kicked from the chan or if some user change his nick during the !setup
I made pseudo session manager (some lists in eggdrop memory)
I have to fix/change/test some things,
but now, script in working in this state
ok, config header from interviewer-addon:
Code: Select all
set int_bind(setup) "!setup"
set int_bind(update) "!update"
set int_bind(dev_tool) "!sessions"
set int_bind(questions_start) "fill_me_now"
set int_msg(begin) "Hey! Your profile has been created, write: 'fill_me_now' if you want to update your profile information now (3 extra questions about your person)"
set int_msg(key) "here is your key: &k, save it, you will need it later for edit or delete your profile"
set int_msg(end) "thanks for the answers, bye!"
set int_msg(profile_exists) "profile with that name already exists in db!"
set int_msg(setup_already_in_use) "you can't use this command twice in the same time"
set int_msg(setup_profile_name_already_in_use) "someone is making setup with that name right now"
set int_msg(setup_help) "use: !setup <profile_name>"
set int_msg(edit_help) "use: !update <profile_name>"
set int_questions_key {
"age"
"sex"
"from"
}
set int_questions_list {
"1. what is your age?"
"2. what is your sex?"
"3. where are you from?"
}
set int_questions_regexp {
{^([0-9]{1,2})$}
{^(male|female|alien)$}
{.*}
}
set int_question_help {
"only numbers are allowed (99 is max)"
"male, female or alien..."
""
}
# this proc checks if some nick exists or not (in some DB),
# proc should return 0 - if profile doesn't exists, 1 - when profile exists
# proc takes 4 arguments, nick/uhost/chan of profile creator, profile name
# write here some sql query, check some file - whatever...
proc int_check_if_exists { nick uhost chan profile_name } {
putquick "PRIVMSG $nick :int_check_if_exists{}: $nick $uhost $chan $profile_name 0"
return 0
}
# this proc is called when new profile is created
# proc takes 6 arguments, nick/uhost/chan of profile creator, profile name, profile key and profile creation time
# write this data to sql or some file - whatever...
proc int_new_profile_event { nick uhost chan profile_name profile_key action_time} {
putquick "PRIVMSG $nick :int_new_profile_event{}: $nick $uhost $chan $profile_name $profile_key $action_time"
}
# this proc is called after every answer
# proc takes 6 arguments, nick/uhost/profile name of answerer, answer, action time and question key
# write this data to sql or some file - whatever...
proc int_answer_event { nick uhost profile_name arg action_time question_key } {
putquick "PRIVMSG $nick :int_answer_event{}: $nick $uhost $profile_name $arg $action_time $question_key"
}
i will make comments when i finish it, you can use it as standalone script for interview only or you can connect it with another script, example:
Code: Select all
# start interviewer-addon config
set int_bind(setup) "!setup"
set int_bind(update) "!update"
set int_bind(dev_tool) "!sessions"
set int_bind(questions_start) "fill_me_now"
set int_msg(begin) "Hey! Your profile has been created, write: 'fill_me_now' if you want to update your profile information now (3 extra questions about your person)"
set int_msg(key) "here is your key: &k, save it, you will need it later for edit or delete your profile"
set int_msg(end) "thanks for the answers, bye!"
set int_msg(profile_exists) "profile with that name already exists in db!"
set int_msg(setup_already_in_use) "you can't use this command twice in the same time"
set int_msg(setup_profile_name_already_in_use) "someone is making setup with that name right now"
set int_msg(setup_help) "use: !setup <profile_name>"
set int_msg(edit_help) "use: !update <profile_name>"
set int_questions_key {
"age"
"sex"
"from"
}
set int_questions_list {
"1. what is your age?"
"2. what is your sex?"
"3. where are you from?"
}
set int_questions_regexp {
{^([0-9]{1,2})$}
{^(male|female|alien)$}
{.*}
}
set int_question_help {
"only numbers are allowed (99 is max)"
"male, female or alien..."
""
}
# end of interviewer-addon config
# some other script variables, like in normal tcl script for eggdrop...
set myvar 0
set myvar2 "whatever"
######################################################################
# some other script bind, like in normal tcl script for eggdrop...
bind pub -|- !view view_proc
# some normal, script proc
proc view_proc { nick uhost hand chan arg } {
putquick "PRIVMSG $chan :here is proc for viewing the profile, write here what you need, sql query, fetch some data from file and print it out ;)"
}
# proc from interviewer-addon
proc int_check_if_exists { nick uhost chan profile_name } {
putquick "PRIVMSG $nick :int_check_if_exists{}: $nick $uhost $chan $profile_name 0"
return 0
}
# proc from interviewer-addon
proc int_new_profile_event { nick uhost chan profile_name profile_key action_time} {
putquick "PRIVMSG $nick :int_new_profile_event{}: $nick $uhost $chan $profile_name $profile_key $action_time"
}
# proc from interviewer-addon
proc int_answer_event { nick uhost profile_name arg action_time question_key } {
putquick "PRIVMSG $nick :int_answer_event{}: $nick $uhost $profile_name $arg $action_time $question_key"
}
putlog "some-profile-script.tcl ver 0.666"
# don't forget to add this line at the end of your script
# interviewer include
source scripts/interviewer-0.1.tcl
ok, lets run eggy:
[tomekk@zonk]:~/eggdrop# ./restart
Eggdrop v1.6.18+RC1 (C) 1997 Robey Pointer (C) 2006 Eggheads
[13:50] --- Loading eggdrop v1.6.18+RC1 (Thu Aug 6 2009)
[13:50] Listening at telnet port 1666 (users).
[13:50] Module loaded: server
[13:50] Module loaded: channels
[13:50] Module loaded: irc
[13:50] Module loaded: blowfish
[13:50] Module loaded: dns
[13:50] some-profile-script.tcl ver 0.666
[13:50] interviewer-addon.tcl ver 0.1b by tomekk loaded
[13:50] Userfile loaded, unpacking...
[13:50] === botty: 1 channels, 2 users.
Launched into the background (pid: 4756)
now some irc actions:
- chan
13:40:13 <@tomekk> !setup myprofile
- priv
13:40:13 -!- Irssi: Starting query in 10 with botty
13:40:13 <botty> int_check_if_exists{}: tomekk
tomekk@oswiecim.eu.org #kupa myprofile 0
13:40:13 <botty> int_new_profile_event{}: tomekk
tomekk@oswiecim.eu.org #kupa myprofile
37ddc19f9ea6e0c8b1eee0d50ea5b140 1249558721
13:40:13 <botty> Hey! Your profile has been created, write: 'fill_me_now' if you want to update your profile
information now (3 extra questions about your person)
13:40:17 <botty> here is your key: 37ddc19f9ea6e0c8b1eee0d50ea5b140, save it, you will need it later for edit or
delete your profile
13:40:20 <tomekk> fill_me_now
13:40:20 <botty> 1. what is your age?
13:40:23 <tomekk> asd
13:40:23 <botty> only numbers are allowed (99 is max)
13:40:25 <tomekk> 22
13:40:25 <botty> int_answer_event{}: tomekk
tomekk@oswiecim.eu.org myprofile 22 1249558733 age
13:40:26 <botty> 2. what is your sex?
13:40:33 <tomekk> hard to say
13:40:33 <botty> male, female or alien...
13:40:35 <tomekk> alien
13:40:35 <botty> int_answer_event{}: tomekk
tomekk@oswiecim.eu.org myprofile alien 1249558743 sex
13:40:35 <botty> 3. where are you from?
13:41:00 <tomekk> home
13:41:00 <botty> int_answer_event{}: tomekk
tomekk@oswiecim.eu.org myprofile home 1249558768 from
13:41:00 <botty> thanks for the answers, bye!
this example without any db implementation, just with PUTQUICK's echoes
- chan, !sessions (its tool for oper which show current sessions on priv)
13:40:55 <botty> nick | uhost | profile | qidx | amode
13:40:55 <botty> tomekk |
tomekk@oswiecim.eu.org | myprofile | 2 | 1
I'm thinking about the update/delete function.
What else, I think this script is easy to implement. It adds some extra procedures thats all, you have to add some lines with store/read data from somewhere.
There will be some procs more, like the one for checking if the profile key is correct.
Script takes 16 bytes with random chars from /dev/urandom for md5key generator.
I think I will make second option, for windows users.
cheers