diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-09 18:05:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-09 18:05:01 -0300 |
commit | ff0174f4c886f3f53386e8e0ee7adec421c351f4 (patch) | |
tree | fba2936ac000dd8245c36bf0894e33ceda93ba68 | |
parent | 76b00a6d3b5d601338e2db3885e84ac29862babb (diff) | |
download | serverdata-ff0174f4c886f3f53386e8e0ee7adec421c351f4.tar.gz serverdata-ff0174f4c886f3f53386e8e0ee7adec421c351f4.tar.bz2 serverdata-ff0174f4c886f3f53386e8e0ee7adec421c351f4.tar.xz serverdata-ff0174f4c886f3f53386e8e0ee7adec421c351f4.zip |
Fix map cache for 032-1 and the NPC_MOUBOOTAUR placeholder
-rw-r--r-- | maps/re/032-1.mcache | bin | 2009 -> 2081 bytes | |||
-rw-r--r-- | npc/032-1/episode.txt | 44 |
2 files changed, 40 insertions, 4 deletions
diff --git a/maps/re/032-1.mcache b/maps/re/032-1.mcache Binary files differindex 104618c17..e7998ac74 100644 --- a/maps/re/032-1.mcache +++ b/maps/re/032-1.mcache diff --git a/npc/032-1/episode.txt b/npc/032-1/episode.txt index e0d322287..bd0cb00dd 100644 --- a/npc/032-1/episode.txt +++ b/npc/032-1/episode.txt @@ -25,38 +25,74 @@ OnTouch: end; } -032-1,68,54,0 script Adrian NPC_MOUBOOTAUR,{ +032-1,68,54,0 script Adrian NPC_PLAYER,{ npctalk3 l("Hi. Are you here to get luggage?"); end; OnInit: + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADTOP, SailorHat); + setunitdata(.@npcId, UDT_HEADMIDDLE, SilkRobe); + //setunitdata(.@npcId, UDT_HEADBOTTOM, LeatherTrousers); // TODO + setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); + setunitdata(.@npcId, UDT_HAIRSTYLE, 21); + setunitdata(.@npcId, UDT_HAIRCOLOR, 11); + + .sex = G_MALE; .distance=5; end; } -032-1,45,36,0 script Marikel NPC_MOUBOOTAUR,{ +032-1,45,36,0 script Marikel NPC_PLAYER,{ npctalk3 l("Hi. Working on the docks can be hard, but I'm glad I at least get to eat!"); end; OnInit: + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADTOP, SailorHat); + setunitdata(.@npcId, UDT_HEADMIDDLE, SailorShirt); + setunitdata(.@npcId, UDT_HEADBOTTOM, LeatherTrousers); // TODO + setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); + setunitdata(.@npcId, UDT_HAIRSTYLE, 21); + setunitdata(.@npcId, UDT_HAIRCOLOR, 11); + + .sex = G_MALE; .distance=5; end; } -032-1,75,46,0 script Joelin NPC_MOUBOOTAUR,{ +032-1,75,46,0 script Joelin NPC_FEMALE,{ npctalk3 l("Hi. My ship is about to set sail, we'll try to find somewhere better to live than this ruined place!"); end; OnInit: + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADTOP, CaptainCap); + setunitdata(.@npcId, UDT_HEADMIDDLE, SilkRobe); + //setunitdata(.@npcId, UDT_HEADBOTTOM, LeatherTrousers); // TODO + setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); + setunitdata(.@npcId, UDT_HAIRSTYLE, 21); + setunitdata(.@npcId, UDT_HAIRCOLOR, 11); + + .sex = G_FEMALE; .distance=5; end; } -032-1,77,46,0 script Harper NPC_MOUBOOTAUR,{ +032-1,77,46,0 script Harper NPC_PLAYER,{ npctalk3 l("Hi. My captain believe the world is round, can you believe that?"); end; OnInit: + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADTOP, SailorHat); + setunitdata(.@npcId, UDT_HEADMIDDLE, SailorShirt); + setunitdata(.@npcId, UDT_HEADBOTTOM, LeatherTrousers); // TODO + setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); + setunitdata(.@npcId, UDT_HAIRSTYLE, 21); + setunitdata(.@npcId, UDT_HAIRCOLOR, 11); + + .sex = G_MALE; .distance=5; end; } |