Răsfoiți Sursa

BETA: Minor fixes for [9045]
* Added missing credits for ''mjaniko'' in Q00242.
* Added Social Action missing in Q00247.
* Fix for Barakiel in Q00246, also fixed retail typo in Q00247. Reported by: jurchiks

nonom 12 ani în urmă
părinte
comite
73d53f0c2f

+ 1 - 1
L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00242_PossessorOfAPreciousSoul2/Q00242_PossessorOfAPreciousSoul2.java

@@ -23,7 +23,7 @@ import com.l2jserver.gameserver.model.quest.State;
 /**
  * Possessor Of A PreciousSoul part 2 (242)<br>
  * Original Jython script by disKret
- * @author Joxit
+ * @author mjaniko, Joxit
  */
 public class Q00242_PossessorOfAPreciousSoul2 extends Quest
 {

+ 1 - 1
L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00246_PossessorOfAPreciousSoul3/Q00246_PossessorOfAPreciousSoul3.java

@@ -265,7 +265,7 @@ public class Q00246_PossessorOfAPreciousSoul3 extends Quest
 				break;
 			case BARAKIEL:
 				QuestState pst;
-				if ((player.getParty() != null) && player.getParty().getMembers().isEmpty())
+				if ((player.getParty() != null) && !player.getParty().getMembers().isEmpty())
 				{
 					for (L2PcInstance member : player.getParty().getMembers())
 					{

+ 1 - 1
L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00247_PossessorOfAPreciousSoul4/31740-2.html

@@ -1,5 +1,5 @@
 <html><body>Caradine:<br>
-Soon, you'll meet him. All your questions will be answered and a world of new possibilities will be opened to you.<br>
+Soon, you'll meet her. All your questions will be answered and a world of new possibilities will be opened to you.<br>
 You're not quite ready yet.<br>
 (This quest may only be undertaken by sub-class characters of level 75 or above.)
 </body></html>

+ 1 - 1
L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00247_PossessorOfAPreciousSoul4/31740-6.html

@@ -1,4 +1,4 @@
 <html><body>Caradine:<br>
-You haven't met him yet, have you? He's waiting! Go to him! Now, close your eyes...<br>
+You haven't met her yet, have you? She's waiting! Go to her! Now, close your eyes...<br>
 <a action="bypass -h Quest Q00247_PossessorOfAPreciousSoul4 31740-5.html">"I'm ready."</a>
 </body></html>

+ 5 - 0
L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00247_PossessorOfAPreciousSoul4/Q00247_PossessorOfAPreciousSoul4.java

@@ -14,12 +14,14 @@
  */
 package quests.Q00247_PossessorOfAPreciousSoul4;
 
+import com.l2jserver.gameserver.datatables.SkillTable;
 import com.l2jserver.gameserver.model.Location;
 import com.l2jserver.gameserver.model.actor.L2Npc;
 import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
 import com.l2jserver.gameserver.model.quest.Quest;
 import com.l2jserver.gameserver.model.quest.QuestState;
 import com.l2jserver.gameserver.model.quest.State;
+import com.l2jserver.gameserver.network.serverpackets.SocialAction;
 
 /**
  * Possessor Of A PreciousSoul part 4 (247)<br>
@@ -69,6 +71,9 @@ public class Q00247_PossessorOfAPreciousSoul4 extends Quest
 					player.setNoble(true);
 					st.addExpAndSp(93836, 0);
 					st.giveItems(NOBLESS_TIARA, 1);
+					npc.setTarget(player);
+					npc.doCast(SkillTable.getInstance().getInfo(4339, 1));
+					player.sendPacket(new SocialAction(player.getObjectId(), 3));
 					st.exitQuest(false, true);
 				}
 				break;