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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
// TMW2 SCRIPT.
// Author:
// The Mana World Brazil
function script mushroomWarp {
heal -5, -5;
warp getmapname(), 0, 0;
@n = rand(3);
if (@n == 0) dispbottom l("Uhh... What happened...");
if (@n == 1) dispbottom l("The world is spiniiiiiiiing...");
if (@n == 2) dispbottom l("Ah... What is happening to meeeeeeee?");
return;
}
001-4,252,184,0 script #001-4_252x184 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,259,128,0 script #001-4_259x128 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,252,255,0 script #001-4_252x255 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,180,270,0 script #001-4_180x270 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,124,267,0 script #001-4_124x267 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,44,243,0 script #001-4_44x243 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,41,180,0 script #001-4_41x180 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,58,127,0 script #001-4_58x127 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,56,51,0 script #001-4_56x51 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,114,39,0 script #001-4_114x39 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,183,37,0 script #001-4_183x37 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,244,57,0 script #001-4_244x57 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,154,136,0 script #001-4_154x136 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
001-4,142,173,0 script #001-4_142x173 NPC_FANCY_CIRCLE,0,0,{
mes l("A bright and mysterious mushroom!!!");
mes l("Only getting closer to find out what kind this one is.");
close;
OnTouch:
callfunc "mushroomWarp";
close;
}
|