Teleport Npc

Join Discord

JealY

LOMCN VIP
VIP
Nov 28, 2004
5,354
52
305
England
[@main]
#SAY
I see your searching abilities aren't that good, RalosZek\
I have come to your aid!\
<Thanks, master!/@help>\

[@help]
#IF
CHECKNAMELIST noidiot.txt
#ACT
GIVE link-to-npc-that-took-15-seconds-to-find
#SAY
Here you go!\
<Thanks!/@exit>
#ELSESAY
Unlucky...
<Darn, I guess i'm an idiot/@exit>


Guess what, your name isn't on the list...









Seriously though, it didn't take long, edit it a bit and it should be fine.
 
Upvote 0

Viper

LOMCN Veteran
Veteran
Feb 14, 2007
519
1
125
Newcastle
[@main]
#SAY
I see your searching abilities aren't that good, RalosZek\
I have come to your aid!\
<Thanks, master!/@help>\

[@help]
#IF
CHECKNAMELIST noidiot.txt
#ACT
GIVE link-to-npc-that-took-15-seconds-to-find

#SAY
Here you go!\
<Thanks!/@exit>
#ELSESAY
Unlucky...
<Darn, I guess i'm an idiot/@exit>


Guess what, your name isn't on the list...


Seriously though, it didn't take long, edit it a bit and it should be fine.

lol nice script :P

Basic files come with teleport scripts anyway ppl just need to edit them. guess its all about cuttin corners these days.
 
Upvote 0

kelvin09

LOMCN Veteran
Veteran
Jul 13, 2008
438
6
64
heres script i got for cave npc if it helps :P

; ===================================
; Npc Def NPC File : Chief-0
; Dungeon Teleport npc in BichonProvince
; -----------------------------------
; Name: Chief
; Job:
; Map No: 0
; Pos X
; Pos Y
; File name: *removed*
; Comment: Dungeon Teleport npc in BichonProvince

;================================================= =
;

[@main]
I'm in charge of the transport system in the entire region.\
Unlike other transporters, I can even take you\
to many hunting fields where brave people usually adventure,\
so tell me if there's a particular place where you want to go.\
Of course, I will send you there free of any charge.\ \
<Tell/@next1> me to which field you want to go.\
I will be back <later/@exit>

[@next1]
Select the region where the hunting field is located.\ \
Dungeon of[<Bichon Province/@bichon>] region\
Dungeon of[<Mongchon Province/@mongchon>] region\
Dungeon of[<Tao Village/@taovillage>] region\
Dungeon of[<Castle Gi-Ryoong/@castlegi>] region\
Dungeon of[<Prajna Island/@prajna>] region\ \
I will make use of it <later./@exit>

[@bichon]
Select a hunting field you wish to move to.\\
<Oma Cave/@omacave> <Oma Natural Cave/@omanat>\\
<Bichon Dead Pit/@bwmine>\ \ \
I will move to <other place./@next1>

[@mongchon]
Select a hunting field you wish to move to.\\
<Death Valley/@bugcave> <Zuma Temple/@zumatemple>\\
<Angled Stone Tomb/@stonetomb>\ <Connection Cave/@conncave>\ \ \
I will move to <other place./@next1>

[@taovillage]
Select a hunting field you wish to move to.\\
<Insect Cave/@insectcave> <Wooma Temple/@woomatemple>\\
<Mineral Mine/@mineralmine> <Red Valley/@spidercave>\ \ \
I will move to <other place./@next1>

[@castlegi]
Select a hunting field you wish to move to.\\
<Black Dragon Dungeon/@bddungeon>\ \ \
I will move to <other place./@next1>

[@prajna]
Select a hunting field you wish to move to.\\
<Prajna Cave/@prajnacave> <Prajna Stone Cave/@prajnastonecave>\\
<Prajna Temple/@prajnatemple>\ \ \
I will move to <other place./@next1>

[@omacave]
#IF
#ACT
map D001

[@omanat]
#IF
#ACT
map D011

[@bwmine]
#IF
#ACT
map D401

[@bugcave]
#IF
#ACT
map D601

[@zumatemple]
#IF
#ACT
map D501

[@stonetomb]
#IF
#ACT
map D711

[@conncave]
#IF
#ACT
map D701

[@insectcave]
#IF
#ACT
map D2041

[@woomatemple]
#IF
#ACT
map D022

[@mineralmine]
#IF
#ACT
map D2031

[@spidercave]
#IF
#ACT
map D10011

[@bddungeon]
#IF
#ACT
map D2001

[@prajnacave]
#IF
#ACT
map D2051

[@prajnastonecave]
#IF
#ACT
map D2061

[@prajnatemple]
#IF
#ACT
map D2071
 
Upvote 0