From 066fd0e4c1dcb617ebbd6b5ee152897471038b2f Mon Sep 17 00:00:00 2001
From: jesusalva <cpntb1@ymail.com>
Date: Wed, 14 Feb 2018 18:37:57 -0200
Subject: Test and fix remaining issues at Vincent

---
 npc/005-1/vincent.txt | 28 ++++++++++++++++++----------
 1 file changed, 18 insertions(+), 10 deletions(-)

(limited to 'npc')

diff --git a/npc/005-1/vincent.txt b/npc/005-1/vincent.txt
index e990757cf..3d6519615 100644
--- a/npc/005-1/vincent.txt
+++ b/npc/005-1/vincent.txt
@@ -5,11 +5,11 @@
 //    CandorQuests_Vincent  - quest var
 
 
-005-1,92,95,0	script	Vincent	NPC_MONA,{
+005-1,92,95,0	script	Vincent	NPC_PLAYER,{
 
 
-    .BaitID = BugLeg;
-    .BaitCount = 12;
+    .LegsID = BugLeg;
+    .LegsCount = 12;
 
     .@q = getq(CandorQuests_Vincent);
     if (.@q == 1) goto L_CheckItems;
@@ -17,7 +17,7 @@
 
     speech S_LAST_BLANK_LINE,
         l("I made a figurin with Bug legs."),
-        lg("Be a friend and bring me @@ @@.", "Be a friend and bring me @@ @@.", .BaitCount, getitemlink(.BaitID));
+        lg("Be a friend and bring me @@ @@.", "Be a friend and bring me @@ @@.", .LegsCount, getitemlink(.LegsID));
 
     switch (select(l("Ok, I'll be back in no time."),
                    l("Sorry, I'm doing other things at the moment.")))
@@ -29,23 +29,24 @@
             close;
         case 2:
             speech S_FIRST_BLANK_LINE,
-                l("But I'm almost out of @@...", getitemlink(.BaitID));
+                l("But I'm almost out of @@...", getitemlink(.LegsID));
             close;
     }
 
 L_CheckItems:
-    if (countitem(.BaitID) < .BaitCount)
+    if (countitem(.LegsID) < .LegsCount)
     {
         speech
             l("Sorry, but you don't have what I need."),
-            l("I need @@ @@.", .BaitCount, getitemlink(.BaitID));
+            l("I need @@ @@.", .LegsCount, getitemlink(.LegsID));
         close;
     }
 
     speech
-        l("That's exactly what I needed!");
+        l("That's exactly what I needed!"),
+        l("I will be forever grateful!");
 
-    delitem .BaitID, .BaitCount;
+    delitem .LegsID, .LegsCount;
     Zeny = Zeny + 1000;
     message strcharinfo(0), l("You receive @@ GP!", 1000);
     setq CandorQuests_Vincent, 2;
@@ -58,7 +59,14 @@ L_QuestDone:
     close;
 
 OnInit:
+    .@npcId = getnpcid(0, .name$);
+    setunitdata(.@npcId, UDT_HEADMIDDLE, 1300);
+    setunitdata(.@npcId, UDT_HEADBOTTOM, 2200);
+    setunitdata(.@npcId, UDT_WEAPON, 1800);
+    setunitdata(.@npcId, UDT_HAIRSTYLE, 25);
+    setunitdata(.@npcId, UDT_HAIRCOLOR, 4);
+
     .sex = G_MALE;
-    .distance = 3;
+    .distance = 5;
     end;
 }
-- 
cgit v1.2.3-70-g09d2