Package games.stendhal.server.entity.npc.action

Examples of games.stendhal.server.entity.npc.action.ChangePlayerOutfitAction


        null);

    // Rewards to give to the player if he gives Bobby the balloon
    // NOTE: Also changes the players outfit to get rid of the balloon
    List<ChatAction> reward = new LinkedList<ChatAction>();
    reward.add(new ChangePlayerOutfitAction(balloonList[0], false, false));
    reward.add(new ChangePlayerOutfitAction(balloonList[1], false, false));
    reward.add(new ChangePlayerOutfitAction(balloonList[2], false, false));
    reward.add(new ChangePlayerOutfitAction(balloonList[3], false, false));
    reward.add(new IncreaseXPAction(200));
    reward.add(new IncreaseKarmaAction(50));
    reward.add(new SetQuestAction(QUEST_SLOT,0,"done"));
    reward.add(new IncrementQuestAction(QUEST_SLOT,1,1));
   
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.npc.action.ChangePlayerOutfitAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.