summaryrefslogtreecommitdiff
path: root/npc/test/npc2.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
commitcf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch)
treef9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/test/npc2.txt
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/test/npc2.txt')
-rw-r--r--npc/test/npc2.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/npc/test/npc2.txt b/npc/test/npc2.txt
deleted file mode 100644
index 8a2146f1..00000000
--- 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;
-}