From 7c6c2416bc152de0758d7441a373e260b40c4d5b Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 27 Sep 2015 19:06:59 +0300 Subject: Replace getnpcdir and setnpcdir with one or zero parameters to variable '.dir'. --- npc/functions/hammocks.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'npc/functions/hammocks.txt') diff --git a/npc/functions/hammocks.txt b/npc/functions/hammocks.txt index 79b9328d..8e1c2fec 100644 --- a/npc/functions/hammocks.txt +++ b/npc/functions/hammocks.txt @@ -10,7 +10,7 @@ function script hamTouchLeft { if (getareausers() <= 1) { - setnpcdir 0; + .dir = 0; stopnpctimer; initnpctimer; } @@ -20,7 +20,7 @@ function script hamTouchLeft { function script hamUnTouch { if (getareausers() == 0) { - setnpcdir 2; + .dir = 2; initnpctimer; startnpctimer; } @@ -29,14 +29,14 @@ function script hamUnTouch { function script hamTimerLeft { stopnpctimer; - if (getnpcdir() == 2) setnpcdir 0; + if (.dir == 2) .dir = 0; end; } function script hamTouchRight { if (getareausers() <= 1) { - setnpcdir 0; + .dir = 0; stopnpctimer; initnpctimer; } @@ -45,6 +45,6 @@ function script hamTouchRight { function script hamTimerRight { stopnpctimer; - if (getnpcdir() == 2) setnpcdir 0; + if (.dir == 2) .dir = 0; end; } -- cgit v1.2.3-60-g2f50