Selaa lähdekoodia

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6663 54d463be-8e91-2dee-dedb-b68131a5f0ec

killercube 19 vuotta sitten
vanhempi
commit
454704a957
2 muutettua tiedostoa jossa 38 lisäystä ja 0 poistoa
  1. 1 0
      npc/Changelog.txt
  2. 37 0
      npc/sample/gstorage_test.txt

+ 1 - 0
npc/Changelog.txt

@@ -31,6 +31,7 @@ Evera
 Date		Added
 ======
 05/19
+	* Translated sample/gstorage_test.txt
 	* Commented a warp that stands in the middle of nowhere [Playtester]
 05/17
 	* Now the Inns are like on official servers [Playtester]

+ 37 - 0
npc/sample/gstorage_test.txt

@@ -1,3 +1,40 @@
+/* Guild Warehouse Service Test-Script 
+prontera.gat,165,188,4	script	Guild Warehouse	112,{
+	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;
+	menu "Access Guild Warehouse", GS_OPEN, "Exit", 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 "[Guild Warehouse]";
+	mes "The guild warehouse is being used right now.";
+	mes "Please wait a while, then come back.";
+	goto GS_EXIT4;
+
+GS_EXIT2:
+	mes "[Guild Warehouse]";
+	mes "You can't use this service if you're not in a guild!";
+	goto GS_EXIT4;
+
+GS_EXIT3:
+	mes "[Guild Warehouser]";
+	mes "Come back whenever you want.";
+
+GS_EXIT4:
+	cutin "kafra_06",255;
+	close;
+}
+*/
+
 // カプラギルド倉庫サービス	テストスクリプト
 prontera.gat,165,188,4	script	ギルド倉庫カプラ	112,{
 	cutin "kafra_06",2;