diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-08-28 18:59:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-09-17 08:41:51 -0300 |
commit | efd39c9c4e7d69946fceb9da86813daac8229fe8 (patch) | |
tree | f8ad78a39a75ad37cccc1d51f378079930c26577 | |
parent | 6b56fece6a72c14dc64baea39ed3d51f88e4189a (diff) | |
download | serverdata-efd39c9c4e7d69946fceb9da86813daac8229fe8.tar.gz serverdata-efd39c9c4e7d69946fceb9da86813daac8229fe8.tar.bz2 serverdata-efd39c9c4e7d69946fceb9da86813daac8229fe8.tar.xz serverdata-efd39c9c4e7d69946fceb9da86813daac8229fe8.zip |
The NPC ID is fine
-rw-r--r-- | npc/008-1-1/cutscene.txt | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/008-1-1/cutscene.txt b/npc/008-1-1/cutscene.txt index d5116cc0..a85bd3a5 100644 --- a/npc/008-1-1/cutscene.txt +++ b/npc/008-1-1/cutscene.txt @@ -47,9 +47,16 @@ OnBegin: setpcblock(PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_USEITEM|PCBLOCK_MOVE, true); sc_start(SC_STUN, 360000, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK); + // Begin moving Morcant + debugmes "Original ID %d, Duplicate ID %d", + getnpcid("Morcant"), getnpcid(.@mc$); // FIXME + getmapxy(.@ma$, .@xa, .@ya, UNITTYPE_NPC, .@mc$); // FIXME + debugmes "%s (ID %d) (%s %d,%d)", .@mc$, getnpcid(.@mc$), + .@ma$, .@xa, .@ya; // FIXME + unitwalk(getnpcid(.@mc$), 58, 64); sleep2(3000); - getmapxy(.@ma$, .@xa, .@ya, UNITTYPE_NPC, .@mc$); - debugmes "%s (%s %d,%d)", .@mc$, .@ma$, .@xa, .@ya; + getmapxy(.@ma$, .@xa, .@ya, UNITTYPE_NPC, .@mc$); // FIXME + debugmes "%s (%s %d,%d)", .@mc$, .@ma$, .@xa, .@ya; // FIXME getmapxy(.@m$, .@x, .@y, 0); unitwalk(getnpcid(.@mc$), .@x+1, .@y); sleep2(1000); |