diff options
Diffstat (limited to 'npc/commands/warp.txt')
-rw-r--r-- | npc/commands/warp.txt | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/npc/commands/warp.txt b/npc/commands/warp.txt index 4e4564bec..c40aa8bb5 100644 --- a/npc/commands/warp.txt +++ b/npc/commands/warp.txt @@ -1,17 +1,18 @@ +// TMW2 script +// Evol script, gumi's script +// // @w atcommand // warps using anchors or map name // -// group lv: 1 -// group char lv: 2 -// log: True -// // usage: // @w <map or anchor> [, x [, y]] // #w "char" <map or anchor> [, x [, y]] // // example: -// @w artis -// #w "char" artis +// @w hali +// @w halin +// @w halinarzo +// #w "char" hali - script @w 32767,{ end; @@ -70,6 +71,8 @@ OnInit: "^TULIM", "003-1 41 48", // Tulishmar "^CANDOR", "005-1 28 92", // Candor "^HALI", "009-1 28 33", // Halinarzo + "^HURN", "012-1 83 63", // Hurnscald + "^LOF", "017-1 120 89", // Land Of Fire Village // TBR - To Be Removed "^BOSS", "boss 45 45", // (TBR) Jesusalva Boss Arena @@ -77,18 +80,14 @@ OnInit: // GM Stuff "^AEROS|^GM", "001-1 235 26", // Floating Island of Aeros (GM Events) + "^ARENA", "001-2 125 222", // Aeros Arena (GM Events) + "^SAULC", "001-3 117 138", // GM Palace "^EASTER", "001-4 151 157", // Easter Event Map - "^SOREN", "soren 179 56", // Unimplemented map + "^WORK", "001-5 22 79", // Contributor's Cave "^JAIL|^PRISON", "sec_pri 28 25"; // Jesusalva's Prison (and last line) .count = getarraysize(.aliases$[0]); - if (debug > 0) - { - bindatcmd "w", "@w::OnCall", 0, 2, 0; - end; - } - - bindatcmd "w", "@w::OnCall", 1, 2, 1; + bindatcmd "w", "@w::OnCall", 5, 80, 1; } |