summaryrefslogtreecommitdiff
path: root/npc/sample/npc_test_skill.txt
diff options
context:
space:
mode:
authorwizputer <wizputer@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-27 19:32:30 +0000
committerwizputer <wizputer@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-27 19:32:30 +0000
commit486b4f2a12b41507b67a1a93ae5871b3be447914 (patch)
tree8196d22d0fce973ac6e53b24735776ba9dcaf77f /npc/sample/npc_test_skill.txt
parentecb15e6101bc1912bb2520151c45ed69af80feb8 (diff)
parentf0da8da932031212f34aa97eff882f72cb69cc2a (diff)
downloadhercules-486b4f2a12b41507b67a1a93ae5871b3be447914.tar.gz
hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.tar.bz2
hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.tar.xz
hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.zip
correct directory structure
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@387 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/npc_test_skill.txt')
-rw-r--r--npc/sample/npc_test_skill.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/npc/sample/npc_test_skill.txt b/npc/sample/npc_test_skill.txt
new file mode 100644
index 000000000..94b2195bb
--- /dev/null
+++ b/npc/sample/npc_test_skill.txt
@@ -0,0 +1,19 @@
+// スキル所得テスト
+
+// skill スキルID ,スキルLV [,フラグ];
+// フラグは省略可能、省略時は1。
+// フラグ=1でカードなどの一時的な所得、
+// フラグ=2でクエストなどによる恒久的な所得(skill_tree.txtに依存)
+
+prontera.gat,157,182,0 script スキル所得テスト 116,{
+ mes "スキル所得テスト";
+ menu "応急処置所得",L_GETSKILL142,"死んだ振り所得",L_GETSKILL143,"やめる",L_YAME;
+L_GETSKILL142:
+ skill 142,1,0;
+ close;
+L_GETSKILL143:
+ skill 143,1,0;
+ close;
+L_YAME:
+ close;
+}