Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
LeSane's Store Add-on for VB Quiz Details »»
LeSane's Store Add-on for VB Quiz
Version: 1.00, by xxxsaint xxxsaint is offline
Developer Last Online: Aug 2008 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 10-03-2002 Last Update: Never Installs: 42
 
No support by the author.

***** LESANE's STORE ADD-ON FOR VBQUIZ *****

Tested and Running smooth on VB 2.2.6

*****Integrate LeSane's Store with TWT Commish's VBQUIZ*****

ALL CREDIT for the code in this hack goes to LeSane who is one of the most helpful people I've had the pleasure to work with. I am releasing this Add-on with his permission and only because he's busy working on other goodies right now. Also a big thank you goes out to TWT Commish for creating VBQuiz and adding a lot of enjoyment to our sites.

Q.What does this do ?
A.This awards users of a 10 question quiz 10 points for every correct answer.
If they get all 10 questions right, then it awards them 1000 points as a bonus.
Instructions include both the standard 10 points per correct answer installation
AND installation if you want it to have the 1000 points bonus.

************************************************** **

Files to modify : 1
quiz.php

Installation time : 2 minutes or less
************************************************** **

I will do my best to provide support for this add on - but just so you know , I'm a total noob , this is my first hack release and I was basically the testor for it, Lesane did all the coding from ideas that I had.

Enjoy and click on INSTALL if you use and like this add-on!!

Installation instructions included in the attached file:

Show Your Support

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

Comments
  #12  
Old 11-18-2002, 04:41 AM
ethics ethics is offline
 
Join Date: Feb 2002
Posts: 104
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Uhm, call me crazy but I don't see the quiz.php? Where do I download it from?
Reply With Quote
  #13  
Old 12-15-2002, 03:18 AM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by ethics
Uhm, call me crazy but I don't see the quiz.php? Where do I download it from?
same, and i dont see instructions on how to like, put up a link so members can access it, how to change questions and answers, nothings here, what gives
Reply With Quote
  #14  
Old 12-15-2002, 05:26 AM
xxxsaint's Avatar
xxxsaint xxxsaint is offline
 
Join Date: Jun 2002
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
*****Integrate LeSane's Store with TWT Commish's VBQUIZ*****
This is just an auto-pay add on to TWT Commish's VBQUIZ through Lesane's Store. You have to have both of those hacks installed before making use of this hack.

Search for :
LeSane's Store
and
VB QUIZ
Reply With Quote
  #15  
Old 12-15-2002, 05:30 AM
xxxsaint's Avatar
xxxsaint xxxsaint is offline
 
Join Date: Jun 2002
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Fatal error: Call to a member function on a non-object in E:\webspace\resadmin\markquayle\mobilephonemadness .com\www\forums\quiz.php on line 673

(line 673 is:

$updatestore = $DB_site->query("UPDATE user SET storep=storep+'$storeamount' WHERE userid='$bbuserinfo[userid]'");

)

Can ANYONE help please?
hmm , I don't know about that one but I'm sure someone around here does , sorry , I would help if I knew
Reply With Quote
  #16  
Old 12-15-2002, 02:49 PM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ahh, thanks man
Reply With Quote
  #17  
Old 04-22-2003, 03:49 PM
Zelda-King's Avatar
Zelda-King Zelda-King is offline
 
Join Date: Nov 2002
Location: London, England
Posts: 674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I thought a link to the vB Quiz hack would be handy here.

http://www.vbulletin.org/hacks/index...ack&hackid=418

Hmm, how about an option to make people have to pay to take the quiz?
Reply With Quote
  #18  
Old 05-20-2003, 11:07 PM
Cloudrunner's Avatar
Cloudrunner Cloudrunner is offline
 
Join Date: May 2003
Location: Butte, MT
Posts: 635
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just for the record, to make it so that it will give the big $$$ on 100% on any size quiz (not just those with 10 questions), modify the code slightly to look thusly:

Instead of this:

Code:
//Points = $$$
		if ($totalcorrect=='10') {
		  $storeamount = 100 * $totalcorrect;
		} else {
		  $storeamount = 10 * $totalcorrect;
		}
		$updatestore = $DB_site->query("UPDATE user SET storep=storep+'$storeamount' WHERE userid='$bbuserinfo[userid]'");
//END Points = $$$
Use this:

Code:
//Points = $$$
		if ($totalcorrect==$question_count) {
		  $storeamount = 100 * $totalcorrect;
		} else {
		  $storeamount = 10 * $totalcorrect;
		}
		$updatestore = $DB_site->query("UPDATE user SET storep=storep+'$storeamount' WHERE userid='$bbuserinfo[userid]'");
//END Points = $$$
This uses the already assigned variable: $question_count, which is the total numbers of questions assigned to the quiz. Thus if the two variables are equal, then the score is obviously 100%, and thus it will give the big $$$.

Enjoy!

)O( Cloudrunner )O(
Reply With Quote
  #19  
Old 06-16-2003, 02:34 AM
mx3's Avatar
mx3 mx3 is offline
 
Join Date: Nov 2002
Location: prescott valley, az
Posts: 278
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looks cool, i'll install.
Reply With Quote
  #20  
Old 03-06-2004, 11:01 PM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great hack, just installed it.

Thanks XXXSaint and Lesane!
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 11:21 PM.


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.11062 seconds
  • Memory Usage 2,298KB
  • Queries Executed 24 (?)
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
  • (2)bbcode_code
  • (3)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
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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