diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
commit | cf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch) | |
tree | f9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/029-1/dock.txt | |
parent | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff) | |
download | serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2 serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip |
Override
Diffstat (limited to 'npc/029-1/dock.txt')
-rwxr-xr-x | npc/029-1/dock.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/npc/029-1/dock.txt b/npc/029-1/dock.txt new file mode 100755 index 00000000..c40f3646 --- /dev/null +++ b/npc/029-1/dock.txt @@ -0,0 +1,42 @@ + +029-1,46,111,0 script Candor Dock NPC400,1,0,{ + @npc_distance = 1; + callfunc "PCtoNPCRange"; + if(@npc_check) end; + callfunc "BoardCandorFerry"; + end; +} + +029-1,51,118,0 script Candor Koga NPC395,8,7,{ + @npc_distance = 8; + callfunc "PCtoNPCRange"; + if(@npc_check) end; + callfunc "BoardCandorFerry"; + end; + +OnTouch: + addtimer get(.warp_delay, "#FerryConfig"), strnpcinfo(0)+"::OnBoard"; + end; + +OnBoard: + callfunc "BoardCandorFerry"; + end; +} + +029-1,55,110,0 script #CandorDock NPC32767,{ + end; +OnCommandArrive: + disablenpc "Candor Dock"; + enablenpc "Candor Koga"; + areatimer 0, "029-1", 39, 111, 53, 113, get(.warp_delay, "#FerryConfig"), strnpcinfo(0)+"::OnAreaWarp"; // warp players on dock + end; + +OnAreaWarp: + callfunc "BoardCandorFerry"; + end; + +OnCommandWarp: + disablenpc "Candor Koga"; + enablenpc "Candor Dock"; + end; +} |