diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-02 14:30:17 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-02 14:30:17 -0300 |
commit | c649b3e9aaca9139d100664d21a784c34006e327 (patch) | |
tree | 732e0f43ec2d4a97b0541d0ab6612bf65c489110 /npc/034-3/gemini.txt | |
parent | 34048ae571f911c457d50508b513c8aad407f424 (diff) | |
download | serverdata-c649b3e9aaca9139d100664d21a784c34006e327.tar.gz serverdata-c649b3e9aaca9139d100664d21a784c34006e327.tar.bz2 serverdata-c649b3e9aaca9139d100664d21a784c34006e327.tar.xz serverdata-c649b3e9aaca9139d100664d21a784c34006e327.zip |
Lay out some stuff and fix some obvious bugs (untested)
Diffstat (limited to 'npc/034-3/gemini.txt')
-rw-r--r-- | npc/034-3/gemini.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/034-3/gemini.txt b/npc/034-3/gemini.txt index f08ff2bef..352a4064d 100644 --- a/npc/034-3/gemini.txt +++ b/npc/034-3/gemini.txt @@ -76,7 +76,7 @@ OnChannel: .@magic_power_loss = 53 - ((readparam2(bInt)+1)*2)/10; dispbottom l("Ok, let's stay focused now!"); - areamonster "052-1", 27, 20, 77, 47, strmobinfo(1, Forain), Forain, 1; + areamonster getmap(), 27, 20, 77, 47, strmobinfo(1, Forain), Forain, 1; // TODO: Loop debugmes "NPC: %s / %s (%d)", .name$, .extname$, instance_id(); .aid=getcharid(3); @@ -92,11 +92,11 @@ OnTimer13000: initnpctimer; // Reset timer // Time to spawn monsters .@pc = getmapusers(.mp$); - areamonster "052-1", 56, 30, 60, 31, "Guardian", Scar, 1+.@pc; - areamonster "052-1", 27, 20, 77, 47, strmobinfo(1, Forain), Forain, 2; + areamonster .mp$, 56, 30, 60, 31, "Guardian", Scar, 1+.@pc; + areamonster .mp$, 27, 20, 77, 47, strmobinfo(1, Forain), Forain, 2; // Terranites only show up when doing multiplayer, based on number of players if (.@pc >= 2) - areamonster "052-1", 56, 30, 60, 31, "Guardian", Terranite, (.@pc/2); + areamonster .mp$, 56, 30, 60, 31, "Guardian", Terranite, (.@pc/2); OnTimer10000: OnTimer8000: OnTimer6000: |