diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-03-31 23:19:11 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-03-31 23:19:11 +0000 |
commit | 7e9bb1451b05480f30be2edfd0b19e7b1e487932 (patch) | |
tree | 7195e8d7f13ae24f5e13dffbde731c215507af4b | |
parent | 5b1c1c9a4f3d165942b26a39a292a8c71d869df1 (diff) | |
download | manaserv-7e9bb1451b05480f30be2edfd0b19e7b1e487932.tar.gz manaserv-7e9bb1451b05480f30be2edfd0b19e7b1e487932.tar.bz2 manaserv-7e9bb1451b05480f30be2edfd0b19e7b1e487932.tar.xz manaserv-7e9bb1451b05480f30be2edfd0b19e7b1e487932.zip |
Removed the +100 offset of NPC IDs (relict from eAthena)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | data/test.lua | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2008-03-31 Philipp Sehmisch <tmw@crushnet.org> + + * data/test.lua: Removed the +100 offset of NPC IDs (relict from + eAthena) + 2008-03-25 Philipp Sehmisch <tmw@crushnet.org> * data/test.lua, data/scripts/npclib.lua: Added a Lua library with diff --git a/data/test.lua b/data/test.lua index 70c0b66f..2097c69a 100644 --- a/data/test.lua +++ b/data/test.lua @@ -5,10 +5,10 @@ require "data/scripts/npclib" atinit(function() - create_npc(110, 50 * 32 + 16, 19 * 32 + 16, npc1_talk, npclib.walkaround_small) - create_npc(108, 51 * 32 + 16, 25 * 32 + 16, npc4_talk, npclib.walkaround_wide) - create_npc(126, 45 * 32 + 16, 25 * 32 + 16, npc5_talk, npclib.walkaround_map) - create_npc(122, 58 * 32 + 16, 15 * 32 + 16, npc6_talk, nil) + create_npc(100, 50 * 32 + 16, 19 * 32 + 16, npc1_talk, npclib.walkaround_small) + create_npc(101, 51 * 32 + 16, 25 * 32 + 16, npc4_talk, npclib.walkaround_wide) + create_npc(26, 45 * 32 + 16, 25 * 32 + 16, npc5_talk, npclib.walkaround_map) + create_npc(22, 58 * 32 + 16, 15 * 32 + 16, npc6_talk, nil) end) function npc1_talk(npc, ch) |