[ALPHA] Ultimate Quiz MOD v2.1.2

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Scam Warning
Locked
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by doenwenu »

Installed this mod, and it works great.
Thanks for this wonderful mod :mrgreen:
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by mladiucitelj »

When is this going to be at least RC?

Just corious :)
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
plasmino
Registered User
Posts: 261
Joined: Sat Jul 25, 2009 11:12 am

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by plasmino »

with automod not problem, excellent ;-)
User avatar
battye
Extension Customisations
Extension Customisations
Posts: 11048
Joined: Wed Feb 11, 2004 11:02 am
Location: Australia
Contact:

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by battye »

mladiucitelj wrote:Hi!

Nice mod.

Some things:

1. Can it be supported for special characters like 'š, č, ž'? Now it shows just '??' instead of them.

2. It would be better that quiz questions are now so close to each other (maybe to put a white space between them)

3. When adding answers by creating quiz - maybe some notification how many answers are available (example: I've added 8 answers, but in ACP is configured 5 - last 3 answers just wanished when submitting a quiz)
1. I thought that was fixed. I'll add it to the bug list and re-test!
2. That seems fair enough, I'll make the change and see how it looks.
3. Good point, let me have a think about that. I'm sure there is a better way of handling this than the excess answers vanishing.
mladiucitelj wrote:When is this going to be at least RC?

Just corious :)
When it is a bit more bug free than it currently is. It sounds like there are a few minor issues I need to resolve.
doenwenu wrote:Installed this mod, and it works great.
Thanks for this wonderful mod :mrgreen:
plasmino wrote:with automod not problem, excellent ;-)
Thanks :)
Customisations Team Member

https://github.com/battye/php-array-parser - Give it a Star! :D
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by doenwenu »

Wich point mod is compatible with this quiz?
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by Jessica »

doenwenu wrote:Wich point mod is compatible with this quiz?
Ultimate points is one
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
Oyabun1
Former Team Member
Posts: 23162
Joined: Sun May 17, 2009 1:05 pm
Location: Australia
Name: Bill

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by Oyabun1 »

mladiucitelj wrote:2. It would be better that quiz questions are now so close to each other (maybe to put a white space between them)
battye wrote:2. That seems fair enough, I'll make the change and see how it looks.
Simple solution, that I think looks OK.

Open /styles/prosilver/template/quiz_play_body.html

Find

Code: Select all

		<!-- END question_row -->
Add before

Code: Select all

		<hr />
Puts a line (horizontal rule) in between the questions.
                      Support Request Template
3.0.x: Knowledge Base Styles Support MOD Requests
3.1.x: Knowledge BaseStyles SupportExtension Requests
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by doenwenu »

Jessica wrote:
doenwenu wrote:Wich point mod is compatible with this quiz?
Ultimate points is one
I can only found one wich is abondend :(
User avatar
battye
Extension Customisations
Extension Customisations
Posts: 11048
Joined: Wed Feb 11, 2004 11:02 am
Location: Australia
Contact:

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by battye »

doenwenu wrote:
Jessica wrote:
doenwenu wrote:Wich point mod is compatible with this quiz?
Ultimate points is one
I can only found one wich is abondend :(
It will work with any sort of points or cash MOD which adds a column to the users table. I think this is one of those MODs from memory.
Customisations Team Member

https://github.com/battye/php-array-parser - Give it a Star! :D
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by mladiucitelj »

Oyabun1 wrote:
mladiucitelj wrote:2. It would be better that quiz questions are now so close to each other (maybe to put a white space between them)
battye wrote:2. That seems fair enough, I'll make the change and see how it looks.
Simple solution, that I think looks OK.

Open /styles/prosilver/template/quiz_play_body.html

Find

Code: Select all

		<!-- END question_row -->
Add before

Code: Select all

		<hr />
Puts a line (horizontal rule) in between the questions.
I think that code would be better (at least for me):

Code: Select all

<form method="post" action="{S_SUBMIT_QUIZ_ACTION}">
		<fieldset>
		<!-- BEGIN question_row -->
		<div class="panel">
		<div class="inner"><span class="corners-top"><span></span></span>
		<dl>
			<dt>
				<span><strong>{question_row.U_QUESTION_NAME}</strong></span>
			</dt>
			<dd>
				<!-- BEGIN answer_row -->
					<input type="radio" name="answer_{question_row.U_QUESTION_ID}" value="{question_row.answer_row.U_ANSWER_ID}" /> {question_row.answer_row.U_ANSWER_NAME}<br />
				<!-- END answer_row -->
			</dd>
		</dl>
		<span class="corners-bottom"><span></span></span></div>
		</div>
		<!-- END question_row -->
		</fieldset>
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by Jessica »

mladiucitelj wrote:
I think that code would be better (at least for me):

Code: Select all

<form method="post" action="{S_SUBMIT_QUIZ_ACTION}">
		<fieldset>
		<!-- BEGIN question_row -->
		<div class="panel">
		<div class="inner"><span class="corners-top"><span></span></span>
		<dl>
			<dt>
				<span><strong>{question_row.U_QUESTION_NAME}</strong></span>
			</dt>
			<dd>
				<!-- BEGIN answer_row -->
					<input type="radio" name="answer_{question_row.U_QUESTION_ID}" value="{question_row.answer_row.U_ANSWER_ID}" /> {question_row.answer_row.U_ANSWER_NAME}<br />
				<!-- END answer_row -->
			</dd>
		</dl>
		<span class="corners-bottom"><span></span></span></div>
		</div>
		<!-- END question_row -->
		</fieldset>
I like that one.
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
guardianwill
Registered User
Posts: 128
Joined: Sat Feb 25, 2006 3:26 am

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by guardianwill »

Greetings all,

Does this install and work well with social network? It looks like an awesome mod. That could prove to be super fun.

Thank you for helping

William
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by Jessica »

About BBCode in answers...

Maybe you should change the way stats look; currently the answers are in the bars like polls. Perhaps you could take out the answers and put them before a completely new bar (not a phpBB bar)...

I say this because it would still be nice to have BBCode in answers; my board's school related so I would like it if, for example, I could use BBCodes like superscript and subscript (for math)

Or maybe remove bars completely and just have a %
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
elpanatibu
Registered User
Posts: 38
Joined: Sun Nov 16, 2008 6:34 pm

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by elpanatibu »

why not appear the users who have played the quiz in the statistics?
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [ALPHA] Ultimate Quiz MOD v2.1.2

Post by Jessica »

elpanatibu wrote:why not appear the users who have played the quiz in the statistics?
+1 to this

Also there should be a "user statistics" on your personal best, your score on quizzes, and also a top list of people who have answered the most quizzes, has the best overall score, etc
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
Locked

Return to “[3.0.x] MODs in Development”