/* $Id: AlterQuest.java,v 1.11 2010/09/19 02:36:26 nhnb Exp $ */
/***************************************************************************
* (C) Copyright 2003-2010 - Stendhal *
***************************************************************************
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
package games.stendhal.server.script;
import games.stendhal.server.core.engine.SingletonRepository;
import games.stendhal.server.core.engine.StendhalRPRuleProcessor;
import games.stendhal.server.core.scripting.ScriptImpl;
import games.stendhal.server.entity.player.Player;
import java.util.List;
/**
* Alters the state of a quest of a player.
*
* @author hendrik
*/
public class AlterQuest extends ScriptImpl {
@Override
public void execute(final Player admin, final List<String> args) {
// help text
if (args.size() < 2) {
admin.sendPrivateText("Usage /script AlterQuest.class <player> <questname> <state>. Ommit <state> to remove the quest.");
return;
}
// find player
final StendhalRPRuleProcessor rules = SingletonRepository.getRuleProcessor();
final Player target = rules.getPlayer(args.get(0));
if (target != null) {
// old state
final String questName = args.get(1);
String oldQuestState = null;
if (target.hasQuest(questName)) {
oldQuestState = target.getQuest(questName);
}
// new state (or null to remove the quest)
String newQuestState = null;
if (args.size() > 2) {
newQuestState = args.get(2);
}
// set the quest
target.setQuest(questName, newQuestState);
// notify admin and altered player
target.sendPrivateText("Admin " + admin.getTitle()
+ " changed your state of the quest '" + questName
+ "' from '" + oldQuestState + "' to '" + newQuestState
+ "'");
admin.sendPrivateText("Changed the state of quest '" + questName
+ "' from '" + oldQuestState + "' to '" + newQuestState
+ "'");
} else {
admin.sendPrivateText(args.get(0) + " is not logged in");
}
}
}