summaryrefslogtreecommitdiff
path: root/npc/sample/gstorage_test.txt
diff options
context:
space:
mode:
authorValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:00:45 +0000
committerValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:00:45 +0000
commita2675f07d7da22a7c6ae11f545bf8f671e785a82 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /npc/sample/gstorage_test.txt
parentb8801ae9585201eaaf9fdf80d9c7117ee18f52e2 (diff)
downloadhercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.gz
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.bz2
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.xz
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.zip
Clearing trunk.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5091 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/gstorage_test.txt')
-rw-r--r--npc/sample/gstorage_test.txt33
1 files changed, 0 insertions, 33 deletions
diff --git a/npc/sample/gstorage_test.txt b/npc/sample/gstorage_test.txt
deleted file mode 100644
index 6a8816e43..000000000
--- a/npc/sample/gstorage_test.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-// カプラギルド倉庫サービス テストスクリプト
-prontera.gat,165,188,4 script ギルド倉庫カプラ 112,{
- cutin "kafra_06",2;
-
- mes"[ギルド倉庫カプラ]";
- mes "カプラギルド倉庫サービスです。";
- mes "毎度ご利用ありがとうございます♪";
- mes "テスト用なので金は貰いません。";
- next;
- menu "ギルド倉庫を利用する",GS_OPEN,"やっぱやめる",GS_EXIT3;
-
-GS_OPEN:
- set @flag,guildopenstorage(0);
- if(@flag == 1) goto GS_EXIT1;
- if(@flag == 2) goto GS_EXIT2;
- goto GS_EXIT4;
-
-GS_EXIT1:
- mes "ギルドメンバーが倉庫を使用中です。";
- mes "しばらく待ってから利用してください。";
- goto GS_EXIT4;
-
-GS_EXIT2:
- mes "ギルドに所属してない方は利用することができません。";
- goto GS_EXIT4;
-
-GS_EXIT3:
- mes "またのご利用をお待ちしています♪";
-
-GS_EXIT4:
- cutin "kafra_06",255;
- close;
-}