diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-12 17:17:47 +0300 |
commit | 95c63a160d23b54f19f35e7b92f36cfaf7c9dc92 (patch) | |
tree | 9b550f24e5b5afe15f628d07644ca18579add131 /doc/sample/gstorage_test.txt | |
parent | 7cdb4acc0805901a540f98ce5baa1a4ec34cc805 (diff) | |
download | hercules-95c63a160d23b54f19f35e7b92f36cfaf7c9dc92.tar.gz hercules-95c63a160d23b54f19f35e7b92f36cfaf7c9dc92.tar.bz2 hercules-95c63a160d23b54f19f35e7b92f36cfaf7c9dc92.tar.xz hercules-95c63a160d23b54f19f35e7b92f36cfaf7c9dc92.zip |
Remove conf dir.
Diffstat (limited to 'doc/sample/gstorage_test.txt')
-rw-r--r-- | doc/sample/gstorage_test.txt | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/doc/sample/gstorage_test.txt b/doc/sample/gstorage_test.txt deleted file mode 100644 index 8b1a1c0e6..000000000 --- a/doc/sample/gstorage_test.txt +++ /dev/null @@ -1,36 +0,0 @@ -//===== Hercules Script ======================================= -//= Sample: Guild Storage Test -//===== By: ================================================== -//= Hercules Dev Team -//===== Current Version: ===================================== -//= 20131225 -//===== Description: ========================================= -//= Contains commands needed for a guild warehouse NPC. -//============================================================ - -prontera,165,188,4 script Guild Warehouse 4_F_KAFRA6,{ - cutin "kafra_06",2; - - mes "[Guild Warehouse Coupler]"; - mes "This is the guild warehouse coupler service."; - mes "You will not receive zeny for this is a test."; - next; - if (select("Access Guild Warehouse","Exit") != 1) { - mes "[Guild Warehouser]"; - mes "Come back whenever you want."; - cutin "kafra_06", 255; - close; - } - - .@flag = guildopenstorage; - if (.@flag == 1) { - mes "[Guild Warehouse]"; - mes "The guild warehouse is being used right now."; - mes "Please wait a while, then come back."; - } else if(.@flag == 2) { - mes "[Guild Warehouse]"; - mes "You can't use this service if you're not in a guild!"; - } - cutin "kafra_06",255; - close; -} |