Jump to content
  • 0

[Help] Quiz event L2Mythras shared package


Question

Posted

I want  to disable the QuizEvent i check on eclipse this code but i don't know what i must change !?  

 

package custom;

import java.io.File;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import javolution.util.FastMap;
import l2f.commons.util.Rnd;
import l2f.gameserver.Announcements;
import l2f.gameserver.Config;
import l2f.gameserver.ThreadPoolManager;
import l2f.gameserver.model.Player;

import org.w3c.dom.Document;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;

/**
 * @author Grivesky
 * @date 07.05.2015
 * @project_name l2mythras
 */
public class QuizEvent
{
	public static boolean _quizRunning;
	private static String _question;
	private static String _answer1;
	private static String _answer2;
	private static String _answer3;
	private static int _rightanswer;
	private static FastMap<Player, Integer> _players;
	private static int _status;
	private static int announced;
	private static AutoEventTask _task;
	private static String[][] _questions;
	private static int i = 0;
	private static final int STATUS_NOT_IN_PROGRESS = 0;
	private static final int STATUS_ASK = 1;
	private static final int STATUS_ANSWER = 2;
	private static final int STATUS_END = 3;

	// ----------------------------------------------------------------------------
	// ------------------------------ CONFIG
	// --------------------------------------
	// ----------------------------------------------------------------------------

	// Number of questions per event
	private static int _questionNumber = 3;

	// The Item ID of the reward
	private static int _rewardID = 9627;

	// The ammount of the reward
	private static int _rewardCount = 1;

	// Wait for the first event after the server start (in seconds) 1200
	private static int _initWait = 1800;

	// Time for answer the question (in seconds)
	private static int _answerTime = 10;

	// Time between two event (in seconds) 7200
	private static int _betweenTime = 7200;

	public QuizEvent()
	{
		_status = STATUS_NOT_IN_PROGRESS;
		_task = new AutoEventTask();
		announced = 0;
		_quizRunning = false;
		_question = "";
		_answer1 = "";
		_answer2 = "";
		_answer3 = "";
		_rightanswer = 0;
		_players = new FastMap<Player, Integer>(100);
		_questions = new String[93][];
		includeQuestions();
		ThreadPoolManager.getInstance().schedule(_task, _initWait * 1000);

	}

	private void includeQuestions()
	{

		File questionFile = new File(Config.DATAPACK_ROOT, "data/scripts/custom/QuizEvent.xml");
		Document doc = null;
		try
		{
			DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
			dbf.setIgnoringComments(true);
			dbf.setValidating(false);
			DocumentBuilder db = dbf.newDocumentBuilder();
			doc = db.parse(questionFile);

			for (Node root = doc.getFirstChild(); root != null; root = root.getNextSibling())
			{
				if ("list".equalsIgnoreCase(root.getNodeName()))
				{

					for (Node child = root.getFirstChild(); child != null; child = child.getNextSibling())
					{

						if ("question".equalsIgnoreCase(child.getNodeName()))
						{
							int id, correct;
							String ask, answer1, answer2, answer3;
							NamedNodeMap attrs = child.getAttributes();

							id = Integer.parseInt(attrs.getNamedItem("id").getNodeValue());
							correct = Integer.parseInt(attrs.getNamedItem("correct").getNodeValue());
							ask = attrs.getNamedItem("ask").getNodeValue();
							answer1 = attrs.getNamedItem("answer1").getNodeValue();
							answer2 = attrs.getNamedItem("answer2").getNodeValue();
							answer3 = attrs.getNamedItem("answer3").getNodeValue();

							_questions[id] = new String[]
							{ ask, answer1, answer2, answer3, "" + correct };
							i++;

						}
					}
				}
			}
		} catch (Exception e)
		{

		}
	}

	private class AutoEventTask implements Runnable
	{
		@Override
		public void run()
		{
			switch (_status)
			{
				case STATUS_NOT_IN_PROGRESS:
					announceStart();
					break;
				case STATUS_ASK:
					if (announced < _questionNumber)
					{
						announceQuestion();
					} else
					{
						_status = STATUS_END;
						ThreadPoolManager.getInstance().schedule(_task, 3000);
					}
					break;
				case STATUS_ANSWER:
					announceCorrect();
					break;
				case STATUS_END:
					endEvent();
					break;
				default:
					break;

			}
		}
	}

	// Get a random question from the quiz_event table
	private static void selectQuestion()
	{
		int id = Rnd.get(i) + 1;
		_question = _questions[id][0];
		_answer1 = _questions[id][1];
		_answer2 = _questions[id][2];
		_answer3 = _questions[id][3];
		_rightanswer = Integer.parseInt("" + _questions[id][4]);
	}

	// Announce the question
	private static void announceQuestion()
	{
		selectQuestion();
		Announcements.getInstance().announceToAll("-----------------");
		Announcements.getInstance().announceToAll("Question: " + _question);
		Announcements.getInstance().announceToAll("-----------------");
		Announcements.getInstance().announceToAll("1: " + _answer1);
		Announcements.getInstance().announceToAll("2: " + _answer2);
		Announcements.getInstance().announceToAll("3: " + _answer3);
		Announcements.getInstance().announceToAll("-----------------");

		_status = STATUS_ANSWER;
		ThreadPoolManager.getInstance().schedule(_task, _answerTime * 1000);
	}

	// Announce the correct answer
	private static void announceCorrect()
	{
		Announcements.getInstance().announceToAll("-----------------");
		Announcements.getInstance().announceToAll("The correct answer was: " + _rightanswer);
		Announcements.getInstance().announceToAll("-----------------");
		announced++;
		giveReward();
		_status = STATUS_ASK;
		ThreadPoolManager.getInstance().schedule(_task, 5000);
	}

	private static void announceStart()
	{
		_quizRunning = true;
		_players.clear();
		Announcements.getInstance().announceToAll("Quiz Event begins! " + _questionNumber + " questions. " + _answerTime + " secs for answer each. ");
		Announcements.getInstance().announceToAll("Type . and the nanswer to the chat. (Like: .1)");
		Announcements.getInstance().announceToAll("Get Ready! L2zk is ready to reward you!");

		_status = STATUS_ASK;
		ThreadPoolManager.getInstance().schedule(_task, 5000);
	}

	// Add a player and its answer
	public static void setAnswer(Player player, int answer)
	{
		if (_players.containsKey(player))
			player.sendMessage("You alre choen an aser!: " + _players.get(player));
		else
			_players.put(player, answer);
	}

	private static void endEvent()
	{
		_quizRunning = false;
		Announcements.getInstance().announceToAll("The Quiz Event is ov");
		announced = 0;
		_status = STATUS_NOT_IN_PROGRESS;
		ThreadPoolManager.getInstance().schedule(_task, _betweenTime * 1000);
	}

	private static void giveReward()
	{
		for (Player p : _players.keySet())
		{
			if (_players.get(p) == _rightanswer)
			{
				p.sendMessage("Your answer was correct! with 1 GCM!");
				// p.getInventory().addItem(_rewardID, _rewardCount);
				p.getInventory().addItem(_rewardID, _rewardCount, null);
			} else
			{
				p.sendMessage("Your answer was not correct!");
			}

		}
		_players.clear();
	}
}

 

1 answer to this question

Recommended Posts

Guest
This topic is now closed to further replies.


  • Posts

    • SMMTOOL.ORG ТВОЙ ПРЯМОЙ ПОСТАВЩИК TG/YouTube/MAX ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ПОЧЕМУ МЫ? • Свой софт — работаем без посредников и переплат. • Скорость до 50.000.000 в сутки. • Минимальный **** — всего ~5%. ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ Услуги Telegram ПРАЙС-ЛИСТ (ЗА 1000 ЕД.) ПОДПИСЧИКИ (LIFETIME) ➥ 1.2$ — RU База ➥ 1.2$ — Китай База ➥ 1$ — Ultra Fast Группа (~80₽) ➥ 1$ — Ultra Fast (~80₽) ➥ 0.99$ — Super Fast (~80₽) ➥ 0.8$ — Fast (~64₽) ➥ 0.55$ — Normal (~40₽) ➥ 0.44$ — 100K+ Only (~35₽) ПОДПИСЧИКИ (Дневные) ➥ 0.7$ — 60 дней РУ (~55₽) ➥ 0.5$ — 30 Дней РУ (~40₽) ➥ 0.7$ — 60 Дней Китай (~55₽) ➥ 0.5$ — 60 Дней Китай (~40₽) ОПТИМИЗАЦИЯ КАНАЛОВ И БОТОВ ➥ 1.5$ — Подписчики из Поиска Китай (~120₽) ➥ 1.5$ — Подписчики из Поиска РУ База (~120₽) ➥ 1$ — Подписчики из Поиска МИКС (~₽80) ➥ 0.8$ — Бот Старты из Поиска (~64₽) АКТИВНОСТЬ И БОТЫ ➥ 0.7$ — Реакции на Комменты (Позитивные) + Подписчики (Бонус) ➥ 0.7$ — Реакции на Комменты (Негативные) + Подписчики (Бонус) ➥ 0.08$ — Просмотры постов ➥ 0.08$ — Реакции (Любые) ➥ 0.18$ — Запуски ботов МИКС ➥ 0.4$ — Запуски ботов РУ ➥ 0.4$ — Запуски ботов Китай ➥ 0.18$ — Запуски ботов + сообщение (/settings) ➥ 0.5$ — Рефералы в боты ➥ 0.3$ — Репост Истории + просмотр ➥ 0.3$ — Лайк Истории + просмотр Услуги YouTube АКТИВНОСТЬ ➥ 8$ — Кастомные Комментарии Живые Юзеры ➥ 15$ — Кастом Позитивные Комментарии + Лайк + Просмотр Видео ➥ 10$ — Рандомные Позитивные Комментарии + Лайк + Просмотр Видео ➥ 0.55$ — Поделиться Видео Живые Юзеры ➥ 0.5$ — Зрители Эфира (15мин) Живые Юзеры ➥ 18$ — Живые Просмотры Видео 60мин+ Видео ➥ 5$ — Рандомные Позитивные Комментарии ➥ 0.5$ — Лайк под Видео ➥ 0.7$ — Просмотр Видео МИКС + Монетизация Услуги MAX ПОДПИСЧИКИ (LIFETIME) ➥ 22$ — Публичные Каналы ПОДПИСЧИКИ (Дневные) ➥ 15$ — 90 дней ➥ 12$ — 60 дней ➥ 8$ — 30 дней АКТИВНОСТЬ И БОТЫ ➥ 3.50$ — Просмотры на пост ➥ 7$ — Макс Репосты ➥ 8$ — Положительные Реакции ➥ 13$ — Реакция ➥ 13$ — Реакция ➥ 13$ — Реакция ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ БОНУСЫ И ОФФЕРЫ КЭШБЭК ДО 10% для крупных реселлеров API доступ для ваших панелей ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ОПЛАТА: Crypto | LOLZ Market САЙТ: SMMTOOL.ORG Telegram: SMMTOOL_ORG
    • L2jFrozen embossed my childhood. Sick to see it some what back to life again.   Thank you for all the work you've done back then!
    • As the tittle says.I need a working one,all the free shared do not work.Do not share 196p or the frankenstein 166p for lucera.Thanks
    • Haha, I took a vacation so they could sell 😄
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..