summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-13 01:31:56 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-13 01:31:56 -0300
commit571f1639020bd6044c8b167feaa94df64782b16d (patch)
tree9433a8eddcf542f60ecf88016588dfe2fcd63bb4 /npc
parentd49e781b06a4fbc2dde5b5fd7614ae828e995273 (diff)
downloadserverdata-571f1639020bd6044c8b167feaa94df64782b16d.tar.gz
serverdata-571f1639020bd6044c8b167feaa94df64782b16d.tar.bz2
serverdata-571f1639020bd6044c8b167feaa94df64782b16d.tar.xz
serverdata-571f1639020bd6044c8b167feaa94df64782b16d.zip
[skip ci] moar fixes %%e
Diffstat (limited to 'npc')
-rw-r--r--npc/017-4/pyndragon.txt2
-rw-r--r--npc/functions/refine.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/017-4/pyndragon.txt b/npc/017-4/pyndragon.txt
index 30d5b5ee7..6d125d7f3 100644
--- a/npc/017-4/pyndragon.txt
+++ b/npc/017-4/pyndragon.txt
@@ -132,7 +132,7 @@ L_Close:
OnInit:
.@npcId = getnpcid(0, .name$);
setunitdata(.@npcId, UDT_HEADTOP, WarlordHelmet);
- setunitdata(.@npcId, UDT_HEADMIDDLE, LightPlatemail);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, GoldenWarlordPlate);
setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes);
setunitdata(.@npcId, UDT_WEAPON, BromenalPants);
setunitdata(.@npcId, UDT_HAIRSTYLE, 2);
diff --git a/npc/functions/refine.txt b/npc/functions/refine.txt
index 231fb9304..6e4a1db27 100644
--- a/npc/functions/refine.txt
+++ b/npc/functions/refine.txt
@@ -22,7 +22,7 @@ function script refineMaster {
// Dark magic from hercules used, take care
menuint
l("Nothing, thanks"), 0,
- rif(getequipisequiped(EQI_HEAD_MID), l("My chestplate, @@", getequipname(EQI_ARMOR))), EQI_ARMOR,
+ rif(getequipisequiped(EQI_HEAD_MID), l("My chestplate, @@", getequipname(EQI_HEAD_MID))), EQI_HEAD_MID,
rif(getequipisequiped(EQI_HAND_R), l("My weapon, @@", getequipname(EQI_HAND_R))), EQI_HAND_R,
l("Definitive item break? Too dangerous! I don't want it!!"), 0;
@@ -89,7 +89,7 @@ function script refineMaster {
}
mesn;
mesq l("This @@ is a nice stuff. I can refine it for @@ GP and @@ @@.", getitemlink(.@item), .@price, .@amount, getitemlink(.@rg));
- mesc l("Success ratio is of aprox. @@ %%", (100-(.@rlv*7))+rand(-6,6));
+ mesc l("Success ratio is of aprox. @@ %", (100-(.@rlv*7))+rand(-6,6));
next;
if (askyesno() != ASK_YES)
close;