diff options
-rw-r--r-- | npc/000-0-0/sailors.txt | 2 | ||||
-rw-r--r-- | npc/000-2-0/julia.txt | 2 | ||||
-rw-r--r-- | npc/functions/main.txt | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt index 4488b89e..c59c7c35 100644 --- a/npc/000-0-0/sailors.txt +++ b/npc/000-0-0/sailors.txt @@ -63,9 +63,9 @@ OnTalk: next; restorecam; + adddefaultskills; warp "000-2-1.gat", 50, 38; savepoint "000-2-1.gat", 50, 38; - adddefaultskills; closedialog; close; diff --git a/npc/000-2-0/julia.txt b/npc/000-2-0/julia.txt index c13a68c4..644ff288 100644 --- a/npc/000-2-0/julia.txt +++ b/npc/000-2-0/julia.txt @@ -33,8 +33,6 @@ // 25 Reward taken from the box. 000-2-0,27,24,0 script Julia 404,2,10,{ - adddefaultskills; - mesn; mesq lg("Hello dear!"); next; diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 9fbec0d3..030adc77 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -38,6 +38,6 @@ function script col { } function script adddefaultskills { - skill 1, 1, 0; // Add basic skill. + skill NV_BASIC, 1, 0; return; } |