summaryrefslogblamecommitdiff
path: root/doc/sample/gstorage_test.txt
blob: 8b1a1c0e69ec3e0487507ae8711127250aa17ab6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                               

                                                              
                     
                                                              

                                                              


                                                              
                                                            


                                        
                                                           

                                                            





                                                           
 








                                                                           

                             
 
//===== 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;
}