diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-2-1/savepoint.txt | 36 | ||||
-rw-r--r-- | npc/000-2-3/_import.txt | 3 | ||||
-rw-r--r-- | npc/000-2-3/savepoint.txt | 31 |
3 files changed, 67 insertions, 3 deletions
diff --git a/npc/000-2-1/savepoint.txt b/npc/000-2-1/savepoint.txt index b6b00c3a..c671c716 100644 --- a/npc/000-2-1/savepoint.txt +++ b/npc/000-2-1/savepoint.txt @@ -2,11 +2,43 @@ // Authors: // Reid // Description: -// Save location in 000-2-1 map. +// Save locations in 000-2-1 map. 000-2-1.gat,30,37,0,2 script #name 999,{ - callfunc "SavePoint", "000-2-1.gat", 30, 37 + set @map$, "000-2-1.gat"; + set @x, 30; + set @y, 37; + callfunc "SavePoint"; close; } + +000-2-1.gat,36,37,0,2 script #name 999,{ + + set @map$, "000-2-1.gat"; + set @x, 36; + set @y, 37; + callfunc "SavePoint"; + close; + +} +000-2-1.gat,40,38,0,2 script #name 999,{ + + set @map$, "000-2-1.gat"; + set @x, 40; + set @y, 38; + callfunc "SavePoint"; + close; + +} + +000-2-1.gat,45,40,0,2 script #name 999,{ + + set @map$, "000-2-1.gat"; + set @x, 45; + set @y, 40; + callfunc "SavePoint"; + close; + +}
\ No newline at end of file diff --git a/npc/000-2-3/_import.txt b/npc/000-2-3/_import.txt index cea912c0..f70330bd 100644 --- a/npc/000-2-3/_import.txt +++ b/npc/000-2-3/_import.txt @@ -4,4 +4,5 @@ npc: npc/000-2-3/_warps.txt npc: npc/000-2-3/piousrocket.txt npc: npc/000-2-3/sailors.txt npc: npc/000-2-3/elmo.txt -npc: npc/000-2-3/nard.txt
\ No newline at end of file +npc: npc/000-2-3/nard.txt +npc: npc/000-2-3/savepoint.txt
\ No newline at end of file diff --git a/npc/000-2-3/savepoint.txt b/npc/000-2-3/savepoint.txt new file mode 100644 index 00000000..a6a96f66 --- /dev/null +++ b/npc/000-2-3/savepoint.txt @@ -0,0 +1,31 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Fake save point in nard's room. + +000-2-3.gat,28,24,0,2 script #name 999,{ + + mesn "Narrator"; + mes col(l("There is a nice place to stay beside you."), 9); + next; + mes col(l("What do you wish to do?"), 9); + next; + + menu + l("Take a nap"), -, + l("Nothing"), L_Return; + + mes " "; + mesn "Narrator"; + mes col(l("You close your eyes some seconds..."), 9); + next; + mes col(l("..."), 9); + next; + mesn "Nard"; + mesq l("Hey, you can't sleep here, it's my room."); + +L_Return: + close; + +} |