-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1015 lines (805 loc) · 36.6 KB
/
index.html
File metadata and controls
1015 lines (805 loc) · 36.6 KB
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
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123635827-25"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123635827-25');
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paper io 3 - Unblocked</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#252525"/>
<meta name="description" content="PaPeR.io 3 Biz online With Premium Skins Free and Paper.io 2 World Ranking, play, save your scores, and learn your world-wide ranking, Get high score and represent your country worldwide"/>
<meta property="og:url" content="https://paperio3.biz">
<meta property="og:type" content="website">
<meta property="og:title" content="Paper io 3 - Unblocked">
<meta property="og:description" content="PaPeR.io 3 Biz online With Premium Skins Free and Paper.io 2 World Ranking, play, save your scores, and learn your world-wide ranking, Get high score and represent your country worldwide">
<meta property="og:image" content="https://paperio3.biz/img/og.png">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap" rel="stylesheet">
<link href="css/stil-1647737044.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<script src="tl.js"></script>
<script>
//coo
!function(e){var n=!1;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var o=window.Cookies,t=window.Cookies=e();t.noConflict=function(){return window.Cookies=o,t}}}(function(){function g(){for(var e=0,n={};e<arguments.length;e++){var o=arguments[e];for(var t in o)n[t]=o[t]}return n}return function e(l){function C(e,n,o){var t;if("undefined"!=typeof document){if(1<arguments.length){if("number"==typeof(o=g({path:"/"},C.defaults,o)).expires){var r=new Date;r.setMilliseconds(r.getMilliseconds()+864e5*o.expires),o.expires=r}o.expires=o.expires?o.expires.toUTCString():"";try{t=JSON.stringify(n),/^[\{\[]/.test(t)&&(n=t)}catch(e){}n=l.write?l.write(n,e):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=(e=(e=encodeURIComponent(String(e))).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent)).replace(/[\(\)]/g,escape);var i="";for(var c in o)o[c]&&(i+="; "+c,!0!==o[c]&&(i+="="+o[c]));return document.cookie=e+"="+n+i}e||(t={});for(var a=document.cookie?document.cookie.split("; "):[],f=/(%[0-9A-Z]{2})+/g,s=0;s<a.length;s++){var p=a[s].split("="),d=p.slice(1).join("=");'"'===d.charAt(0)&&(d=d.slice(1,-1));try{var u=p[0].replace(f,decodeURIComponent);if(d=l.read?l.read(d,u):l(d,u)||d.replace(f,decodeURIComponent),this.json)try{d=JSON.parse(d)}catch(e){}if(e===u){t=d;break}e||(t[u]=d)}catch(e){}}return t}}return(C.set=C).get=function(e){return C.call(C,e)},C.getJSON=function(){return C.apply({json:!0},[].slice.call(arguments))},C.defaults={},C.remove=function(e,n){C(e,"",g(n,{expires:-1}))},C.withConverter=e,C}(function(){})});
</script>
</head>
<body>
<style>
h1{
color: #a4d267;
font-size: 28px;
}
h2{
color: #4baf73;
font-size: 19px;
margin-bottom: 5px;
margin-top: 10px;
line-height: 24px;
}
h3{}
p{
line-height: 23px;
}
.mpr{
width:100%;
}
.seffaf{
background: rgb(255 255 255 / 38%);
}
.naseffaf{
background: rgb(255 255 255 / 75%);
}
.hacik {
left: 0px !important;
transition: all .5s;
}
.hkapali {
left: -380px !important;
transition: all .5s;
}
ul.hareketler {
position: fixed;
margin: 0;
bottom: 5px;
left: 5px;
width: 360px;
padding: 10px;
z-index: 500;
border-radius: 3px;
list-style: none;
}
ul.hareketler li{
font-size: 13px;
}
ul.hareketler span:hover {
cursor: pointer;
color: #ffec6e;
background: #4e4820;
}
ul.hareketler span {
float: left;
margin-right: 5px;
position: absolute;
font-weight: 700;
top: -23px;
color: #222;
right: -140px;
background: #ffd43e;
padding: 0 5px;
border-radius: 2px;
box-shadow: 0px -1px 4px 0px #00000061;
}
ul.hareketler div{
float: left;
margin-right: 5px;
}
ul.hareketler {
z-index: 8888;
}
.ackapat{
}
.actik {
right: -6px !important;
top: -25px !important;
bottom: unset !important;
}
.kapattik {
right: -140px !important;
top: unset !important;
bottom: 0px !important;
}
</style>
<ul style="display:none;" class="hareketler naseffaf hkapali">
<span class="ackapat kapattik" onclick="ackapat();">Open Live Stats</span>
</ul>
<div id="preroll"></div>
<script>
function ackapat(){
if($("ul.hareketler").hasClass("hacik")){
$("ul.hareketler").removeClass("hacik").addClass("hkapali");
$(".ackapat").removeClass("actik").addClass("kapattik");
$(".ackapat").text("Open Live Stats");
$(".ackapat").animate({right:-140});
} else {
$("ul.hareketler").removeClass("hkapali").addClass("hacik");
$(".ackapat").text("Close Live Stats");
$(".ackapat").removeClass("kapattik").addClass("actik");
$(".ackapat").animate({right:-6});
}
}
function getScript(src) {
var headElm = document.head || document.getElementsByTagName('head')[0];
var script = document.createElement("script");
var once = true;
script.async = "async";
script.type = "text/javascript";
script.charset = "UTF-8";
script.src = src;
script.onload = script.onreadystatechange = function() {
if (once && (!script.readyState || /loaded|complete/.test(script.readyState))) {
once = false;
script.onload = script.onreadystatechange = null;
oldu=1;
console.log("okeey");
}
};
headElm.appendChild(script);
}
jQuery(window).on("load",function(){
getScript("//api.adinplay.com/libs/aiptag/pub/GRL/paperio3.biz/tag.min.js");
});
window.aiptag = window.aiptag || {cmd: []};
aiptag.cmd.display = aiptag.cmd.display || [];
aiptag.cmd.player = aiptag.cmd.player || [];
//CMP tool settings
aiptag.cmp = {
show: true,
position: "centered", //centered, bottom
button: true,
buttonText: "Privacy settings",
buttonPosition: "bottom-left" //bottom-left, bottom-right, top-left, top-right
}
aiptag.cmd.player.push(function() {
aiptag.adplayer = new aipPlayer({
AD_WIDTH: 960,
AD_HEIGHT: 540,
AD_DISPLAY: 'fullscreen', //default, fullscreen, center, fill
LOADING_TEXT: 'loading advertisement',
PREROLL_ELEM: function(){return document.getElementById('preroll')},
AIP_COMPLETE: function (evt) {
game_start();
},
AIP_REMOVE: function () {
// Here it's safe to remove the PREROLL_ELEM from the page if you want. But it's not recommend.
}
});
});
function show_preroll() {
//check if the adslib is loaded correctly or blocked by adblockers etc.
if (typeof aiptag.adplayer !== 'undefined') {
aiptag.cmd.player.push(function() { aiptag.adplayer.startPreRoll(); });
} else {
game_start();
}
}
</script>
<input type="hidden" id="myUlke" value="0" />
<div style="display:none;" class="kapkap"></div>
<ul style="display:none;" class="skinList"></ul>
<div class="main">
<div class="left" data-tilt>
<div class="skinBaslik">Free Premium Paperio Skins</div>
<ul class="skinList">
<li id="default" class="skinz s_pasif"><img src="skins/skin_thumbs/default.png" /><span>No Skin</span></li>
<li id="worm" class="skinz s_pasif"><img src="skins/skin_thumbs/worm.png" /><span>Worm</span></li>
<li id="smile" class="skinz s_pasif"><img src="skins/skin_thumbs/smile.png" /><span>Smile</span></li>
<li id="ugly" class="skinz s_pasif"><img src="skins/skin_thumbs/ugly.png" /><span>Ugly</span></li>
<li id="spacecraft" class="skinz s_pasif"><img src="skins/skin_thumbs/spacecraft.png" /><span>Spacecraft</span></li>
<li id="bus" class="skinz s_pasif"><img src="skins/skin_thumbs/bus.png" /><span>Bus</span></li>
<li id="superman" class="skinz s_pasif"><img src="skins/skin_thumbs/superman.png" /><span>Superman</span></li>
<li id="superboy" class="skinz s_pasif"><img src="skins/skin_thumbs/superboy.png" /><span>Superboy</span></li>
<li id="jett" class="skinz s_pasif"><img src="skins/skin_thumbs/jett.png" /><span>Jet</span></li>
<li id="bat" class="skinz s_pasif"><img src="skins/skin_thumbs/bat.png" /><span>Batman</span></li>
<li id="bug" class="skinz s_pasif"><img src="skins/skin_thumbs/bug.png" /><span>Bug</span></li>
<li id="burger" class="skinz s_pasif"><img src="skins/skin_thumbs/burger.png" /><span>Burger</span></li>
<li id="cake" class="skinz s_pasif"><img src="skins/skin_thumbs/cake.png" /><span>Cake</span></li>
<li id="money" class="skinz s_pasif"><img src="skins/skin_thumbs/money.png" /><span>Monet</span></li>
<li id="cat" class="skinz s_pasif"><img src="skins/skin_thumbs/cat.png" /><span>Cat</span></li>
<li id="chr" class="skinz s_pasif"><img src="skins/skin_thumbs/chr.png" /><span>Christmas</span></li>
<li id="cupid" class="skinz s_pasif"><img src="skins/skin_thumbs/cupid.png" /><span>Cupid</span></li>
<li id="duck" class="skinz s_pasif"><img src="skins/skin_thumbs/duck.png" /><span>Duck</span></li>
<li id="freddy" class="skinz s_pasif"><img src="skins/skin_thumbs/freddy.png" /><span>Freddy</span></li>
<li id="ghost" class="skinz s_pasif"><img src="skins/skin_thumbs/ghost.png" /><span>Ghost</span></li>
<li id="heart" class="skinz s_pasif"><img src="skins/skin_thumbs/heart.png" /><span>Heart</span></li>
<li id="minion" class="skinz s_pasif"><img src="skins/skin_thumbs/minion.png" /><span>Minion</span></li>
<li id="orange" class="skinz s_pasif"><img src="skins/skin_thumbs/orange.png" /><span>Orange</span></li>
<li id="pizza" class="skinz s_pasif"><img src="skins/skin_thumbs/pizza.png" /><span>Pizza</span></li>
<li id="gift" class="skinz s_pasif"><img src="skins/skin_thumbs/gift.png" /><span>Gift</span></li>
<li id="rainbow" class="skinz s_pasif"><img src="skins/skin_thumbs/rainbow.png" /><span>Rainbow</span></li>
<li id="snow" class="skinz s_pasif"><img src="skins/skin_thumbs/snow.png" /><span>Snow</span></li>
<li id="spiderman" class="skinz s_pasif"><img src="skins/skin_thumbs/spiderman.png" /><span>Spiderman</span></li>
<li id="sushi" class="skinz s_pasif"><img src="skins/skin_thumbs/sushi.png" /><span>Sushi</span></li>
<li id="tank" class="skinz s_pasif"><img src="skins/skin_thumbs/tank.png" /><span>Tank</span></li>
<li id="telet" class="skinz s_pasif"><img src="skins/skin_thumbs/telet.png" /><span>Teletubie</span></li>
<li id="unic" class="skinz s_pasif"><img src="skins/skin_thumbs/unic.png" /><span>Unicorn</span></li>
<li id="waterm" class="skinz s_pasif"><img src="skins/skin_thumbs/waterm.png" /><span>Watermelon</span></li>
</ul>
<script>
$("ul.skinList li").on("click",function(){
if($(this).hasClass("s_pasif")){
$(".skinz").removeClass("s_aktif").addClass("s_pasif");
$(this).removeClass("s_pasif").addClass("s_aktif");
$("#selSkinImg").attr("src","https://paperio3.biz/skins/skin_thumbs/"+$(this).attr("id")+".png");
$("#selSkinImg1").attr("src","https://paperio3.biz/skins/skin_thumbs/"+$(this).attr("id")+".png");
//$("ul.skinList").hide();
$(".kapkap").hide();
}
var skinID = $(this).attr("id");
$("#skin").val(skinID);
skin_logla();
});
</script>
<div class="voks">
<div class="blok">
<div class="rec_blok">
<div class="rec_title">My Record</div>
<div class="rec_desc">🏆 0 %</div>
</div>
</div>
<div class="blok">
<div class="rec_blok2">
<div class="rec_title2">Online Players</div>
<div class="rec_desc2"><div>🎮</div><div id="online">3780</div>
</div>
</div>
</div>
</div>
</div>
<div class="center">
<a title="paper.io 2 unblocked" href="index.html"><div class="logo" data-tilt></div></a>
<div class="inputvebuton">
<input class="nikos" id="nickname" maxlength="12" type="text" placeholder="Your Name">
<div class="selSkinArea">
<img alt="paper io skin" id="selSkinImg" src="skins/skin_thumbs/default.png" />
</div>
<input id="skin" maxlength="12" value="default" type="hidden">
<div style="display:none;" class="selectedServer">Select Server</div>
<select id="servers" class="servers" onchange="serverSelect($(this).find('option:selected').attr('rel'), $(this).val());" required="">
<option rel="ffa" value="paper2">🎮 FFA Classic 1 — California</option>
<option rel="ffa" value="paper2">🎮 FFA Classic 2 — Texas</option>
<option rel="speed" value="paper2">🌞 Speed Server 1 — New York</option>
<option rel="speed" value="paper2">🌞 Speed Server 2 — Florida</option>
<option rel="jet" selected="" value="paper2">🛩️ Jet Motor Server 1 — Michigan</option>
<option rel="jet" value="paper2">🛩️ Jet Motor Server 2 — New Jersey</option>
</select>
<div class="playButon b_yesil butonum_yesil" onclick="play();" id="paperplay">PLAY</div>
</div>
<div class="rego1">
<div id='paperio3-biz_300x250'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('paperio3-biz_300x250'); });
</script>
</div>
</div>
</div>
<div class="right" data-tilt>
<div class="lb"></div>
<div style="display:none;" class="skorlar_baslik_aciklama animated zoomIn">
<div style="display:none;" class="rank_baslik basliktext">Top 10 of This Week</div>
<div class="rank_baslik basliktextL"></div>
</div>
<div style="text-align:center;">
<a href="javascript:;" onclick="scoreList('today');" id="rank_today" class="scorelist_btn skor_buton_secili">Today</a>
<a href="javascript:;" onclick="scoreList('thisweek');" id="rank_thisweek" class="scorelist_btn skor_buton_secili_degil">Weekly</a>
<a href="javascript:;" onclick="scoreList('thismonth');" id="rank_thismonth" class="scorelist_btn skor_buton_secili_degil">Monthly</a>
<a href="javascript:;" onclick="scoreList('all');" id="rank_all" class="scorelist_btn skor_buton_secili_degil">All</a>
</div>
<ul class="bestScores">
<div class="sbas bss">Score</div>
<div class="tbas bss">Time</div>
<div class="abas bss">Area</div>
<li title="18 hours ago" onclick="detay('136529');">
<span>1</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">BOSS</div>
<i>64.48K</i>
<div class="taym">08:12</div>
<div class="area">96.14%</div>
</li>
<li title="2 hours ago" onclick="detay('136579');">
<span>2</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">happpppppppy</div>
<i>11.03K</i>
<div class="taym">06:48</div>
<div class="area">100.00%</div>
</li>
<li title="7 hours ago" onclick="detay('136567');">
<span>3</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">paperio3.biz_259</div>
<i>7.71K</i>
<div class="taym">00:28</div>
<div class="area">14.40%</div>
</li>
<li title="17 hours ago" onclick="detay('136530');">
<span>4</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">tifo</div>
<i>6.30K</i>
<div class="taym">16:05</div>
<div class="area">50.69%</div>
</li>
<li title="7 hours ago" onclick="detay('136564');">
<span>5</span>
<p title="Brazil"><img class="c_flag" src="countries/br.png" alt="Brazil" title="Brazil"/></p>
<div class="usr_bin">BRAZIL</div>
<i>5.95K</i>
<div class="taym">02:58</div>
<div class="area">35.33%</div>
</li>
<li title="3 hours ago" onclick="detay('136573');">
<span>6</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">JESUS SAVES</div>
<i>5.15K</i>
<div class="taym">01:15</div>
<div class="area">25.74%</div>
</li>
<li title="16 hours ago" onclick="detay('136536');">
<span>7</span>
<p title="Poland"><img class="c_flag" src="countries/pl.png" alt="Poland" title="Poland"/></p>
<div class="usr_bin">paperio3.biz_362</div>
<i>4.72K</i>
<div class="taym">21:00</div>
<div class="area">66.04%</div>
</li>
<li title="7 hours ago" onclick="detay('136565');">
<span>8</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">RENNIER (BR)</div>
<i>3.55K</i>
<div class="taym">03:35</div>
<div class="area">25.42%</div>
</li>
<li title="9 hours ago" onclick="detay('136558');">
<span>9</span>
<p title="U.S.A."><img class="c_flag" src="countries/us.png" alt="U.S.A." title="U.S.A."/></p>
<div class="usr_bin">paperio3.biz_401</div>
<i>2.96K</i>
<div class="taym">02:11</div>
<div class="area">12.94%</div>
</li>
<li title="3 hours ago" onclick="detay('136577');">
<span>10</span>
<p title="France"><img class="c_flag" src="countries/fr.png" alt="France" title="France"/></p>
<div class="usr_bin">JEFE</div>
<i>2.59K</i>
<div class="taym">00:51</div>
<div class="area">8.80%</div>
</li>
</ul>
</div>
<div class="rengo1" style='margin-bottom: 30px !important;height:250px;width: 970px;text-align: center;margin: 0 auto;grid-column: span 3;margin-top: 30px !important;' id='paperio3-biz_970x250'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('paperio3-biz_970x250'); });
</script>
</div>
<div class="page">
<div class="minimetin">
<b style="font-size: 16px;">Paper.io 3 Unblocked Online Game </b><br><br>
<p>The second part of the famous multiplayer game is no worse than the first, see for yourself! Playing the funny Piper Io 2 arcade game becomes more fun thanks to improved graphics and updated gameplay.</p><br><br>
<p>
Usurpation of the area will be required as a small square moving across the field. While you are pulling out the areas, try not to run into competitors. If a trickster succeeds in cutting you off, you will start playing by going back to the start and losing all your achievements.</p><br><br>
<p>The game's rankings are based on the percentage of area you managed to score, as well as the number of your opponents that were destroyed. Cut your opponents' health lines and enjoy cool boosters. Use pretty skins to make your ward unique. They become available after the first Achievements.</p><br><br>
<p>The rules of the second part of the game have remained unchanged. A small square is continuously moving on a huge piece of paper, leaving a colored mark. Conquer more territory, ahead of other participants. Keep an eye on the "tail", the other players will definitely try to cut it, then the game will have to start over, losing the progress made. Try to get back to the lands marked with your color as soon as possible, because only there is safety. Take over other people's territories, cross the lines of life of your opponents, and become the only winner who has captured the most territories. Avoid direct collisions with the rest of the players, otherwise both will die. To win the game, you will need strategic skills, rational thinking and the ability to make quick decisions.</p><br><br>
<p>Set the direction of the square using the WASD keys. Playing paper io 3 combines several advantages in an amazing way. The plot is uncomplicated, the graphics are simple, but once you try to play it once, you cannot break away. This "time killer" will perfectly relieve stress and help relieve the nervous system. Piper Io 2: Start playing online right now!</p>
<p>The mechanics here work as follows: you play for the cube and move around the big field, while the color trail remains behind you. If you go back to a section of your color, the trail closes and everything inside gets colored. If you close the trail yourself or someone else hits your trail, you will die. The main goal on the game will be to capture the biggest piece of the map and of course not die.</p><br><br>
<p>That's basically it, so the appearance of Paper.io 3 really came as a surprise. You might ask yourself what could have been improved here and suggested new things? First of all, in the second part of the game, management changed. Whereas previously players could only move in 4 directions at an angle of 90 degrees, drawing squares and rectangles, now there are no clear limits to movement.</p><br><br>
<p>This makes collisions between players more unexpected and intense. The viewing angle has also increased, you can now see better what is happening around you.</p>
<br><br><br>
<b style="font-size: 16px;">How to 100% Paper.io 3</b>
<br><br><a href="index.html" title="paper.io 3">PaPeR.io 3</a>, is a game for the adventurous, it is a game that has different servers for all players such as FFA mode (classic). Fast server and the slower server, not forgetting the small arena mode.
Each of these servers permits different players the ability to try different modes. The FFA mode is the Standard server any players can play. The faster server can be played by players that are more advanced and have a better idea on how to play the game, and survive.
The slow server is better suited for the beginner players as the game consists of other players playing on a slower motion. Lastly there is also the small area mode which allows the players to play more competitively as there is less surface to cover and fight for. This means players will have to be more vigiliant and aware of the other competitors. It is a mode for the more skilled gamers as you will be faced with other players
<br><br>
<b style="font-size: 16px;">How the game PaPeR.io can be played:</b><br>
PaPeR.io like snake games or tower defense and multiplayer game, You can control your personal square cursor in a number of different ways, firstly by using your keyboard controls such as, W, A, S, D as well as the keyboard arrow keys. You control your cursor with these controls.
<br><br>
<b style="font-size: 16px;">The aim of the game:</b><br>
You are given your open personal square cursor, you have to keep yourself away from the other cursors (players) otherwise you will die. The aim of the game is to take up as much of the gaming arena as possible. This is the only way you will ensure you succeed in this game and come out as the winner.
<br><br>
<b style="font-size: 16px;">How the scores are added up:</b><br>
Your own personal score is based on your own personal playing time and the number of PaPeRio competitors you manage to defeat (kill).
<br><br>
After a long time, we're back with you, we've been making improvements over the game for a long time, but the farther away a game is from the original, the less popular it is.
So we decided to go back, because you liked it very much, < style="display:inline;font-size: 13px;">PaPeR.io 2</h1> is one of the most popular games in the world, because this game is safe, you can't tease others in the game, the game is only designed to play.
There are 2 main servers in the game, USA and Europe whichever region you are close to, we recommend playing on those servers.
The goal of <h2 style="display: inline;"><a href="index.html" title="PaPeR.io 3" style="display: inline !important; font-size: 14px;">Paperio 3</a></h2> is simple. Try to get yourself the most space on the playing field with the arrow keys of your keyboard.
Do not get caught by other players,
because they will want to block you so that you don't take up a lot of space and capture new territories.
<br><br>
Do not forget to save your score when the game is over, when you save your score, take your place in the list with the flag of your country.
<br><br>
The leader board consists of 4 main groups: daily, weekly, monthly and all-time.
For example, the score you recorded today at 14.00 remains on the daily table until tomorrow at 14.00, unless you get more points than you...
<br><br>
Formerly "PaPeR-io Space", the name of the game now "paperio3.biz", because it is more memorable,
<br><br>
paperio3.biz also has a Discord page where you can let us know your various requests, you can exchange ideas with other friends who play the game via discord, If you still want to contact us, you can write to us at <a href="cdn-cgi/l/email-protection.html" class="__cf_email__" data-cfemail="0169646d6d6e417160716473686e322f6d6877642f">[email protected]</a>
</div>
<br><br>
<div class="minimetin">
<b>PRIVACY POLICY</b>
<br><br>We use third-party advertising companies to serve ads when you visit our Web site. These companies may use information (not including your name, address, email address or telephone number) about your visits to this and other Web sites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies,
<a rel="nofollow" target="_blank" href="https://optout.networkadvertising.org/?c=1">read privacy policies</a>
</div>
</div>
</div>
<div class="main2" style="display:none;">
<a title="paperio 3" href="index.html"><div class="logo"></div></a>
<div id="game_over"></div>
<div style="display:none;" class="saveScore">SAVE SCORE</div>
<div style="display:none;" class="playAgain" onclick="play2(),pAgain();">PLAY AGAIN</div>
<a href="index.html"><div style="display:none;" class="changeMode">CHANGE GAMEMODE</div></a>
<div class="rego2" style="text-align: center;display: inline-block; margin-top: 15px;"></div>
</div>
<div style="display:none;" class="ekSayfa">
<div onclick="popGizle('partners');" class="kapat">x</div>
<div class="partners">Partners</div>
<ul>
</ul>
</div>
<div style="display:none;" class="ekSayfa2">
<div onclick="popGizle2('detaylar');" class="kapat">x</div>
<div class="detaylar"></div>
<ul>
<li class="u_puan"></li>
<li class="u_ulke_adi"></li>
<li class="u_time"></li>
<li class="u_oldurulen"></li>
<li class="u_skor"></li>
</ul>
</div>
<div class="tespit"></div>
<script src="jquery.animateNumber.min.js"></script>
<script>
$(".logo,.left,.right").tilt({
maxTilt:5,
//reset:false
});
</script>
<script>
function acilis(){
$('.playButon,.servers,.nikos,.selSkinArea,.logo,.blok,ul.bestScores li').hide();
setTimeout(function(){
$('.logo').show().addClass("animated bounceIn");
},200);
setTimeout(function(){
$('.nikos').show().addClass("animated bounceIn");
},275);
setTimeout(function(){
$('.selSkinArea').show().addClass("animated bounceIn");
},350);
setTimeout(function(){
$('.servers').show().addClass("animated bounceIn");
},425);
setTimeout(function(){
$('.playButon').show().addClass("animated bounceIn");
},500);
setTimeout(function(){
$('ul.bestScores li').eq(0).show().addClass("animated bounceIn");
//$('.loqo').show().addClass("animated zoomIn");
$('.sk1').show().addClass("animated bounceIn");
},100);
setTimeout(function(){
$('ul.bestScores li').eq(1).show().addClass("animated bounceIn");
$('.sk2').show().addClass("animated bounceIn");
},175);
setTimeout(function(){
$('ul.bestScores li').eq(2).show().addClass("animated bounceIn");
$('.sk3').show().addClass("animated bounceIn");
},250);
setTimeout(function(){
$('ul.bestScores li').eq(3).show().addClass("animated bounceIn");
$('.sk4').show().addClass("animated bounceIn");
},325);
setTimeout(function(){
$('ul.bestScores li').eq(4).show().addClass("animated bounceIn");
},400);
setTimeout(function(){
$('ul.bestScores li').eq(5).show().addClass("animated bounceIn");
},475);
setTimeout(function(){
$('ul.bestScores li').eq(6).show().addClass("animated bounceIn");
},550);
setTimeout(function(){
$('ul.bestScores li').eq(7).show().addClass("animated bounceIn");
},625);
setTimeout(function(){
$('ul.bestScores li').eq(8).show().addClass("animated bounceIn");
},700);
setTimeout(function(){
$('ul.bestScores li').eq(9).show().addClass("animated bounceIn");
},775);
setTimeout(function(){
$('.left .blok').eq(0).show().addClass("animated bounceIn");
},200);
setTimeout(function(){
$('.left .blok').eq(1).show().addClass("animated bounceIn");
},275);
setTimeout(function(){
$('.left .blok').eq(2).show().addClass("animated bounceIn");
},300);
}
function skorAcilis(){
$('ul.bestScores li').hide();
setTimeout(function(){
$('ul.bestScores li').eq(0).show().addClass("animated bounceIn");
//$('.loqo').show().addClass("animated zoomIn");
$('.sk1').show().addClass("animated bounceIn");
},100);
setTimeout(function(){
$('ul.bestScores li').eq(1).show().addClass("animated bounceIn");
$('.sk2').show().addClass("animated bounceIn");
},175);
setTimeout(function(){
$('ul.bestScores li').eq(2).show().addClass("animated bounceIn");
$('.sk3').show().addClass("animated bounceIn");
},250);
setTimeout(function(){
$('ul.bestScores li').eq(3).show().addClass("animated bounceIn");
$('.sk4').show().addClass("animated bounceIn");
},325);
setTimeout(function(){
$('ul.bestScores li').eq(4).show().addClass("animated bounceIn");
},400);
setTimeout(function(){
$('ul.bestScores li').eq(5).show().addClass("animated bounceIn");
},475);
setTimeout(function(){
$('ul.bestScores li').eq(6).show().addClass("animated bounceIn");
},550);
setTimeout(function(){
$('ul.bestScores li').eq(7).show().addClass("animated bounceIn");
},625);
setTimeout(function(){
$('ul.bestScores li').eq(8).show().addClass("animated bounceIn");
},700);
setTimeout(function(){
$('ul.bestScores li').eq(9).show().addClass("animated bounceIn");
},775);
}
function skinleriGetir(id){
jQuery.ajax({
type: "POST",
url: "skinlist.php",
success: function(cevap){
$("ul.skinList").html(cevap);
}
});
}
function openSkins(){
$("ul.skinList").show();
$(".kapkap").show();
skinleriGetir();
}
function closeSkins(){
// $("ul.skinList").hide();
$(".kapkap").hide();
}
function skin_logla() {
var __mySkin = $.trim($("#skin").val());
if (__mySkin == "") {
__mySkin = "default";
}
Cookies.set("mySkin", __mySkin);
}
function skin_ver() {
if (Cookies.get("mySkin") != null) {
$("#skin").val(Cookies.get("mySkin"));
$("#selSkinImg").attr("src","https://paperio3.biz/skins/skin_thumbs/"+Cookies.get("mySkin")+".png");
$("#selSkinImg1").attr("src","https://paperio3.biz/skins/skin_thumbs/"+Cookies.get("mySkin")+".png");
}
}
function nick_logla() {
var nik = $("#nick").val();
Cookies.set("myNick", nik);
}
function nik_ver() {
if (Cookies.get("myNick")) {
$("#nickname").val(Cookies.get("myNick"));
} else {
$("#nickname").val("");
}
}
$(document).ready(function() {
nik_ver();
skin_ver();
});
function vergelsin(kdiv,rdiv,g,y){
$(kdiv).html("<div style='width:"+g+"px; height:"+y+"px;' id='"+rdiv+"'></div>");
aiptag.cmd.display.push(function() { aipDisplayTag.display(rdiv); });
}
function olduk(){
$(".rego2").empty();
vergelsin(".rego2","paperio3-biz_970x250",970,250);
}
var say = 0;
function play(){
aiptag.cmd.display.push(function() { aipDisplayTag.display('paperio3-biz_300x250'); });
$("#paperio3-biz_970x250").remove();
say++;
show_preroll();
var mnick = $.trim($("#nickname").val());
var mskin = $.trim($("#skin").val());
"undefined" != typeof Cookies && Cookies.set("mySkin", mskin)
"undefined" != typeof Cookies && Cookies.set("myNick", mnick)
}
var bay = 0;
function play2(){
show_preroll();
}
function binlik(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
var _0x9042=["\x3A\x76\x69\x73\x69\x62\x6C\x65","\x69\x73","\x23\x66\x69\x6E\x69\x73\x68\x5F\x67\x61\x6D\x65","\x73\x68\x6F\x77","\x23\x63\x75\x72\x76\x65\x78\x2D\x69\x6F\x5F\x33\x30\x30\x78\x32\x35\x30","\x68\x69\x64\x65","\x23\x6F\x6E\x6C\x69\x6E\x65","\x2E\x6F\x6E\x6C\x69\x6E\x65","\x72\x61\x6E\x64\x6F\x6D","\x66\x6C\x6F\x6F\x72","\x74\x65\x78\x74"];
setInterval(
function(){if($(_0x9042[2])[_0x9042[1]](_0x9042[0])){$(_0x9042[4])[_0x9042[3]]()}else {$(_0x9042[4])[_0x9042[5]]()}},200);
var usron=$(_0x9042[6]);
var usron2=$(_0x9042[7]);
function getRandomInt(_0xbb4fx4,_0xbb4fx5){return Math[_0x9042[9]](Math[_0x9042[8]]()* (_0xbb4fx5- _0xbb4fx4+ 1))+ _0xbb4fx4}
setInterval(function(){ usron.animateNumber({ number: getRandomInt(3774,3789) });
usron2.animateNumber({ number: getRandomInt(3774,3789) });},5000);
function detay(id){
datas = {'id':id}
jQuery.ajax({
type: "POST",
url: "showScore.jsp",
data: datas,
success: function(cevap){
var gelen = cevap.split("|");
if(gelen[0]==0){
console.log(gelen[0]);
} else if(gelen[0]==1){
popGoster2("detaylar");
$(".detaylar").html(gelen[1]);
$(".u_puan").html(gelen[2]);
$(".u_ulke_adi").html(gelen[5]);
$(".u_time").html(gelen[6]);
$(".u_oldurulen").html(gelen[7]);
$(".u_skor").html(gelen[8]);
}
}
});
}
function popGoster(sayfa){
if(sayfa=="partners"){
$(".ekSayfa").show();
$(".kapkap").show();
}
}
function popGizle(sayfa){
if(sayfa=="partners"){
$(".ekSayfa").hide();
$(".kapkap").hide();
}
}
function popGoster2(sayfa){
if(sayfa=="detaylar"){
$(".ekSayfa2").show();
$(".kapkap").show();
}
}
function popGizle2(sayfa){
if(sayfa=="detaylar"){
$(".ekSayfa2").hide();
$(".kapkap").hide();
}
}
$(".kapkap").on("click",function(){
popGizle("partners");
popGizle2("detaylar");
//skinsKapat();
//closeSkins();
});
function scoreList(times){
$(".basliktext").hide();
$(".basliktextL").show();
$(".basliktextL").html('Loading...');
$(".scorelist_btn").removeClass("skor_buton_secili").addClass("skor_buton_secili_degil");
if($(".scorelist_btn").hasClass("skor_buton_secili_degil")){
$("#rank_"+times).removeClass("skor_buton_secili_degil").addClass("skor_buton_secili");
}
datas = {'times':times}
jQuery.ajax({
type: "POST",
url: "scoreList.jsp",
data: datas,
success: function(cevap){
var gelen = cevap.split("|");
if(gelen[0]==0){
alert(gelen[1]);
} else if(gelen[0]==1){
$("ul.bestScores li").hide();
$(".basliktext").addClass("animated wobble");
$(".basliktext").show();
$(".basliktextL").hide();
$(".basliktext").text(gelen[1]);
$("ul.bestScores").html(gelen[2]);
skorAcilis();
}
}
});
}
function pAgain(){
aiptag.cmd.display.push(function() { aipDisplayTag.display('paperio3-biz_300x250'); });
aiptag.cmd.display.push(function() { aipDisplayTag.display('paperio3-biz_970x250'); });
$(".saveScore").text("SAVE SCORE");
}
var socket = io('https://play.agario.work:60444');
$('#nickname').val(Cookies.get('paperio_username'));
var _0x5e7b=['ul.hareketler\x20li','</li>','<li class="animate__animated animate__bounceIn"','giris_bilgi','veri1','remove','length','ul.hareketler'];(function(_0x372c97,_0x5e7b24){var _0x52fa0c=function(_0x361c89){while(--_0x361c89){_0x372c97['push'](_0x372c97['shift']());}};_0x52fa0c(++_0x5e7b24);}(_0x5e7b,0x14b));var _0x52fa=function(_0x372c97,_0x5e7b24){_0x372c97=_0x372c97-0x0;var _0x52fa0c=_0x5e7b[_0x372c97];return _0x52fa0c;};socket['on'](_0x52fa('0x0'),function(_0x25f661){var _0x50e39e=_0x25f661[_0x52fa('0x1')];$(_0x52fa('0x4'))['append'](_0x52fa('0x7')+_0x50e39e+_0x52fa('0x6'));var _0x29a553=$(_0x52fa('0x5'))[_0x52fa('0x3')];if(_0x29a553>0xa){$(_0x52fa('0x5'))['eq'](0x0)[_0x52fa('0x2')]();}});
var adBlockEnabled = false;
const tespit = document.querySelector(".tespit");
var adClasses = ["ad", "ads", "adsbox", "ad-placement", "doubleclick", "ad-placeholder", "ad-badge"];
var mry;
for(mry of adClasses){
tespit.classList.add(mry);
}
var ozellik = window.getComputedStyle(tespit).getPropertyValue("display");
// if(ozellik=="none"){
// console.log("engelli");
// }else{
// console.log("engelli diil");
// }
window.setTimeout(function() {
if(ozellik=="none"){
adBlockEnabled = true;
}
console.log('AdBlock Enabled? ', adBlockEnabled);
if( adBlockEnabled == true ){
gtag('event', 'AdBlock users', {
'event_category': 'Oyun',
'event_label': 'adb user',
'value': 'kullanıyor...'
});
$(".rego1").html("<a href='https://amongus3.com' title='amongus 3' target='_blank' rel='nofollow'><img src='amon1.png' alt='amongus' /></a>");
$(".rengo1").html("<a href='https://paperio8.com' title='paper.io' target='_blank' rel='nofollow'><img src='p8.png?98' alt='paperio' /></a>");
} else {
gtag('event', 'non adblock users', {
'event_category': 'Oyun',
'event_label': 'adb user',
'value': 'kullanmıyor...'
});
}
}, 100);
setTimeout(function(){
$("ul.hareketler").fadeIn(2000);
},5000);
if( adBlockEnabled == true ){
jQuery(".bilgi").remove();
jQuery(".main2").append("<div class='bilgi' style='text-align: center;color: #ffffff;width: 380px;margin-bottom: 5px;background: #ff0000;margin: 5px auto;padding: 5px 0px;'>Please turn off ad blocker for save your score!</div>");
$(".rego1").html("Neden ama neden?");
}
</script>
<script>
$(window).on('load', function () {