This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

BogusTrivia 2.06.2.beta1 Released. Now with HTML Stats!

Support & discussion of released scripts, and announcements of new releases.
Post Reply
User avatar
SpiKe^^
Owner
Posts: 831
Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:

BogusTrivia 2.06.2.beta1 Released. Now with HTML Stats!

Post by SpiKe^^ »

Just wanted to announce that BogusTrivia 2.06.2.beta1 is now available on mytclscripts.com and will soon be posted to egghelp.org script archive.

This beta release adds support for BogusHTML HTML Page Generator.

Release Notes:
1. First Beta Release of BogusHTML, does just Active Stats.
2. Active stats for All Players Lifetime Scores.
3. Active Player stats for Today, This Week, and This Month.
4. Player Rank and Number of questions answered correctly.
5. Creates public_html folder.

SpiKe^^
t
testebr
Halfop
Posts: 86
Joined: Thu Dec 01, 2005 12:22 pm

Post by testebr »

can you place here a screenshot demo?
User avatar
SpiKe^^
Owner
Posts: 831
Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:

See some generated pages

Post by SpiKe^^ »

I can do better than that.

Go to: http://rs3.risingnet.net/~starr/
to see the pages generated for #bogusTrivia on undernet.
User avatar
SpiKe^^
Owner
Posts: 831
Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:

BogusTrivia 2.06.2.bata1 is now available on egghelp.org

Post by SpiKe^^ »

BogusTrivia 2.06.2.beta1 is now available on egghelp.org script archive.
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

Good job SpiKe^^. I even use your trivia script on my channel and I think it works splendid!

Just somes requests for your future releases:
- Add ".add" and ".mix" pub triggers
- New color themes would be great
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
User avatar
starr
Voice
Posts: 26
Joined: Sun Mar 18, 2007 1:18 am
Location: Tennessee
Contact:

Additional BogusTrivia Themes

Post by starr »

This beta release of Bogustrivia contains only 1 default html template with the Bogustrivia Default Color Theme. Furture releases will include matching templates for all exsistig color themes.
However if your referring to the scripts overall themes you can submit your own color themes for inclusion at SpiKe's site.
If you don't want to brave the submission form send an email with your color choices. :)
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

I have strange error, in hint bot shows me the answer.
<@bot> .0001. Переведите на тюркский язык "охраняй селение" ?
<@bot> 1st Hint: караул Question Value : 7100 Points
So "караул" is the answer. Whats wrong? Maybe this is because of Russian language I use?
But if I use hint command it works ok. So problem only in auto hint.
User avatar
SpiKe^^
Owner
Posts: 831
Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:

Russian language

Post by SpiKe^^ »

Yes it is the Russian language characters making the script show all on timed hints.

For hint purposes, every character is judged as one of four things:
1. an english consonant: bcdfghjklmnpqrstvwxyz
2. an english vowel: aeiou
3. an english number: 01234567890
4. everything else: to inclued space and all non english characters

Problem is everything in the Russian language looks like it fits into class #4 above and everything thats not an english letter or number is just shown on all timed hints.

Here's a possible patch for any language using using non-english characters, and having trouble with timed hints showning too much.
I have not tried this myself yet, and would like to know if it works:)

Search for and find this line:

Code: Select all

  if {[string match {[A-Za-z0-9]} $chr]} { return 1 } else { return 0 }
Replace: A-Za-z0-9 :with a complete list of upper and lower case letters and numbers. For english that would be like:

Code: Select all

{[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789]}
Then find this line just below that line:

Code: Select all

  if {[string match {[aeiouAEIOU]} $chr]} { return 1 } else { return 0 }
Replace: aeiouAEIOU :with a complete list of upper & lower case vowels for your language (anything here is used to make the 3rd Hint)

Save, upload, and rehash:) GoodLuck.

Please let me know if this helps. SpiKe^^
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

Thanks a lot, I repcale with russian upper&lower letters even here

Code: Select all

if {[string match {[A-Za-z0-9]} $chr]} { return 1 } else { return 0 }
and it works fine now.
But sometimes appears another mistake: in 3rd hint bot gives all word.
<bot> .0003. Река, впадающая в большую реку ?
<bot> 1st Hint: ****** Question Value : 7000 Points
<bot> 2nd Hint: пр**** 30 secs & 3500 Points Remaining
<bot> 3rd Hint: приток 15 secs & 1750 Points Remaining
<bot> Times up! The answer was -> приток <-
"Приток" is the answer, bot give it in 3rd hind, after that bot wait 15 second and say "Times up! ..."
Архив TCL скриптов для ботов Eggdrop/Windrop:
http://egghelp.ru/
User avatar
SpiKe^^
Owner
Posts: 831
Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:

Russian language

Post by SpiKe^^ »

And what did you put in place of this?

Code: Select all

aeiouAEIOU
The 3rd hint is made by filling in all letters in this list.
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

I understand my mistake, I replace it with all alphabet.
Thanks a lot for help.
Архив TCL скриптов для ботов Eggdrop/Windrop:
http://egghelp.ru/
User avatar
SpiKe^^
Owner
Posts: 831
Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:

Thanks

Post by SpiKe^^ »

I have been needing this tested for some time now, Thanks for the help.

Question : Is this a complete patch for the timed hints in BogusTrivia, when they contain many or all non-english characters?

Coming Soon to BogusTrivia : Language File Support, Complete with all language related script fixes:)
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

Yes, I didn`t see any mistakes in timed hints for Russian question base, everything works fine.
Архив TCL скриптов для ботов Eggdrop/Windrop:
http://egghelp.ru/
Post Reply