-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathob.user.js
5651 lines (5320 loc) · 191 KB
/
ob.user.js
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2007-2020 OmertaBeyond Dev Team
*
* OmertaBeyond is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OmertaBeyond is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OmertaBeyond. If not, see <http://www.gnu.org/licenses/>.
*
*/
// ==UserScript==
// @name Omerta Beyond
// @id Omerta Beyond
// @version 2.2.11
// @date 22-02-2022
// @description Omerta Beyond 2.2 (We're back to reclaim the throne ;))
// @homepageURL https://www.omertabeyond.net/
// @namespace v4.omertabeyond.com
// @updateURL https://raw.githubusercontent.com/OmertaBeyond/OBv2/master/ob.meta.js
// @supportURL https://github.com/OmertaBeyond/OBv2/issues
// @icon https://raw.githubusercontent.com/OmertaBeyond/OBv2/master/images/logo.small.png
// @screenshot https://raw.githubusercontent.com/OmertaBeyond/OBv2/master/images/logo.small.png
// @author OBDev Team <[email protected]>
// @author vBm <[email protected]>
// @author Dopedog <[email protected]>
// @author Rix <[email protected]>
// @author MrWhite <[email protected]>
// @author MurderInc <[email protected]>
// @author Sebbe <[email protected]>
// @author Brainscrewer <[email protected]>
// @author semitom <[email protected]>
// @license GPL-3.0-or-later
// @contributionURL https://www.patreon.com/bePatron?u=7718354
// @contributionAmount $1.00
// @encoding UTF-8
// @priority 1
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
// @require https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.0/howler.min.js
// @include http://*.barafranca.com/*
// @include https://*.barafranca.com/*
// @include http://barafranca.com/*
// @include https://barafranca.com/*
// @include http://*.barafranca.nl/*
// @include https://*.barafranca.nl/*
// @include http://barafranca.nl/*
// @include https://barafranca.nl/*
// @include http://*.barafranca.us/*
// @include https://*.barafranca.us/*
// @include http://barafranca.us/*
// @include https://barafranca.us/*
// @include http://*.barafranca.gen.tr/*
// @include https://*.barafranca.gen.tr/*
// @include http://barafranca.gen.tr/*
// @include https://barafranca.gen.tr/*
// @include http://omerta.com.tr/*
// @include https://omerta.com.tr/*
// @include http://*.omerta.com.tr/*
// @include https://*.omerta.com.tr/*
// @include http://*.omerta.dm/*
// @include https://*.omerta.dm/*
// @include http://omerta.dm/*
// @include https://omerta.dm/*
// @include http://*.omerta.pt/*
// @include https://*.omerta.pt/*
// @include http://omerta.pt/*
// @include https://omerta.pt/*
// @include https://*.omerta.land*
// @exclude http://*/game-register.php*
// @exclude https://*/game-register.php*
// @grant GM_xmlhttpRequest
// @grant GM.xmlHttpRequest
// @grant unsafeWindow
// @connect gm.omertabeyond.net
// @connect self
// ==/UserScript==
// ==OpenUserJS==
// @author vBm
// @collaborator Gwildor
// @collaborator MurderInc
// @collaborator Sebbe
// @collaborator Brainscrewer
// @collaborator Ivdbroek85
// ==/OpenUserJS==
/*
* Define constants for our website
*/
var OB_API_WEBSITE = 'https://gm.omertabeyond.net';
var OB_API_NEW_WEBSITE = 'https://api.omertabeyond.net';
var OB_NEWS_WEBSITE = 'https://news.omertabeyond.net';
var OB_RIX_WEBSITE = 'https://rix.omertabeyond.net';
var OB_CDN_URL = 'https://d1oi19aitxwcck.cloudfront.net';
var OB_VERSION = '2.2.11';
/*
* Define crucial functions and variables
*/
// Greasemonkey 4+ compatibility
if (typeof unsafeWindow == 'undefined' && typeof window.wrappedJSObject != 'undefined') {
unsafeWindow = window.wrappedJSObject;
}
function whatV(hostname) {
hostname = hostname || window.location.hostname;
if (hostname.endsWith('omerta.land')) {
return 'dev';
} else if (hostname.endsWith('barafranca.com')) {
return 'com';
} else if (hostname.endsWith('omerta.dm')) {
return 'dm';
} else if (hostname.endsWith('barafranca.nl')) {
return 'nl';
} else if (hostname.endsWith('omerta.com.tr')) {
return 'tr';
} else if (hostname.endsWith('omerta.pt')) {
return 'pt';
}
return undefined;
}
var v = whatV();
var ranks = ['Empty-suit', 'Delivery Boy', 'Delivery Girl', 'Picciotto', 'Shoplifter', 'Pickpocket', 'Thief', 'Associate', 'Mobster', 'Soldier', 'Swindler', 'Assassin', 'Local Chief', 'Chief', 'Bruglione', 'Capodecina', 'Godfather', 'First Lady'];
var cities = ['Detroit', 'Chicago', 'Palermo', 'New York', 'Las Vegas', 'Philadelphia', 'Baltimore', 'Corleone'];
function randomString(length) {
var charset = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
var result = '';
if (window.crypto && window.crypto.getRandomValues) {
values = new Uint32Array(length);
window.crypto.getRandomValues(values);
for (var i = 0; i < length; i++) {
result += charset[values[i] % charset.length];
}
return result;
}
for (var i = 0; i < length; i++) {
result += charset[Math.floor(Math.random() * charset.length)];
}
return result;
}
if (localStorage.getItem('ob_uid') === null) {
localStorage.setItem('ob_uid', randomString(9));
}
/*
* Settings helpers
*/
function getV(name, standard) {
return (localStorage[name + '_' + v] || standard);
}
function setV(name, value) {
return (localStorage[name + '_' + v] = value);
}
function getA(name) {
return (JSON.parse(localStorage[name + '_' + v]));
}
if (localStorage['prefs_' + v]) {
var prefs = getA('prefs');
} else {
var prefs = {};
}
if (localStorage['sets_' + v]) {
var sets = getA('sets');
} else {
var sets = {};
}
function setA(name, pref, value) {
if (name === 'prefs') {
prefs[pref] = value;
return (localStorage[name + '_' + v] = JSON.stringify(prefs));
}
if (name === 'sets') {
sets[pref] = value;
return (localStorage[name + '_' + v] = JSON.stringify(sets));
}
}
function clearUserData() {
var permanent = {
ob_uid: localStorage.getItem('ob_uid'),
ob_skip_version: localStorage.getItem('ob_skip_version'),
ob_last_update_prompt: localStorage.getItem('ob_last_update_prompt'),
ob_last_version: localStorage.getItem('ob_last_version')
};
localStorage.clear();
for (var key in permanent) {
if (permanent.hasOwnProperty(key)) {
localStorage.setItem(key, permanent[key]);
}
}
}
function assetUrl(path) {
return OB_API_WEBSITE + '/gh/OBv2/v' + OB_VERSION + path;
}
/*
* Helper functions
*/
function rand(min, max) {
return Math.floor(((max - min) + 1) * Math.random()) + min;
}
function array_sum(array) {
return array.reduce(function (a, b) {
return (a + b);
});
}
function iMin(array) {
return array.indexOf(Math.min.apply({}, array));
}
function on_page(str) {
if (window.location.hash.indexOf(str) != -1) {
return true;
}
return false;
}
function time() {
return Math.floor(parseInt(new Date().getTime(), 10) / 1000);
}
function GetParam(name) {
var results = new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(window.location.href);
return results === null ? 0 : (results[1] || 0);
}
function isVisible(node) {
var win = $(window);
var viewport = {
top: win.scrollTop(),
left: win.scrollLeft()
};
viewport.right = viewport.left + win.width();
viewport.bottom = viewport.top + win.height();
var bounds = node.offset();
bounds.right = bounds.left + node.outerWidth();
bounds.bottom = bounds.top + node.outerHeight();
return (!(viewport.right < bounds.left || viewport.left > bounds.right || viewport.bottom < bounds.top || viewport.top > bounds.bottom));
}
// show footer div only when last tr is not visible
function toggleFooterVisibility() {
if (isVisible($('tr:has(input[name="shipcity"])'))) {
$('#footer').css('display', 'none');
} else {
$('#footer').css('display', 'block');
}
}
function voteNow(save) {
$('a[name="forticket"]').each(function () {
window.open(this);
});
if (save) { // store last voting time
setV('lastvote', time());
}
}
function delMsg(what, name) {
$('tr[class*="color"]').each(function () {
var msgTr = $(this);
var msgTitle = msgTr.find('td:eq(1)').text().replace(/\s/g, '').replace(/(\[\d+\])/g, '');
var thismsgid = msgTr.find('td:eq(1)').find('a').attr('href').split('iMsgId=')[1];
name = name.replace(/\s/g, '').replace(/(\[\d+\])/g, '');
if (what == 'id') {
if (name == thismsgid) {
$.get('//' + document.location.hostname + '/BeO/webroot/index.php?module=Mail&action=delMsg&iId=' + thismsgid + '&iParty=2', function () {
$('font[color="red"]').text('Message deleted.');
});
msgTr.hide();
msgTr.next().hide();
}
} else if (what == 'name') {
if (name == msgTitle) {
$.get('//' + document.location.hostname + '/BeO/webroot/index.php?module=Mail&action=delMsg&iId=' + thismsgid + '&iParty=2', function () {
$('font[color="red"]').text('Message deleted.');
});
msgTr.hide();
msgTr.next().hide();
}
}
});
}
function commafy(number) {
var str = (number + '').split('.'),
dec = str[1] || '',
number = str[0].replace(/(\d)(?=(\d{3})+\b)/g, '$1,');
return (dec) ? number + '.' + dec : number;
}
function getPow(name, i, def) {
var info = getV(name, '' + def);
var w;
if (name == 'bninfo') {
w = 2; // set width of buckets
} else if (name == 'prefs') {
w = 1;
}
return (1 * info.substr((i * w), w)); // return int version of bucket
}
function setPow(name, i, value) {
var info = getV(name, '0');
var w;
if (name == 'bninfo') {
w = 2; // set width of buckets
} else if (name == 'prefs') {
w = 1;
}
i = i * w; // set string index
value += ''; // toString
while (value.length < w) {
value = '0' + value; // pad with zeros
}
if (i > 0 && (i + w) < info.length) {
info = info.substring(0, i) + value + info.substring(i + w); // value goes in middle
} else if (i === 0) {
info = value + info.substring(w); // value goes at beginning
} else if ((i + w) >= info.length) {
info = info.substring(0, i) + value; // value goes at end
} else {
return;
}
setV(name, info); // store string
}
function bnUpdate() {
var nick, rank, bloodType, city, ride;
nick = unsafeWindow.omerta.character.info.name();
rank = unsafeWindow.omerta.character.progress.rank();
bloodType = unsafeWindow.omerta.character.info.bloodtype();
city = unsafeWindow.omerta.character.game.city();
var possessions = unsafeWindow.omerta.modules.UserInformation.data.possessions;
if (possessions) {
$.each(possessions, function(i) {
if (possessions[i].type == 'plane') {
ride = possessions[i].name_owned;
}
});
}
setV('bloodType', bloodType);
setV('nick', nick);
// define max b/n judging by rank
var maxBooze = [1, 2, 2, 5, 7, 10, 15, 20, 25, 30, 35, 40, 45, 50, 60, 70, 70, 70];
var maxNarcs = [0, 0, 0, 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 20, 20, 20];
for (var booze = 0, narc = 0, i = 0; i <= 17; i++) {
if (ranks[i] == rank) {
booze = maxBooze[i];
narc = maxNarcs[i];
break;
}
}
setPow('bninfo', 0, narc);
setPow('bninfo', 1, booze);
// parse city to ID
for (var cityCode = 0, i = 0; i < 8; i++) {
if (city == cities[i]) {
cityCode = i + 4;
break;
}
}
setPow('bninfo', 2, cityCode); // save
// parse plane to ID
var rides = ['none', 'geen', 'Fokker DR-1', 'Havilland DH 82A', 'Fleet 7', 'Douglas DC-3'];
for (var plane = 0, i = 0; i <= 5; i++) {
if (rides[i] == ride) {
plane = [0, 0, 1, 2, 3, 4][i];
break;
}
}
setPow('bninfo', 3, plane); // save
}
var soundPlaying = false;
var soundQueue = [];
function playNextSound() {
if (soundQueue.length > 0) {
soundPlaying = true;
var sound = new Howl({
src: [ soundQueue.shift() ],
onend: function() {
window.setTimeout(playNextSound, 250);
}
});
sound.play();
} else {
soundPlaying = false;
}
}
function playSound(topic) {
if (prefs['use_tts']) {
src = OB_CDN_URL + '/sounds/tts/' + topic + '.mp3';
} else {
src = OB_CDN_URL + '/sounds/beep.mp3';
}
soundQueue.push(src);
if (!soundPlaying) {
playNextSound();
}
}
function CheckBmsg() {
setTimeout(function () {
var lastbmsg = getV('lastbmsg', 0);
$.get(OB_API_WEBSITE + '/?p=bmsg&v=' + v + '&last=' + lastbmsg, function (response) {
var deaths = response['deaths'].length;
var news = response['news'].length;
if (news == 1 && (prefs['bmsgNews'] || prefs['bmsgNews_sound'])) {
var bmsgNewsTxt = 'A new article is posted ' + OB_NEWS_WEBSITE + '\n\n';
var bmsgNewsTitle = response['news'][0]['title'];
bmsgNewsTxt += response['news'][0]['preview'];
if (prefs['bmsgNews']) {
var notification = new Notification(bmsgNewsTitle, {
dir: 'auto',
lang: '',
body: bmsgNewsTxt,
tag: 'news',
icon: assetUrl('/images/red-star.png')
});
notification.onclose = function () {
setTimeout(CheckBmsg(), 60000);
};
notification.onclick = function () {
window.open(OB_NEWS_WEBSITE + '/' + response['news'][0]['id']);
notification.close();
};
var autoCloseSecs = parseInt(sets['autoCloseNotificationsSecs'] || 0, 10);
if (autoCloseSecs > 0) {
setTimeout(function() {
notification.close();
}, autoCloseSecs * 1000);
}
}
if (prefs['bmsgNews_sound']) {
playSound('news');
}
setV('lastbmsg', response['news'][0]['ts']);
} else if ((prefs['bmsgDeaths'] || prefs['bmsgDeaths_sound']) && (deaths >= 1)) {
var bmsgDeathsTxt = response['deaths'].length + ' people died:\n\n';
var bmsgDeathsTitle = 'Deaths! (' + v + ')';
var am = (response['deaths'].length < 10 ? response['deaths'].length : 10);
for (var i = 0; i < am; i++) {
var bmsgD = new Date(response['deaths'][i]['ts'] * 1000);
var bmsgTime = (bmsgD.getHours() < 10 ? '0' : '') + bmsgD.getHours() + ':' + (bmsgD.getMinutes() < 10 ? '0' : '') + bmsgD.getMinutes() + ':' + (bmsgD.getSeconds() < 10 ? '0' : '') + bmsgD.getSeconds();
var bmsgExtra = (response['deaths'][i]['akill'] == 1) ? '(A)' : (response['deaths'][i]['bf'] == 1) ? '(BF)' : '';
var bmsgFam = (response['deaths'][i]['fam'] === '') ? '(none)' : '(' + response['deaths'][i]['fam'] + ')';
bmsgDeathsTxt += bmsgExtra + ' ' + bmsgTime + ' ' + response['deaths'][i]['name'] + ' ' + response['deaths'][i]['rank_text'] + ' ' + bmsgFam + '\n';
}
if (prefs['bmsgDeaths']) {
var notification = new Notification(bmsgDeathsTitle, {
dir: 'auto',
lang: '',
body: bmsgDeathsTxt,
tag: 'deaths',
icon: assetUrl('/images/rip.png')
});
notification.onclose = function () {
setTimeout(CheckBmsg(), 60000);
};
notification.onclick = function () {
unsafeWindow.omerta.GUI.container.loadPage('./BeO/webroot/index.php?module=Statistics&action=global_stats');
window.focus();
notification.close();
};
var autoCloseSecs = parseInt(sets['autoCloseNotificationsSecs'] || 0, 10);
if (autoCloseSecs > 0) {
setTimeout(function() {
notification.close();
}, autoCloseSecs * 1000);
}
}
if (prefs['bmsgDeaths_sound']) {
playSound('death');
}
setV('lastbmsg', response['deaths'][0]['ts']);
}
setTimeout(function () {
CheckBmsg();
}, 60000);
});
}, 0);
}
var scheduledNotifications = [];
var notificationsArray = [];
function ScheduleNotification(topic, firesAt, title, text, tag, callbackUrl, beyondIcon) {
if ((prefs['notify_' + topic] || prefs['notify_' + topic + '_sound']) && !scheduledNotifications.hasOwnProperty(topic)) {
var timeout = parseInt(firesAt, 10) - unsafeWindow.omerta.Clock.getTime() / 1000;
if (timeout > 0) {
scheduledNotifications[topic] = true;
setTimeout(function() {
delete scheduledNotifications[topic];
if (prefs['notify_' + topic]) {
SendNotification(title, text, tag, callbackUrl, beyondIcon);
}
if (prefs['notify_' + topic + '_sound']) {
playSound(topic);
}
}, timeout * 1000);
}
}
}
function SendNotification(title, text, tag, callbackUrl, beyondIcon) {
var notification = new Notification(title, {
dir: 'auto',
lang: '',
body: text,
tag: tag,
icon: beyondIcon
});
notification.onclick = function () {
if (callbackUrl !== null) {
unsafeWindow.omerta.GUI.container.loadPage(callbackUrl);
}
window.focus();
notification.close();
};
// Automatically close notification
var autoCloseSecs = parseInt(sets['autoCloseNotificationsSecs'] || 0, 10);
if (autoCloseSecs > 0) {
setTimeout(function() {
notification.close();
delete notificationsArray[tag];
}, autoCloseSecs * 1000);
}
notificationsArray[tag] = notification;
}
function CheckServiceVariable() {
var intervalId = setInterval(function() {
var serviceData = unsafeWindow.omerta.services.account.data;
if (serviceData.logout) {
clearInterval(intervalId);
return;
}
if (prefs['notify_health'] || prefs['notify_health_sound']) {
var newHealth = parseFloat(serviceData.progressbars.health);
var oldHealth = parseFloat(getV('serviceHealth', 0));
if (oldHealth > 0 && (oldHealth > newHealth)) {
var healthText = 'You lost ' + (oldHealth - newHealth) + ' health!';
var healthTitle = 'Health (' + v + ')';
if (prefs['notify_health']) {
SendNotification(healthTitle, healthText, 'health', './BeO/webroot/index.php?module=Bloodbank', assetUrl('/images/red-star.png'));
}
if (prefs['notify_health_sound']) {
playSound('health');
}
}
setV('serviceHealth', newHealth);
}
// check for new messages if they want them
if (serviceData.messages.inbox.length > 0 && (prefs['notify_messages'] || prefs['notify_messages_sound'])) {
var lastMessage = parseInt(getV('lastMessage', 0), 10);
var totalMessages = 0;
$.each(serviceData.messages.inbox, function(i, val) {
var id = parseInt(val.id, 10);
if (lastMessage === id) {
return false;
}
totalMessages += 1;
});
if (totalMessages !== 0) {
var msgId = parseInt(serviceData.messages.inbox[0].id, 10);
var msgTitle = '';
var msgText = '';
var callbackUrl = './BeO/webroot/index.php?module=Mail&action=showMsg&iMsgId=';
setV('lastMessage', msgId);
if (totalMessages === 1) {
msgText = 'Message: ' + serviceData.messages.inbox[0].msg.replace(/<br \/>/g, '');
msgTitle = 'New message from ' + serviceData.messages.inbox[0].frm + ': ' + serviceData.messages.inbox[0].sbj + ' (' + v + ')';
callbackUrl = callbackUrl + msgId;
} else {
msgText = 'You have got ' + totalMessages + ' new messages';
msgTitle = 'New messages (' + v + ')';
callbackUrl = './BeO/webroot/index.php?module=Mail&action=inbox';
}
if (prefs['notify_messages']) {
SendNotification(msgTitle, msgText, 'Mail', callbackUrl, assetUrl('/images/red-star.png'));
}
if (prefs['notify_messages_sound']) {
playSound('messages');
}
}
}
// check for new alerts if they want them
if (serviceData.messages.alert.length > 0 && (prefs['notify_alerts'] || prefs['notify_alerts_sound'])) {
// msgId -1 is a friend request
var lastAlert = parseInt(getV('lastAlert', 0), 10);
var totalAlerts = 0;
$.each(serviceData.messages.alert, function(i, val) {
var id = (val.id ? parseInt(val.id, 10) : -1);
if (lastAlert === id) {
return false;
}
totalAlerts += 1;
});
if (totalAlerts !== 0) {
var msgId = (serviceData.messages.alert[0].id ? parseInt(serviceData.messages.alert[0].id, 10) : -1);
var alertTitle = '';
var alertText = '';
var callbackUrl = './BeO/webroot/index.php?module=Mail&action=showMsg&iMsgId=';
setV('lastAlert', msgId);
if (totalAlerts === 1) {
// If it's a friend request, it has no msg or id
if (serviceData.messages.alert[0].sbj !== 'Friend Request(s)') {
alertText = 'Alert: ' + serviceData.messages.alert[0].msg.replace(/<br \/>/g, '');
alertTitle = 'Alert! ' + serviceData.messages.alert[0].sbj + ' (' + v + ')';
callbackUrl = callbackUrl + msgId;
} else {
alertText = 'Alert: You got a new friend request!';
alertTitle = 'Alert! ' + serviceData.messages.alert[0].sbj + ' (' + v + ')';
callbackUrl = serviceData.messages.alert[0].link;
}
} else {
alertText = 'You have got ' + totalAlerts + ' new alerts';
alertTitle = 'Alert! (' + v + ')';
callbackUrl = './BeO/webroot/index.php?module=Mail&action=inbox';
}
if (prefs['notify_alerts']) {
SendNotification(alertTitle, alertText, 'alert', callbackUrl, assetUrl('/images/red-star.png'));
}
if (prefs['notify_alerts_sound']) {
playSound('alerts');
}
}
}
ScheduleNotification(
'gta',
$('[data-cooldown="car"] input').attr('data-knob-timeend'),
(v == 'nl' ? 'Steel een auto (' + v + ')' : 'Nick a car (' + v + ')'),
(v == 'nl' ? 'Je kunt weer een auto stelen' : 'You can nick a car'),
'Car',
'/?module=Cars',
assetUrl('/images/red-star.png')
);
ScheduleNotification(
'crime',
$('[data-cooldown="crime"] input').attr('data-knob-timeend'),
(v == 'nl' ? 'Misdaad (' + v + ')' : 'Crime (' + v + ')'),
(v == 'nl' ? 'Je kunt weer een misdaad doen' : 'You can do a crime'),
'Crime',
'/?module=Crimes',
assetUrl('/images/red-star.png')
);
ScheduleNotification(
'travel',
$('[data-cooldown="travel"] input').attr('data-knob-timeend'),
(v == 'nl' ? 'Reizen (' + v + ')' : 'Travel (' + v + ')'),
(v == 'nl' ? 'Je kunt reizen' : 'You can travel'),
'Travel',
'/?module=Travel',
assetUrl('/images/red-star.png')
);
ScheduleNotification(
'bullets',
$('[data-cooldown="bullets"] input').attr('data-knob-timeend'),
(v == 'nl' ? 'Kogels (' + v + ')' : 'Bullets (' + v + ')'),
(v == 'nl' ? 'Je kunt kogels kopen' : 'You can buy bullets'),
'Bullets',
'/bullets2.php',
assetUrl('/images/red-star.png')
);
}, 5000);
}
function getOmertaTime() {
if (typeof unsafeWindow.omerta.server.clock !== 'undefined') {
return unsafeWindow.omerta.server.clock.getTime();
}
if (typeof unsafeWindow.omerta.Clock !== 'undefined') {
return unsafeWindow.omerta.Clock.getTime();
}
return Date.now();
}
var versionHasLogger = v == 'com' || v == 'nl' || v == 'dm' || v == 'pt';
var boozenames = ['NO BOOZE', 'Wine', 'Beer', 'Rum', 'Cognac', 'Whiskey', 'Amaretto', 'Port'];
var narcnames = ['NO NARCS', 'Morphine', 'Marijuana', 'Glue', 'Heroin', 'Opium', 'Cocaine', 'Tabacco'];
function calcRaidResult(profit, protection) {
return profit * (110 - protection) / 1000;
}
// function to parse date string (09-07-2014 09:30:54)
function datestringParse(dateString) {
var dateTime = dateString.split(' ');
var date = dateTime[0].split('-');
var dd = date[0];
var mm = date[1] - 1;
var yyyy = date[2];
var time = dateTime[1].split(':');
var h = time[0];
var m = time[1];
var s = parseInt(time[2], 10); // get rid of that 00.0;
return new Date(yyyy, mm, dd, h, m, s);
}
/**
* Checks if the user is alive
* @param {[String]} user
* @return {Boolean}
*/
function checkUserAlive(user, callback) {
$.getJSON('//' + document.location.hostname + '/BeO/webroot/index.php?module=API&action=user&name=' + encodeURIComponent(user), function (response) {
callback(response.data.status !== '3');
});
}
// ---------------- NickReader ----------------
var nickReaderIcon = assetUrl('/images/magnifier.png');
var loadingIcon = assetUrl('/images/loading.png');
function parseGrab(html, url) {
var body = html.slice(html.indexOf('</head>') + 7);
// make sure all requests are handled separately
var ident = url.split('=')[1];
// Check for clicklimit
if (body.indexOf('You reached your click limit.') == -1) {
// Add placeholder div
$('body').append(
$('<div>').attr('id', 'XHRDiv' + ident).html(body).hide()
);
// grabbing keys
var keys = [];
$('#XHRDiv' + ident + ' > center > table#user > tbody > tr > td.subtableheader').each(function (n) {
keys[n] = $.trim($(this).text());
});
keys.shift();
// grabbing values
var vals = [];
$('#XHRDiv' + ident + ' > center > table#user > tbody > tr > td.profilerow').each(function (n) {
vals[n] = $.trim($(this).text());
});
vals.pop();
vals.shift(); vals.shift();
// parse certain values to make them fit within the popup
vals = vals.map(function(col) {
// Limit status
if (col.indexOf(' online ') != -1) {
return col.slice(0, col.indexOf(' online ') + 7);
}
// Limit HP
if (/\(Click|\(Klik/.test(col)) {
return col.slice(0, col.indexOf('('));
}
// Limit family string
if (col.indexOf('(CapoRegime:') != -1) {
return col.slice(0, col.indexOf('('));
}
// Limit marital status
if (/Married Couple:|Getrouwd stel:/.test(col)) {
return col.split(/Married |Getrouwd /)[1];
}
return col;
}).filter(function(col) {
// Filter friends, SMS and organised crimes from vals
return !/ Friends| vrienden/.test(col) && col.indexOf('Send SMS') == -1 && col.indexOf('Available') == -1 && col.indexOf('Tired') == -1 && col.indexOf('Beschikbaar') == -1 && col.indexOf('Moe') == -1;
});
keys = keys.filter(function(col) {
// Filter friends, SMS and organised crimes from keys
return !/Friends:|Vrienden:/.test(col) && !/Heist Status:/.test(col) && !/Organised Crime Status:|Georganiseerde Misdaad Status:/.test(col) && col.indexOf('SMS Status') == -1;
});
// Create table
$('#' + ident).attr('name', 'done').empty().append(
$('<table>').attr({
id: 'NRtable'
}),
$('<img>').attr('src', nickReaderIcon).addClass('NRicon')
);
// Add keys and values to table
for (var i = 0; i < keys.length; i++) {
$('#NRtable').append(
$('<tr>').append(
$('<td>').attr('height', '15').text(keys[i]),
$('<td>').text(vals[i])
)
);
}
// Remove the placeholder div
$('#XHRDiv' + ident).remove();
// End the process
$('#proc').text(0);
} else {
$('#' + ident).text('Clicklimit, please try again...');
$('#proc').text(0);
}
}
function checkNRdiv(url, nickId) {
// is the NR activated?
var on = ($('#shft').text() == '1' ? 1 : 0);
// default is to add popup
var go = 1;
// check for an existing popup
if ($('#' + nickId).length > 0) {
var popup = $('#' + nickId);
if (on) { // if it's there, let's see it
popup.css('display', 'block');
}
go = 0; // we found a popup already
// check for any empty values
if (popup.html().indexOf('<td></td></tr>') != -1) {
popup.remove();
go = 1; // it's no good though
}
// check if it's loaded yet (clicklimit)
if ($('#' + nickId).attr('name') == 'loading') {
popup.remove();
go = 1; // it's no good though
}
}
// yes we may proceed to add the popup
if (go && on) {
$('body').append(
$('<div>').attr('id', nickId).addClass('NRinfo').text('Loading info..').append(
$('<img>').attr('src', loadingIcon)
)
);
// add follow the mouse
$(window).mousemove(function(mouse) {
var divH = $('#' + nickId).height();
var divW = $('#' + nickId).width();
var X = mouse.pageX;
var Y = mouse.pageY;
var plusX = 20;
var plusY = 20;
if (X + divW + 20 > $(window).width()) { // if box falls of the right
plusX = -20 - divW;
}
if (Y + divH + 20 > $(window).innerHeight()) { // if box falls of the bottom
plusY = -20 - divH;
}
$('#' + nickId).css('left', X + plusX);
$('#' + nickId).css('top', Y + plusY);
});
// add popup to page
$('#' + nickId).attr('name', 'loading');
// check if there isn't a process running already, otherwise grab the HTML
if ($('#proc').text() === '0') {
$.get(url, function(data) {
parseGrab(data, url);
});
$('#proc').text(1);
} else {
$('#' + nickId).text('Wait for the previous..');
}
}
}
function nickReader() {
var nicks = $('a[href*="user.php"]:not([href*="&jh="])');
if (nicks.length > 0) {
// don't run this part twice
if ($('#NRstatus').length === 0) {
$('#game_header_marquee').append(
$('<div>').attr('id', 'NRstatus').css({
position: 'relative',
display: 'none'
}).append(
$('<center>').append(
$('<img>').attr('src', nickReaderIcon),
$('<b>').text('Nickreader enabled')
)
)
);
// setup shift event checker
if ($('#shft').length === 0) {
$('body').append(
$('<div>').attr('id', 'shft').text('0').hide()
);
}
// setup process checker
if ($('#proc').length === 0) {
$('body').append(
$('<div>').attr('id', 'proc').text('0').hide()
);
}
// add shift keydown handler
$(window).keydown(function(event) {
var key = event.which;
if (key == 16) {
if ($('#shft').text() === '0') {
$('#NRstatus').show('slow');
$('#shft').text(1);
} else {
$('#NRstatus').hide('slow');
$('#shft').text(0);
$('#proc').text(0);
$('div[id^="XHRDiv"]').remove();
}
}
});
}
// add mouse event checkers
nicks.each(function() {
if ($(this).attr('href').search('cpuser') == -1) {
var nickId = $(this).attr('href').split('=')[1];
$(this).mouseover(function() {
checkNRdiv($(this).attr('href'), nickId);
});
$(this).mouseout(function() {
if ($('#' + nickId)) {
$('#' + nickId).remove();
}
});
}
});
// focus on frame so 'shift' event is noticed
$(window).focus();
}
}
/*
* Chat listener
*/
if (document.getElementById('omerta_chat') !== null && typeof MutationObserver != 'undefined') {
var firstMessageTs;
var chatObserver = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
for (var i = 0; i < mutation.addedNodes.length; i++) {
var node = mutation.addedNodes[i];
if (node.nodeType == 1 && !node.hasAttribute('data-beyond-fired') && $(node).hasClass('user-message-text')) {