diff --git a/L2J_DataPack_BETA/dist/game/data/scripts.cfg b/L2J_DataPack_BETA/dist/game/data/scripts.cfg
index 643a5efa407a78d372f53b5637f0e31fe5146ad2..63294173444c55aa4d2c18e997039914b4b6e50e 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts.cfg
+++ b/L2J_DataPack_BETA/dist/game/data/scripts.cfg
@@ -425,7 +425,7 @@ quests/Q00278_HomeSecurity/Q00278_HomeSecurity.java
 quests/Q00279_TargetOfOpportunity/Q00279_TargetOfOpportunity.java
 quests/Q00280_TheFoodChain/Q00280_TheFoodChain.java
 quests/Q00281_HeadForTheHills/Q00281_HeadForTheHills.java
-quests/283_TheFewTheProudTheBrave/__init__.py
+quests/Q00283_TheFewTheProudTheBrave/Q00283_TheFewTheProudTheBrave.java
 quests/284_MuertosFeather/__init__.py
 quests/286_FabulousFeathers/__init__.py
 quests/Q00287_FiguringItOut/Q00287_FiguringItOut.java
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-03.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-03.htm
deleted file mode 100644
index d4a2a629e38e6cf83f91b3cf16feb6a5d6a3a5a0..0000000000000000000000000000000000000000
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-03.htm
+++ /dev/null
@@ -1,4 +0,0 @@
-<html><body>Vice Hierarch Perwan:<br>
-I knew I could entrust you with this mission! Now listen carefully. Kill the Crimson Spiders, no matter how many you find. Collect <font color="LEVEL">Crimson Spider Claws</font> as proof. The <font color="LEVEL">Crimson Spiders</font> have been seen recently in Mimir's Forest, but they also live in other habitats.<br>
-Good luck.
-</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-04.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-04.htm
deleted file mode 100644
index 076320d8694568c3b5a404734640c6cec6a37d26..0000000000000000000000000000000000000000
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-04.htm
+++ /dev/null
@@ -1,4 +0,0 @@
-<html><body>Vice Hierarch Perwan:<br>
-Hae you really defeated the Crimson Spiders? If so, you should have brought their claws as proof... If you forgot to do so, go back to Mimir's Forest and collect them now.<br>
-But if you are lying to me, stop now!
-</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/__init__.py b/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/__init__.py
deleted file mode 100644
index 43afef2893604cce1c17c92629c02afc296bc848..0000000000000000000000000000000000000000
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/__init__.py
+++ /dev/null
@@ -1,83 +0,0 @@
-# Contributed by t0rm3nt0r (tormentor2000@mail.ru) to the Official L2J Datapack Project.
-# Visit http://www.l2jdp.com/forum/ for more details.
-
-import sys
-from com.l2jserver.gameserver.model.quest import State
-from com.l2jserver.gameserver.model.quest import QuestState
-from com.l2jserver.gameserver.model.quest import Quest as JQuest
-
-qn = "283_TheFewTheProudTheBrave"
-
-#NPC'S
-PERWAN = 32133
-
-#ITEM'S
-CLAW = 9747
-
-#MOB'S
-SPIDER = 22244
-
-class Quest (JQuest) :
-
- def __init__(self,id,name,descr):
-     JQuest.__init__(self,id,name,descr)
-  
- def onAdvEvent (self,event,npc, player) :
-     htmltext = event
-     st = player.getQuestState(qn)
-     if not st : return
-     claw = st.getQuestItemsCount(CLAW)
-     if event == "32133-03.htm" :
-       st.set("cond","1")
-       st.setState(State.STARTED)
-       st.playSound("ItemSound.quest_accept")
-     elif event == "32133-06.htm" :
-       reward = 0
-       if claw >= 20:
-          reward = 2187
-       st.giveItems(57,claw*45+reward)
-       st.takeItems(CLAW,-1)
-     elif event == "32133-08.htm" :
-       st.takeItems(CLAW,-1)
-       st.exitQuest(1)
-     return htmltext
-
- def onTalk (self,npc,player):
-     npcId = npc.getId()
-     htmltext = Quest.getNoQuestMsg(player)
-     st = player.getQuestState(qn)
-     if not st : return htmltext
-     id = st.getState()
-     cond = st.getInt("cond")
-     claw = st.getQuestItemsCount(CLAW)
-     if id == State.CREATED and npcId == PERWAN :
-       if player.getLevel() < 15 :
-         htmltext = "32133-02.htm"
-         st.exitQuest(1)
-       else :
-         htmltext = "32133-01.htm"
-     elif id == State.STARTED and npcId == PERWAN :
-       if not claw :
-         htmltext = "32133-04.htm"
-       else :
-         htmltext = "32133-05.htm"
-     return htmltext
-    
- def onKill(self,npc,player,isPet) :
-     st = player.getQuestState(qn)
-     if not st: return
-     if st.getState() == State.STARTED :
-       npcId = npc.getId()
-       chance = self.getRandom(100)
-       if (npcId == SPIDER) and (chance < 35) : #Retail statistic info. 64 mob's - 22 claw
-         st.giveItems(CLAW,1)
-         st.playSound("ItemSound.quest_itemget")
-     return
-
-QUEST       = Quest(283, qn, "The Few, The Proud, The Brave")
-
-QUEST.addStartNpc(PERWAN)
-
-QUEST.addTalkId(PERWAN)
-
-QUEST.addKillId(SPIDER)
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-01.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-01.htm
similarity index 74%
rename from L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-01.htm
rename to L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-01.htm
index 9e0f92f31cf0e89e44685813660b92892d2b3761..1e24b925bbd50578aa9301acf41c9a67f31aab4d 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-01.htm
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-01.htm
@@ -1,6 +1,6 @@
-<html><body>Vice Hierarch Perwan:<br>
-The moment you entered, your determination shone forth like a bright blade. I have a task perfectly suited for your abilities.<br>
-Recently, I received a report that many people have been attacked by Crimson Spiders near Mimir's Forest. Since the road that connects the town and Nornil's Cave runs trough the forest, we cannot simply close it to traffic.<br>
-We must clear out the Crimson Spiders, and I am responsible for recruiting people for a militia in order to do so. I think you would be a great help to the effort -- will you do it? Naturally, if you capture the Crimson Spiders, you will receive a generous reward...<br>
-<a action="bypass -h Quest 283_TheFewTheProudTheBrave 32133-03.htm">Say that you will help.</a>
+<html><body>Vice Hierarch Perwan:<br>
+The moment you entered, your determination shone forth like a bright blade. I have a task perfectly suited for your abilities.<br>
+Recently, I received a report that many people have been attacked by Crimson Spiders near Mimir's Forest. Since the road that connects the town and Nornil's Cave runs through the forest, we cannot simply close it to traffic.<br>
+We must clear out the Crimson Spiders, and I am responsible for recruiting people for a militia in order to do so. I think you would be a great help to the effort -- will you do it? Naturally, if you capture the Crimson Spiders, you will receive a generous reward...<br>
+<a action="bypass -h Quest Q00283_TheFewTheProudTheBrave 32133-03.htm">Say that you will help.</a>
 </body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-02.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-02.htm
similarity index 80%
rename from L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-02.htm
rename to L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-02.htm
index 82f18f2c180e0c79ca5ec9e2d79fdeb16e46efb5..29953ff82de55701ab380288428eb648a0534eab 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-02.htm
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-02.htm
@@ -1,6 +1,6 @@
-<html><body>Vice Hierarch Perwan:<br>
-I will pose you this question: Suppose you find yourself in a precarious sitution; what is your most effective weapon? Power? Experience? Skill? Very important, all of them.<br>
-But think of something even more essential for victory. Courage! That is the mark of the true Warrior. As it happens, I have a mission that will require someone with exceptional courage.<br>
-Hmm... I do not think you are yet ready. Perhaps with more training... Why don't you come back and see me then?<br>
-(Only characters level 15 and above are permitted to embark on this quest.)
+<html><body>Vice Hierarch Perwan:<br>
+I will pose you this question: Suppose you find yourself in a precarious situation; what is your most effective weapon? Power? Experience? Skill? Very important, all of them.<br>
+But think of something even more essential for victory. Courage! That is the mark of the true Warrior. As it happens, I have a mission that will require someone with exceptional courage.<br>
+Hmm... I do not think you are yet ready. Perhaps with more training... Why don't you come back and see me then?<br>
+(Only characters level 15 and above are permitted to embark on this quest.)
 </body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-03.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-03.htm
new file mode 100644
index 0000000000000000000000000000000000000000..9b13fcb8a96caeb3196e5559f8832f282e80e0fd
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-03.htm
@@ -0,0 +1,4 @@
+<html><body>Vice Hierarch Perwan:<br>
+I knew I could entrust you with this mission! Now listen carefully. Kill the Crimson Spiders, no matter how many you find. Collect the <font color="LEVEL">Crimson Spider Claws</font> as proof. The <font color="LEVEL">Crimson Spiders</font> have been seen recently in Mimir's Forest, but they also live in other habitats.<br>
+Good luck!
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-05.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-04.html
similarity index 64%
rename from L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-05.htm
rename to L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-04.html
index e48b44abc16449777a333dd252346bd7d87c779f..1ac85896c4425fd12ed186f160282607da8d68bf 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-05.htm
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-04.html
@@ -1,4 +1,4 @@
-<html><body>Vice Hierarch Perwan:<br>
-Battle trophies are worth a thousand war stories. So it is with this mission. Prove your bravery and skill with some evidence of your victory.<br>
-<a action="bypass -h Quest 283_TheFewTheProudTheBrave 32133-06.htm">Show him the Crimson Spider Claws.</a>
+<html><body>Vice Hierarch Perwan:<br>
+Battle trophies are worth a thousand war stories. So it is with this mission. Prove your bravery and skill with some evidence of your victory.<br>
+<a action="bypass -h Quest Q00283_TheFewTheProudTheBrave 32133-08.html">Show him the Crimson Spider Claws.</a>
 </body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-05.html b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-05.html
new file mode 100644
index 0000000000000000000000000000000000000000..77466007bc610a5c607a3af5358ebce822f861ed
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-05.html
@@ -0,0 +1,4 @@
+<html><body>Vice Hierarch Perwan:<br>
+Have you really defeated the Crimson Spiders? If so, you should have brought their claws as proof... If you forgot to do so, go back to Mimir's Forest and collect them now.<br>
+But if you are lying to me, stop now!
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-07.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-06.html
similarity index 99%
rename from L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-07.htm
rename to L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-06.html
index 7f79ec4b4606f0934faa5bffcc4bd918adf5e6bb..f4697f8e1c8bb86d29cdb2b5205f7cdecdc989f9 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-07.htm
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-06.html
@@ -1,3 +1,3 @@
-<html><body>Vice Hierarch Perwan:<br>
-Oh, you will continue the mission? That is what I had hoped to hear! Return then to Mimir's Forest and continue to slay the Crimson Spiders you find there. Bring back their claws as proof of your victory.
+<html><body>Vice Hierarch Perwan:<br>
+Oh, you will continue the mission? That is what I had hoped to hear! Return then to Mimir's Forest and continue to slay the Crimson Spiders you find there. Bring back their claws as proof of your victory.
 </body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-07.html b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-07.html
new file mode 100644
index 0000000000000000000000000000000000000000..0d07685f70b8a52a1b3dff5162021e4a7bf0a011
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-07.html
@@ -0,0 +1,4 @@
+<html><body>Vice Hierarch Perwan:<br>
+Have you really defeated the Crimson Spiders? If so, you should have brought their claws as proof... If you forgot to do so, go back to Mimir's Forest and collect them now.<br>
+But if you are lying to me, stop now!
+</body></html>
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-06.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-08.html
similarity index 60%
rename from L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-06.htm
rename to L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-08.html
index 81fa68f1f81f0f4ec2d29ef3d19cd1d1d32545e9..3d4aecb1a86d565e79c9cbbe5056016768512224 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-06.htm
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-08.html
@@ -1,6 +1,6 @@
-<html><body>Vice Hierarch Perwan:<br>
-Well done. You carried out your mission admirably. You have justified my faith in you as a powerful warrior!<br>
-Will you continue with this mission? You have certainly proved your skill. If your circumstances will not permit it, however...<br>
-<a action="bypass -h Quest 283_TheFewTheProudTheBrave 32133-07.htm">"I will continue."</a><br>
-<a action="bypass -h Quest 283_TheFewTheProudTheBrave 32133-08.htm">"I want to quit."</a>
+<html><body>Vice Hierarch Perwan:<br>
+Well done. You carried out your mission admirably. You have justified my faith in you as a powerful warrior!<br>
+Will you continue with this mission? You have certainly proved your skill. If your circumstances will not permit it, however...<br>
+<a action="bypass -h Quest Q00283_TheFewTheProudTheBrave 32133-06.html">"I will continue."</a><br>
+<a action="bypass -h Quest Q00283_TheFewTheProudTheBrave 32133-09.html">"I want to quit."</a>
 </body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-08.htm b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-09.html
similarity index 91%
rename from L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-08.htm
rename to L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-09.html
index 5a1e678c9615330669515bc86acdcb141fd03bce..35f3f122cfc7641034811f4c7c71529a5bfe3898 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/283_TheFewTheProudTheBrave/32133-08.htm
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/32133-09.html
@@ -1,3 +1,3 @@
-<html><body>Vice Hierarch Perwan:<br>
-You seem to have more pressing matters to attend to, so I will not stop you. But should you ever wish to test your courage, come back to me.
-</body></html>
\ No newline at end of file
+<html><body>Vice Hierarch Perwan:<br>
+You seem to have more pressing matters to attend to, so I will not stop you. But should you ever wish to test your courage, come back to me.
+</body></html>
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/Q00283_TheFewTheProudTheBrave.java b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/Q00283_TheFewTheProudTheBrave.java
new file mode 100644
index 0000000000000000000000000000000000000000..07c93b5537033d6ddd6890f7eb038fe06354839e
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00283_TheFewTheProudTheBrave/Q00283_TheFewTheProudTheBrave.java
@@ -0,0 +1,145 @@
+/*
+ * Copyright (C) 2004-2013 L2J DataPack
+ * 
+ * This file is part of L2J DataPack.
+ * 
+ * L2J DataPack 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 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * L2J DataPack is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package quests.Q00283_TheFewTheProudTheBrave;
+
+import quests.Q00261_CollectorsDream.Q00261_CollectorsDream;
+
+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;
+
+/**
+ * The Few, The Proud, The Brave (283)
+ * @author xban1x
+ */
+public final class Q00283_TheFewTheProudTheBrave extends Quest
+{
+	// NPC
+	private static final int PERWAN = 32133;
+	// Item
+	private static final int CRIMSON_SPIDER_CLAW = 9747;
+	// Monster
+	private static final int CRIMSON_SPIDER = 22244;
+	// Misc
+	private static final int CLAW_PRICE = 45;
+	private static final int BONUS = 2187;
+	private static final int MIN_LVL = 15;
+	
+	private Q00283_TheFewTheProudTheBrave()
+	{
+		super(283, Q00283_TheFewTheProudTheBrave.class.getSimpleName(), "The Few, The Proud, The Brave");
+		addKillId(CRIMSON_SPIDER);
+		addStartNpc(PERWAN);
+		addTalkId(PERWAN);
+		registerQuestItems(CRIMSON_SPIDER_CLAW);
+	}
+	
+	@Override
+	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
+	{
+		final QuestState st = player.getQuestState(getName());
+		String htmltext = null;
+		if (st == null)
+		{
+			return htmltext;
+		}
+		
+		switch (event)
+		{
+			case "32133-03.htm":
+			{
+				st.startQuest();
+				htmltext = event;
+				break;
+			}
+			case "32133-06.html":
+			{
+				htmltext = event;
+				break;
+			}
+			case "32133-08.html":
+			{
+				if (st.hasQuestItems(CRIMSON_SPIDER_CLAW))
+				{
+					final long claws = st.getQuestItemsCount(CRIMSON_SPIDER_CLAW);
+					st.giveAdena((claws * CLAW_PRICE) + ((claws >= 10) ? BONUS : 0), true);
+					st.takeItems(CRIMSON_SPIDER_CLAW, -1);
+					Q00261_CollectorsDream.giveNewbieReward(player);
+					htmltext = event;
+				}
+				else
+				{
+					htmltext = "32133-07.html";
+				}
+				break;
+			}
+			case "32133-09.html":
+			{
+				st.exitQuest(true, true);
+				htmltext = event;
+				break;
+			}
+		}
+		return htmltext;
+	}
+	
+	@Override
+	public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
+	{
+		final QuestState st = getRandomPartyMemberState(killer, -1, 3, npc);
+		if (st != null)
+		{
+			st.giveItemRandomly(npc, CRIMSON_SPIDER_CLAW, 1, 0, 0.6, true);
+		}
+		return super.onKill(npc, killer, isSummon);
+	}
+	
+	@Override
+	public String onTalk(L2Npc npc, L2PcInstance talker)
+	{
+		final QuestState st = talker.getQuestState(getName());
+		String htmltext = getNoQuestMsg(talker);
+		if (st == null)
+		{
+			return htmltext;
+		}
+		
+		switch (st.getState())
+		{
+			case State.CREATED:
+			{
+				htmltext = (talker.getLevel() >= MIN_LVL) ? "32133-01.htm" : "32133-02.htm";
+				break;
+			}
+			case State.STARTED:
+			{
+				htmltext = st.hasQuestItems(CRIMSON_SPIDER_CLAW) ? "32133-04.html" : "32133-05.html";
+				break;
+			}
+		}
+		return htmltext;
+	}
+	
+	public static void main(String[] args)
+	{
+		new Q00283_TheFewTheProudTheBrave();
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/sql/game/updates/20131023update.sql b/L2J_DataPack_BETA/dist/sql/game/updates/20131023update.sql
new file mode 100644
index 0000000000000000000000000000000000000000..3e8701a42bfcab94d86dabf1d76f852d3c85b39c
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/sql/game/updates/20131023update.sql
@@ -0,0 +1 @@
+UPDATE character_quests SET name='Q00283_TheFewTheProudTheBrave' WHERE name='283_TheFewTheProudTheBrave';
\ No newline at end of file