Pauler Posted January 12, 2013 Posted January 12, 2013 Hello there, summoners, this is my latest share, an automated quiz event! Every 2 hours it asks a question that you have set in your database and players have 10 minutes to answer. The first player who will answer correctly wins and earns a reward. Usage: .quiz answer http://youtu.be/F6m178fLrt8 Patch: http://pastebin.com/kYAeqaJs This kind of quiz feature might have been shared to the past, but whatever. Enjoy.
Stereotype Posted January 12, 2013 Posted January 12, 2013 Nice share... Keep up teh good work :-beep- yeah:
An4rchy Posted January 12, 2013 Posted January 12, 2013 Nice one, i already shared it, but this one works with options. GJ.
Pauler Posted January 12, 2013 Author Posted January 12, 2013 Commited to L2JHellas with configs. https://www.assembla.com/code/l2hellas/subversion/changesets/165
lame69 Posted January 13, 2013 Posted January 13, 2013 Really nice event!!Tested, but have Unclosed conections !! Ps: con.close(); in line 186 and line 218 thx for this good event!!
Nightw0lf Posted January 13, 2013 Posted January 13, 2013 Commited to L2JHellas with configs. https://www.assembla.com/code/l2hellas/subversion/changesets/165 Thank you!!! Really nice event!!Tested, but have Unclosed conections !! Ps: con.close(); in line 186 and line 218 thx for this good event!! +
lame69 Posted January 13, 2013 Posted January 13, 2013 Found another mistake which comes in server console when u write and press just .quiz without answer!!
Pauler Posted January 13, 2013 Author Posted January 13, 2013 Really nice event!!Tested, but have Unclosed conections !! Ps: con.close(); in line 186 and line 218 thx for this good event!! Fixed and Commited. https://www.assembla.com/code/l2hellas/subversion/changesets/168
Pauler Posted January 13, 2013 Author Posted January 13, 2013 Found another mistake which comes in server console when u write and press just .quiz without answer!! You can add a simple check. ### Eclipse Workspace Patch 1.0 #P L2jHellasC Index: java/com/l2jhellas/gameserver/handler/voicedcommandhandlers/QuizCmd.java =================================================================== --- java/com/l2jhellas/gameserver/handler/voicedcommandhandlers/QuizCmd.java (revision 165) +++ java/com/l2jhellas/gameserver/handler/voicedcommandhandlers/QuizCmd.java (working copy) @@ -32,7 +32,7 @@ { if (command.equalsIgnoreCase("quiz")) { - if (QuizEvent.isRunning()) { + if (QuizEvent.isRunning() && !target.equalsIgnoreCase("") && target != null) { QuizEvent.checkAnswer(target, activeChar); activeChar.sendMessage("Your answer has been submitted.");
lame69 Posted January 13, 2013 Posted January 13, 2013 Ps:testing with this : if (QuizEvent.isRunning() && !target.equalsIgnoreCase("") && target != null) { Still having a mistake in server console when type just .Quiz
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now