Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Inferno Quiz v2.2 Details »»
Inferno Quiz v2.2
Version: 2.2, by Zero Tolerance Zero Tolerance is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.5.0 Beta 1 Rating:
Released: 06-14-2005 Last Update: 06-14-2005 Installs: 326
DB Changes Uses Plugins Template Edits
 
No support by the author.

Port of: https://vborg.vbsupport.ru/showthrea...threadid=80780

However, the system has a pretty big back-end, it's possible i over-looked a bit or 2, so if you encounter errors/php errors please feel free to let me know in this thread and i'll try to get them fixed asap

v2.2 Updates: (Upgrade instructions inside ZIP)
- Several areas of code otptimized (query reduction)
- Uncached templates now cached
- Ability in main options to choose default usergroups to participate/view results to be auto filled in when adding quizzes.

Enjoy,

- Zero Tolerance

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #222  
Old 11-19-2005, 06:46 PM
2fast4ya 2fast4ya is offline
 
Join Date: Feb 2005
Location: Los Angeles
Posts: 210
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

none of the screen shots work, is ther eanyway that i can see them?
Reply With Quote
  #223  
Old 11-21-2005, 11:35 PM
teamgofast teamgofast is offline
 
Join Date: Nov 2004
Location: chicago burbs
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok heres an issue i could use help with. say you have a multiple answer question. lets use 3 as the example. the user selects 2 out of 3 correct. his score should be 66% but since he selected a wrong answer with the 2 correct answers, the system is giving the user a 33% score for the question.
Is there an easy way to fix it other then having no multiple answer questions?
Reply With Quote
  #224  
Old 11-21-2005, 11:39 PM
dethfire dethfire is offline
 
Join Date: Feb 2003
Posts: 441
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think the templates need to be updated, they are very hard to view with a billion tables in tables and such without a clear hierarchy of elements.
Reply With Quote
  #225  
Old 11-22-2005, 01:43 AM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That sounds like a good idea dethfire. When you get them updated, will you please share your work with other users of this mod?
Reply With Quote
  #226  
Old 11-22-2005, 11:01 AM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes that sounds good to me, dethfire. Please do not forget to share your work with us.
Reply With Quote
  #227  
Old 11-26-2005, 01:10 PM
mcyates mcyates is offline
 
Join Date: Jan 2003
Location: Middlesbrough, Cleveland
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by amykhar
Yes. Change the name of the conflicting functions in one of the mods AND change the calls to them to use the new names.
How can this be done, i'm a newbie so i'll need step by step guide. If thats not too much to ask for thanks in advance.
Reply With Quote
  #228  
Old 11-26-2005, 01:13 PM
mcyates mcyates is offline
 
Join Date: Jan 2003
Location: Middlesbrough, Cleveland
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I deleted this from the quiz.php and it works, but i doubt think the pms won't send now:

Code:
// ---------------------------------------------------
	// Start Globalized Function - SendPM
	// ---------------------------------------------------

	function SendPM($message,$title,$to,$from = 0){
	global $vbulletin, $DB;


	$to             = $DB->query_first("select username, userid from ".TABLE_PREFIX."user where userid='{$to}'");
	$DataManager_PM =& datamanager_init('PM', $vbulletin, ERRTYPE_ARRAY); 
	$DataManager_PM->set('fromuserid', $to['userid']); 
	$DataManager_PM->set('fromusername', $to['username']); 
	$DataManager_PM->set('title', $title); 
	$DataManager_PM->set('message', $message); 
	$DataManager_PM->set_recipients($to['username'],$to['permissions']); 
	$DataManager_PM->set('dateline', TIMENOW); 
	$DataManager_PM->save();
	}

	// ---------------------------------------------------
	// End Globalized Function - SendPM
	// ---------------------------------------------------

	// ---------------------------------------------------
	// Start Globalized Function - Error Page
	// ---------------------------------------------------

	function RunError($message){
	global $vbulletin, $session, $stylevar, $_POST, $vbphrase,$navbits,$show,$header;
	global $templatecache, $db, $vboptions, $style,$headinclude,$footer;
	global $tempusagecache, $templateassoc, $pmbox, $pmtext, $quiz_page, $NewestQuiz;

	// Navigation
	$navbits     = array("quiz.php?$session[sessionurl]do=main" => "Quizzes");
	$navbits[""] = "Error!";

	eval('$quiz_page .= "' . fetch_template('quiz_error') . '";');
	$navbits = construct_navbits($navbits);
	eval('$navbar = "' . fetch_template('navbar') . '";');

	eval('print_output("' . fetch_template('QUIZ') . '");');
	exit;
	}

	// ---------------------------------------------------
	// End Globalized Function - Error Page
	// ---------------------------------------------------
Reply With Quote
  #229  
Old 12-05-2005, 10:51 PM
Calisse's Avatar
Calisse Calisse is offline
 
Join Date: Sep 2005
Location: UK
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

amazing extension (obviously) just wanted to post my approval! a million out of ten. Easy to use and control. Thanks xx
Reply With Quote
  #230  
Old 12-09-2005, 08:10 AM
Nam's Avatar
Nam Nam is offline
 
Join Date: Oct 2001
Location: NY
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm not sure this has been suggested before, but it'd be wonderful if Inferno Quiz has a feature like personality test, mean you take a serial of questions, and the scores are based on your answers, then calculated into a pre-defined result, and tell who you are.

Hope it could be done in the future version, thanks.
Reply With Quote
  #231  
Old 12-13-2005, 07:54 AM
ang2el ang2el is offline
 
Join Date: Oct 2005
Posts: 105
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would love the quiz features present in http://www.medschoolguide.co.uk/
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:00 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06930 seconds
  • Memory Usage 2,308KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete