summaryrefslogtreecommitdiff
path: root/npc/000-2-2/ratto.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-23 21:33:50 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-23 21:33:50 +0300
commit9e21ee2545fbb8e16e60f5862c8f9da41d1bccc8 (patch)
tree3df9928102333b7e7a2450e0127dfc02580549de /npc/000-2-2/ratto.txt
parentef5ce2b6f058908cb0de5e1012df7bebec163d90 (diff)
downloadserverdata-9e21ee2545fbb8e16e60f5862c8f9da41d1bccc8.tar.gz
serverdata-9e21ee2545fbb8e16e60f5862c8f9da41d1bccc8.tar.bz2
serverdata-9e21ee2545fbb8e16e60f5862c8f9da41d1bccc8.tar.xz
serverdata-9e21ee2545fbb8e16e60f5862c8f9da41d1bccc8.zip
fix conversion into context temp variables.
Diffstat (limited to 'npc/000-2-2/ratto.txt')
-rw-r--r--npc/000-2-2/ratto.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/npc/000-2-2/ratto.txt b/npc/000-2-2/ratto.txt
index 598df365..1daca2e4 100644
--- a/npc/000-2-2/ratto.txt
+++ b/npc/000-2-2/ratto.txt
@@ -6,7 +6,7 @@
// Description:
// Ratto killer.
-// $.@RAT_SAILOR_CONTROL array explanation:
+// $@RAT_SAILOR_CONTROL array explanation:
// [1] = Shows status of ratto number 1 (1 is dead and 0 is alive).
// [2] = Shows status of ratto number 2 (1 is dead and 0 is alive).
// [3] = Shows status of ratto number 3 (1 is dead and 0 is alive).
@@ -29,41 +29,41 @@ OnSpawn:
OnRatto1Respawn:
areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto1Death";
- set $.@RAT_SAILOR_CONTROL[1], 0;
- set $.@RAT_SAILOR_CONTROL[5], 0;
+ set $@RAT_SAILOR_CONTROL[1], 0;
+ set $@RAT_SAILOR_CONTROL[5], 0;
end;
OnRatto2Respawn:
areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto2Death";
- set $.@RAT_SAILOR_CONTROL[2], 0;
- set $.@RAT_SAILOR_CONTROL[6], 0;
+ set $@RAT_SAILOR_CONTROL[2], 0;
+ set $@RAT_SAILOR_CONTROL[6], 0;
end;
OnRatto3Respawn:
areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto3Death";
- set $.@RAT_SAILOR_CONTROL[3], 0;
- set $.@RAT_SAILOR_CONTROL[7], 0;
+ set $@RAT_SAILOR_CONTROL[3], 0;
+ set $@RAT_SAILOR_CONTROL[7], 0;
end;
OnRatto4Respawn:
areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto4Death";
- set $.@RAT_SAILOR_CONTROL[4], 0;
- set $.@RAT_SAILOR_CONTROL[8], 0;
+ set $@RAT_SAILOR_CONTROL[4], 0;
+ set $@RAT_SAILOR_CONTROL[8], 0;
end;
OnRatto1Death:
- set $.@RAT_SAILOR_CONTROL[1], 1;
+ set $@RAT_SAILOR_CONTROL[1], 1;
end;
OnRatto2Death:
- set $.@RAT_SAILOR_CONTROL[2], 1;
+ set $@RAT_SAILOR_CONTROL[2], 1;
end;
OnRatto3Death:
- set $.@RAT_SAILOR_CONTROL[3], 1;
+ set $@RAT_SAILOR_CONTROL[3], 1;
end;
OnRatto4Death:
- set $.@RAT_SAILOR_CONTROL[4], 1;
+ set $@RAT_SAILOR_CONTROL[4], 1;
end;
}