summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/012-1/gwendolyn.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/012-1/gwendolyn.txt b/npc/012-1/gwendolyn.txt
index 2314a2300..985eee760 100644
--- a/npc/012-1/gwendolyn.txt
+++ b/npc/012-1/gwendolyn.txt
@@ -212,7 +212,7 @@ L_Game:
.@wdIndex = @returnIndex;
if (is_admin())
- dispbottom str(.@wdY);
+ dispbottom l("@@, @@",.@wdX,.@wdY);
.@wp_sq = (.@wdX * .@wdX) + (.@wdY * .@wdY);
@@ -359,6 +359,13 @@ L_Power:
.@pointX = .@wdX + .@spX;
.@pointY = .@wdY + .@sp;
+ if (is_admin()) {
+ dispbottom l("Wind: @@, @@",.@wdX,.@wdY);
+ dispbottom l("You: @@, @@",.@spX,.@sp);
+ dispbottom l("Final: @@, @@",.@pointX,.@pointY);
+
+ }
+
if( .@pointX==0 && .@pointY==0 )
goto L_Success;
@@ -380,7 +387,7 @@ L_Power:
// 0 is hit
// < 5 is very close
// <17 is close
- // rest is a quite fucking shot
+ // rest is a quite bad shot
.@target_dist_sq = (.@pointX * .@pointX) + (.@pointY*.@pointY);
if (.@target_dist_sq < 5)