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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Spectre
Voice
Posts: 15 Joined: Sun Aug 16, 2009 9:07 am
Post
by Spectre » Sat Jun 09, 2018 11:09 am
Some users has auto correctors, lets say an answer is hello but the auto corrector will type Hello so that it may be good to have an islower checker for answers.
I know some may suggest to kick or ban these users but thats not preferred, so this kind of patch would be nice.
SpiKe^^
Owner
Posts: 831 Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:
Post
by SpiKe^^ » Sat Jun 09, 2018 12:07 pm
This code patch should force BogusTrivia to Ignore correct answers that contain "Any Upper Case Letters".
Search the t-2.tcl file for this line of code...
Code: Select all
proc TGotIt {nk uh hn ch tx} { global t2 tclr botnick ; set iskaos 0
And add ONE new line under it like this...
Code: Select all
proc TGotIt {nk uh hn ch tx} { global t2 tclr botnick ; set iskaos 0
if {[string match {*[A-Z]*} $tx]} { return 0 }
Please test this patch and report back here.
Spectre
Voice
Posts: 15 Joined: Sun Aug 16, 2009 9:07 am
Post
by Spectre » Sat Jun 09, 2018 12:24 pm
Works as intented, thanks