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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
// TMW2 Script.
// Authors:
// Jesusalva
// Description:
// Daily Login Reward
function script daily_login_bonus_handler {
// Handle daily login bonus
// The Strange Coin output wasn't changed, but now it relies on streaks.
// Variables:
// #LOGIN_DAY
// Current day
// #LOGIN_TABLE
// Current month
// #LOGIN_STREAK
// Number of monthly connections
// #LOGIN_ALLTIME
// Number of times you claimed the top prize (27 days streak)
//debugmes "DLBH";
// This should not happen, but if it does, do not give daily login rewards.
if (TUT_VAR < 1519873200) {
Exception(sprintf("Character %d created on %d which is before server release. Daily login rewards will *not* be given.", getcharid(0), TUT_VAR), RB_DEBUGMES|RB_DISPBOTTOM);
consolebug("[%d:%d] %04d-%02d-%02d is invalid TUT_VAR", getcharid(3), getcharid(0), gettime(GETTIME_YEAR, TUT_VAR), gettime(GETTIME_MONTH, TUT_VAR), gettime(GETTIME_DAYOFMONTH, TUT_VAR));
return;
}
// Some debug code to be removed later
if ($@GM_OVERRIDE) {
.@cur_yr = gettime(GETTIME_YEAR); //gettimetick(2) / 31536000;
.@org_yr = gettime(GETTIME_YEAR, TUT_VAR); //TUT_VAR / 31536000;
debugmes "Happy %dth anniversary!", (.@cur_yr - .@org_yr);
debugmes "%d / %d", gettime(GETTIME_DAYOFYEAR), min(gettime(GETTIME_DAYOFYEAR, TUT_VAR),365);
}
// GMs can receive Strange Coins
if (GSET_AUTORECEIVE_COINS) {
if (is_gm()) {
if (#GMEVENT_T <= gettimetick(2)) {
#GMEVENT_T=gettimetick(2)+(60*60*24);
getitem StrangeCoin, 30;
}
} else {
GSET_AUTORECEIVE_COINS=false;
}
}
if (#LOGIN_DAY != gettime(5)) {
// demure check: Are you on a start area?
getmapxy(.@m$,.@x,.@y,0);
if (compare(.@m$, "000-0"))
return;
//debugmes "[DLBH] Mapcheck ok";
// Is it a new month?
if (#LOGIN_TABLE == gettime(6)) {
#LOGIN_STREAK=#LOGIN_STREAK+1;
} else {
#LOGIN_STREAK=1;
#LOGIN_TABLE=gettime(6);
#TMW2_LOGINBONUS=0;
}
// Update last day you've claimed a reward
#LOGIN_DAY = gettime(5);
//debugmes "[DLBH] month checks ok";
// Handle rewards: Streaks first, daily later. Streak reward prevail over daily reward.
if ($@NOUPDATES) {
dispbottom col(l("Updates were disabled"), 1);
} else if (#LOGIN_STREAK > 27) {
getitem StrangeCoin, 2;
getitem CasinoCoins, 1;
dispbottom l("##2 %d Days login bonus: ##B2x %s, 1x %s##b", #LOGIN_STREAK, getitemlink(StrangeCoin), getitemlink(CasinoCoins));
} else if (#LOGIN_STREAK == 27) {
#LOGIN_ALLTIME+=1;
.@am=1;
switch (#LOGIN_ALLTIME % 12) {
case 1:
if (#LOGIN_ALLTIME == 1)
.@prize=RightEyePatch;
else
.@prize=SilverGift;
break;
case 2:
.@prize=ArcmageBoxset; break;
case 3:
.@prize=MercBoxC; break;
case 4:
.@prize=AncientBlueprint; break;
case 5:
.@prize=StrangeCoin; .@am=120; break;
case 6:
if (#LOGIN_ALLTIME == 6) {
dispbottom l("CONGRATULATIONS! For a semester worth of logins, you're getting a pet!");
.@prize=PiouEgg; .@am=0;
makepet Piou;
} else {
.@prize=GoldenGift;
}
break;
case 7:
.@prize=GoldenGift; break;
case 8:
.@prize=MercBoxD; break;
case 9:
.@prize=PrismGift; break;
case 10:
.@prize=StrangeCoin; .@am=150; break;
case 11:
.@prize=MercBoxE; break;
case 0:
.@prize=MysteriousFruit; break;
default:
.@prize=ElixirOfLife; break;
}
if (.@am)
getitem .@prize, .@am;
dispbottom l("##2 27 Days login bonus: ##B1x %s##b", getitemlink(.@prize));
} else if (#LOGIN_STREAK == 21) {
getitem BronzeGift, 1;
dispbottom l("##2 21 Days login bonus: ##B1x %s##b", getitemlink(BronzeGift));
} else if (#LOGIN_STREAK == 14) {
getitem BronzeGift, 1;
dispbottom l("##2 14 Days login bonus: ##B1x %s##b", getitemlink(BronzeGift));
} else if (#LOGIN_STREAK == 7) {
getitem StrangeCoin, 3;
dispbottom l("##2 7 Days login bonus: ##B3x %s##b", getitemlink(StrangeCoin));
} else if (#LOGIN_STREAK == 3) {
getitem StrangeCoin, 1;
dispbottom l("##2 3 Days login bonus: ##B1x %s##b", getitemlink(StrangeCoin));
} else if (#LOGIN_STREAK % 3 == 0) {
.@value=max(20, rand2(#LOGIN_STREAK, #LOGIN_STREAK*2));
.@value+=(BaseLevel*5/2)+rand2(JobLevel, JobLevel*7/20);
.@value=.@value * 5 / 4; // Bonus 25%
Zeny=Zeny+.@value;
dispbottom l("##2Daily login bonus: ##B%d GP##b", .@value);
} else if (#LOGIN_STREAK % 3 == 2) {
.@value=max(5, rand2(0, (#LOGIN_STREAK/4)));
.@value+=(BaseLevel**2);
.@value=(.@value*3/4)+#LOGIN_STREAK; // 50% → 75%
getexp .@value, 0;
dispbottom l("##2Daily login bonus: ##B%d EXP##b", .@value);
} else {
.@value=max(5, rand2(0, (#LOGIN_STREAK/4)));
.@value+=(JobLevel**2);
.@value=(.@value/2)+#LOGIN_STREAK; // 33% → 50%
getexp 0, .@value;
dispbottom l("##2Daily login bonus: ##B%d Job Exp.##b", .@value);
}
// Handle player anniversary. Originally meant to give a Prism gift box
// use #REG_DATE (per account) but changed to use TUT_VAR (per char)
// as this code runs by character. Prize therefore nerfed as well.
// A year has 31,536,000 seconds
.@accage = gettime(GETTIME_YEAR) - gettime(GETTIME_YEAR, TUT_VAR);
// We use the day of the year, so it works funny around leap years
// But still works roughly every 365 days, so "fair enough" I guess
if (gettime(GETTIME_DAYOFYEAR) == min(gettime(GETTIME_DAYOFYEAR, TUT_VAR),365)) {
//getitem PrismGift, 1;
getitem StrangeCoin, .@accage;
dispbottom l("Happy %dth anniversary!", .@accage);
// Give a warning a day before so you may login
} else if (gettime(GETTIME_DAYOFYEAR)+1 == min(gettime(GETTIME_DAYOFYEAR, TUT_VAR),365)) {
dispbottom l("Don't forget to login tomorrow to collect your anniversary gift!");
}
// Client_updater: if #REG_DATE < gettimetick(2) - 31536000 then gift
// Should go live on 01-01-2024 for sake of fairness?
// Handle event login bonus
if (gettime(6) == JANUARY) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && gettime(5) == 13) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem StrangeCoin, 10;
// TMW2 Anniversary is project, not server.
// Therefore, contributors get an extra reward
.@m=htget($@CONTRIBUTORS, strtolower(strcharinfo(0)), 0);
if (.@m)
getitem StrangeCoin, min(9, .@m/100)+1;
dispbottom "##B##2"+l("It's TMW2 Project anniversary!")+" "+l("We thank every developer which helped this project thus far!")+"##b##0";
}
}
if (gettime(6) == MARCH) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && gettime(5) == 2) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem MercBoxC, 1;
// TMW2 Day is server, not project.
// Therefore, players get extra reward
dispbottom "##B##2"+l("It's TMW2 Server anniversary!")+" "+l("We thank every player, because without them, this would be nothing!")+"##b##0";
}
}
if (gettime(6) == JUNE) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && gettime(5) == 21) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem DungeonMap, 1;
dispbottom "##B##2"+l("It's Jesusalva's anniversary!")+" "+l("Also, Summer just started. Why not taking this opportunity to go Treasure Hunting?!")+"##b##0";
}
}
if (gettime(6) == JULY) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && gettime(5) == 7) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem ChocolateBar, 1;
dispbottom "##B##2"+l("It's International Chocolate Day!")+"##b "+l("All monsters may drop chocolate during this period. And here is one for you!")+"##0";
}
}
if (gettime(6) == AUGUST) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && (
gettime(5) == 1 || gettime(5) == 10)) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem CasinoCoins, 1;
dispbottom "##B##2"+l("It's Moubootaur Legends' Gambling Day!")+"##b "+l("In permanent celebration of the 19.2 update, all monsters may drop casino coins during this period.")+"##0";
}
}
if (gettime(6) == SEPTEMBER) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && gettime(5) == 9) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem any(ScentGrenade, Grenade, SmokeGrenade), 2;
dispbottom "##B##2"+l("It's the Free Software Day!")+" "+l("Licensing was one of the worst hassle we had, but just today, all mobs may drop Ancient Blueprints. Enjoy!")+"##b##0";
}
}
if (gettime(6) == OCTOBER) {
if (#TMW2_LOGINBONUS != gettime(GETTIME_YEAR) && gettime(5) == 1) {
#TMW2_LOGINBONUS=gettime(GETTIME_YEAR);
getitem Coffee, 1;
getexp BaseLevel, JobLevel;
dispbottom "##B##2"+l("It's the International Coffee Day!")+" "+l("Have a warm cup of Coffee on the house, and enjoy!")+"##b##0";
}
}
if (gettime(6) == DECEMBER) {
if (!#XMAS_LOGINBONUS && gettime(5) >= 24 && gettime(5) <= 26) {
#XMAS_LOGINBONUS=1;
getitem XmasGift, 1;
dispbottom "##B##2"+l("Merry Christmas!")+" "+l("You have gained a special login bonus!")+"##b##0";
}
}
// We're almost done with daily logins, just the optional User Interface
if (!GSET_DAILYREWARD_SILENT) {
setnpcdialogtitle l("Daily Login Rewards");
setskin "daily_"+#LOGIN_STREAK;
mes "Please keep your ManaVerse updated.";
//mes "This is a debug message. Your ManaVerse version is wrong.";
//mes "You should not be reading this. I'll call you a cheater.";
//mes "I hope you report this (if a bug). Reading source code?";
//mes "Jak1 will hear about this. You are NOT amazing by the way.";
select("Ok");
setskin "";
closeclientdialog;
}
}
//debugmes "[DLBH] Finished: "+#LOGIN_DAY+" ok";
return;
}
// Gives you guild coins, but weekly (based on Guild Level)
function script guild_login_bonus {
.@g=getcharid(2);
if (.@g < 1)
return;
.@c=min(5, getguildavg(.@g)/20) + min(1+getguildlvl(.@g)/5, 10);
if (#LOGIN_GUILD_WEEK != gettimeparam(GETTIME_WEEKDAY)) {
#LOGIN_GUILD_WEEK=gettimeparam(GETTIME_WEEKDAY);
getitem GuildCoin, .@c;
dispbottom l("##2Guild's Weekly login bonus: ##B%d %s##b", .@c, getitemlink(GuildCoin));
}
return;
}
|