diff options
-rw-r--r-- | npc/test/_import.txt | 3 | ||||
-rw-r--r-- | npc/test/npc2.txt | 35 | ||||
-rw-r--r-- | npc/test/npc6.txt | 23 | ||||
-rw-r--r-- | npc/test/npcmarriage.txt | 19 |
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; -} |