summaryrefslogtreecommitdiff
path: root/npc/test
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-30 00:13:28 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-30 00:13:28 -0300
commit3ffdbcfa672bc57dfa6b84a52a7d5ef94596203c (patch)
tree155ec229632302b12a506d674606989e4e883054 /npc/test
parente4047c45c82e32b74dec6afc195745f59f7627ab (diff)
downloadserverdata-3ffdbcfa672bc57dfa6b84a52a7d5ef94596203c.tar.gz
serverdata-3ffdbcfa672bc57dfa6b84a52a7d5ef94596203c.tar.bz2
serverdata-3ffdbcfa672bc57dfa6b84a52a7d5ef94596203c.tar.xz
serverdata-3ffdbcfa672bc57dfa6b84a52a7d5ef94596203c.zip
Remove three now uneeded NPCs from test map (to clean up)
Diffstat (limited to 'npc/test')
-rw-r--r--npc/test/_import.txt3
-rw-r--r--npc/test/npc2.txt35
-rw-r--r--npc/test/npc6.txt23
-rw-r--r--npc/test/npcmarriage.txt19
4 files changed, 0 insertions, 80 deletions
diff --git a/npc/test/_import.txt b/npc/test/_import.txt
index c3e1f60b1..46209c4f5 100644
--- a/npc/test/_import.txt
+++ b/npc/test/_import.txt
@@ -4,12 +4,9 @@
"npc/test/karim.txt",
"npc/test/mapflags.txt",
"npc/test/npc1.txt",
-"npc/test/npc2.txt",
"npc/test/npc3.txt",
"npc/test/npc4.txt",
"npc/test/npc5.txt",
-"npc/test/npc6.txt",
-"npc/test/npcmarriage.txt",
"npc/test/rock.txt",
"npc/test/test1.txt",
"npc/test/test2.txt",
diff --git a/npc/test/npc2.txt b/npc/test/npc2.txt
deleted file mode 100644
index 8a2146f11..000000000
--- a/npc/test/npc2.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-// Evol scripts.
-// Author:
-// 4144
-// Description:
-// test npc2
-
-test,20,10,0 trader npc2 NPC_HAT_BOX,{
-OnInit:
- tradertype(NST_MARKET);
- sellitem 505, -1, 10;
- sellitem 502, -1, 10;
- sellitem 513, -1, 10;
- sellitem 509, -1, 10;
- sellitem 2000, -1, 10;
- sellitem 1800, -1, 10;
- sellitem 3501, -1, 10;
- end;
-
-OnClock0000:
- if (shopcount(505) < 10)
- sellitem 505, -1, 10;
- if (shopcount(502) < 10)
- sellitem 502, -1, 10;
- if (shopcount(513) < 10)
- sellitem 513, -1, 10;
- if (shopcount(509) < 10)
- sellitem 509, -1, 10;
- if (shopcount(2000) < 10)
- sellitem 2000, -1, 10;
- if (shopcount(1800) < 10)
- sellitem 1800, -1, 10;
- if (shopcount(3501) < 10)
- sellitem 3501, -1, 10;
- end;
-}
diff --git a/npc/test/npc6.txt b/npc/test/npc6.txt
deleted file mode 100644
index 7c4893ad7..000000000
--- a/npc/test/npc6.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-// Evol scripts.
-// Authors:
-// 4144
-// Description:
-// test npc1
-
-test,30,10,0 trader npc6 NPC_SHOP_BAG_TEST,{
- end;
-
-OnCountFunds:
- setcurrency 10000;
- end;
-
-OnPayFunds:
- dispbottom "Hi: price="+@price+" and points="+@points;
- // check and remove points
- purchaseok;
- end;
-OnInit:
- tradertype NST_CUSTOM;
- sellitem Acorn, 500;
- sellitem Bread, 200;
-}
diff --git a/npc/test/npcmarriage.txt b/npc/test/npcmarriage.txt
deleted file mode 100644
index 1b7497bdc..000000000
--- a/npc/test/npcmarriage.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-// Evol scripts.
-// Author:
-// 4144
-// Description:
-// npc marriage
-
-test,25,14,0 script marriage1 NPC_PLAYER,{
- marriagemain();
- close;
-
-OnTimer30000:
- marriagecheck();
- end;
-
-OnInit:
- .sex = G_MALE;
- .distance = 3;
- initnpctimer;
-}