diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-07 21:08:32 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-07 21:08:32 +0100 |
commit | 4f0a7b1b3563d56c5523fb284e1358ba5583d14c (patch) | |
tree | be645de298ac7476743415f028888417d09a109d /npc/005-1 | |
parent | ad515f87ffa88599eed009466b5bbf6fd508f49d (diff) | |
parent | 35753b2705a52c648a61a11d175dcc93a31bc3f5 (diff) | |
download | serverdata-4f0a7b1b3563d56c5523fb284e1358ba5583d14c.tar.gz serverdata-4f0a7b1b3563d56c5523fb284e1358ba5583d14c.tar.bz2 serverdata-4f0a7b1b3563d56c5523fb284e1358ba5583d14c.tar.xz serverdata-4f0a7b1b3563d56c5523fb284e1358ba5583d14c.zip |
add new wwaprs on 003-1
Diffstat (limited to 'npc/005-1')
-rw-r--r-- | npc/005-1/ayasha.txt | 26 | ||||
-rw-r--r-- | npc/005-1/movetest.txt | 4 |
2 files changed, 15 insertions, 15 deletions
diff --git a/npc/005-1/ayasha.txt b/npc/005-1/ayasha.txt index f47968c48..8a6338455 100644 --- a/npc/005-1/ayasha.txt +++ b/npc/005-1/ayasha.txt @@ -19,11 +19,11 @@ if (.@has == 0)
{
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Hello can you help me for find all kids");
+ l("Hello! can you help me for find all kids?");
do
{
select
- l("Yes"),
+ l("Yes!"),
menuaction(l("Quit"));
switch (@menu)
@@ -43,7 +43,7 @@ else if (.@has == 2)
{
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Thank you, there is your reward");
+ l("Thank you, here is your reward.");
narrator("You receive 30 exp.");
getexp 30, 0;
setq CandorQuest_HAS, 3;
@@ -56,8 +56,8 @@ close;
}
- closedialog;
- goodbye;
+ //closedialog;
+ //goodbye;
close;
OnInit:
@@ -68,10 +68,10 @@ OnInit: function script CheckEnfant {
- .questCheck = .questCheck + 1;
+ .questCheck = .questCheck + 1; // NOTE: Do we really want this as a **NPC** variable? These affects other players, right?
l("Oh Welcome then.");
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Oh! You found me well played !.");
+ l("Oh! You found me. Well played!");
narrator("You receive 5 exp.");
if (.questCheck == 6)
{
@@ -80,7 +80,7 @@ function script CheckEnfant { getexp 5,0;
close;
}
-005-1,69,90,0 script Charda 451,{
+005-1,69,90,0 script Charda NPC_GUARD1,{
if (getq(CandorQuest_HAS) == 1)
{
CheckEnfant();
@@ -91,7 +91,7 @@ OnInit: .distance = 1;
end;
}
-005-1,23,84,0 script Faris 451,{
+005-1,23,84,0 script Faris NPC_GUARD1,{
if (getq(CandorQuest_HAS) == 1)
{
CheckEnfant();
@@ -102,7 +102,7 @@ OnInit: .distance = 1;
end;
}
-005-1,84,21,0 script Ghada 445,{
+005-1,84,21,0 script Ghada NPC_HUMAN_M_ARTIS,{
if (getq(CandorQuest_HAS) == 1)
{
CheckEnfant();
@@ -113,7 +113,7 @@ OnInit: .distance = 1;
end;
}
-005-1,38,58,0 script Latif 445,{
+005-1,38,58,0 script Latif NPC_HUMAN_M_ARTIS,{
if (getq(CandorQuest_HAS) == 1)
{
CheckEnfant();
@@ -124,7 +124,7 @@ OnInit: .distance = 1;
end;
}
-005-1,18,43,0 script Rasin 445,{
+005-1,18,43,0 script Rasin NPC_HUMAN_M_ARTIS,{
if (getq(CandorQuest_HAS) == 1)
{
CheckEnfant();
@@ -135,7 +135,7 @@ OnInit: .distance = 1;
end;
}
-005-1,38,65,0 script Djinx 451,{
+005-1,38,65,0 script Djinx NPC_GUARD1,{
if (getq(CandorQuest_HAS) == 1)
{
CheckEnfant();
diff --git a/npc/005-1/movetest.txt b/npc/005-1/movetest.txt index f69a20ab4..dcec64459 100644 --- a/npc/005-1/movetest.txt +++ b/npc/005-1/movetest.txt @@ -12,7 +12,7 @@ OnTimer1000: OnInit: initpath "move", 44, 35, - "dir", TOP, 0, + "dir", UP, 0, "wait", 2, 0, "move", 51, 81, "dir", DOWN, 0, @@ -24,4 +24,4 @@ OnInit: initialmove; initnpctimer; .distance = 5; -}
\ No newline at end of file +} |