summaryrefslogtreecommitdiff
path: root/npc/guides/guides_alb.txt
blob: 53ad0530afc50a8f3f790994aad5161bcfbe760b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//===== eAthena Script ======================================= 
//= Alberta Guides
//===== By: ================================================== 
//= kobra_k88
//===== Current Version: ===================================== 
//= 1.1
//===== Compatible With: ===================================== 
//= eAthena  0.5.2 +
//===== Description: ========================================= 
//=
//===== Additional Comments: ================================= 
//= Fully working
//= v1.1 Now using duplicate command.
//============================================================ 




// North --------------------------------------------------------
alberta.gat,23,238,4	script	Guide#1::Guide	105,{
	cutin "prt_soldier",2;
	mes "[Alberta Soldier]";
	mes "Welcome to Alberta, the Port Town.";
	next;
	mes "[Alberta Soldier]";
	mes "We are here to help you find your way.  Please feel free to speak to us anytime.";
	mes "Oh, and if you're a newbie you should read the notice first.";
M_Menu:
	next;
	menu "View Buildings",M_1, "Notice",M_2, "Cancel",M_End;

	M_1:
		mes "[Alberta Soldier]";
		mes "Do you want me to leave indications on the Mini-Map?";
		next;
		menu "No Thanks",sM_1a,"Yes Please",sM_1b;
		
		sM_1a:
			set @COMPASS_CHECK,0;
			goto L_Cont;
		sM_1b:
			set @COMPASS_CHECK,1;

		L_Cont:
		mes "[Alberta Soldier]";
		mes "Please choose a building to view.";
		next;
	sM_Menu:
		menu "^FF0000Merchant Guild^000000",sM_2a,"Armory",sM_2b,"Item Shop",sM_2c,"Inn",sM_2d, "Wipe all indications from mini-map.",sM_2e, "Cancel",M_End;

		sM_2a:
			mes "[Alberta Soldier]";
			mes "The 'Merchant Guild' is located in the SouthWestern part of town.  The Merchant Guild is the place to go to become a merchant.";
			viewpoint 1,33,41,1,0xFF0000;
			goto sL_Wipe;
		sM_2b:
			mes "[Alberta Soldier]";
			mes "The 'Armory' is located in the Southern part of town.  Go there to buy weapons and armor.";
			viewpoint 1,148,57,2,0x6666FF;
			goto sL_Wipe;
		sM_2c:
			mes "[Alberta Soldier]";
			mes "The 'Item Shop' is located in the Centre of town.";
			viewpoint 1,98,154,3,0xFF00FF;
			goto sL_Wipe;
		sM_2d:
			mes "[Alberta Soldier]";
			mes "There are 2 'Inns' located in the Northern and Southern parts of town.  Go there if you need to rest.";
			viewpoint 1,65,233,4,0xF5AD05;
			viewpoint 1,136,38,5,0xF5AD05;
			goto sL_Wipe;
		sM_2e:
			set @COMPASS_CHECK, 2;

		sL_Wipe:
			if(@COMPASS_CHECK != 2) next;
			if(@COMPASS_CHECK == 1) goto sM_Menu;
			viewpoint 2,33,41,1,0xFF0000;
			viewpoint 2,148,57,2,0x6666FF;
			viewpoint 2,98,154,3,0xFF00FF;
			viewpoint 2,65,233,4,0xF5AD05;
			viewpoint 2,136,38,5,0xF5AD05;
			if(@COMPASS_CHECK == 0) goto sM_Menu;
			mes "[Alberta Soldier]";
			mes "All indications have been removed";
			cutin "prt_soldier",255;
			close;

	M_2:
		mes "[Alberta Soldier]";
		mes "We upgraded the Location Guide to the newest Digital Style.  We hope you like this gorgeous new system.";
		next;
		mes "[Alberta Soldier]";
		mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
		next;
		mes "[Alberta Soldier]";
		mes "If you can't see the Mini-Map, just hit ^0000ff'ctrl+tab'^000000 or Click the ^0000ff'map'^000000 button in the Basic Information Window";
		mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
		goto M_Menu;

	M_End:
		mes "[Alberta Soldier]";
		mes "Ta Ta.";
		cutin "prt_soldier",255;
		close;
}

// South --------------------------------------------------------
alberta.gat,120,60,3	duplicate(Guide)	Guide#2	105