Contraverse hold void 3.0

A perfect timed semtex grenade took down the whole squad.

2023.06.03 23:29 Rexis__ A perfect timed semtex grenade took down the whole squad.

A perfect timed semtex grenade took down the whole squad.
QUADZILLA
submitted by Rexis__ to RogueCompany [link] [comments]


2023.06.03 23:24 Ceezyr An Investigation of Random Bullet Spread

I've been sitting on this for a little while now and I've hit the point where any questions I have about it I can't fully answer on my own. To make a long story short for a while I've wanted to simulate random bullet spread in this game to figure out how much of a difference it makes. Doing that in TF2 would be slow and have a ton of errors but if I could figure out how to simulate it externally, that would allow me to create extremely large amounts of data and test a lot of scenarios. The problem is I didn't understand how random bullet spread works, specifically what makes it random.
How does random spread work?
To figure that out first I looked at the code. Searching about this topic always lead me back to the same /truetf2 thread and this comment which links to TF2-Base and has this chunk of code:
 // Get circular gaussian spread. float x, y; x = RandomFloat( -0.5, 0.5 ) + RandomFloat( -0.5, 0.5 ); y = RandomFloat( -0.5, 0.5 ) + RandomFloat( -0.5, 0.5 ); 
This seemed useful because it at least implies they are handling the angles in x and y rather than using some other coordinates but it also raised some questions. If I assumed the function RandomFloat was gaussian, why are two calls being added together? I also wasn't sure if the arguments passed were limits being placed on it or something else. Digging further I got to this file with another relevant code block.
 //----------------------------------------------------------------------------- // A couple of convenience functions to access the library's global uniform stream //----------------------------------------------------------------------------- VSTDLIB_INTERFACE void RandomSeed( int iSeed ); VSTDLIB_INTERFACE float RandomFloat( float flMinVal = 0.0f, float flMaxVal = 1.0f ); VSTDLIB_INTERFACE float RandomFloatExp( float flMinVal = 0.0f, float flMaxVal = 1.0f, float flExponent = 1.0f ); VSTDLIB_INTERFACE int RandomInt( int iMinVal, int iMaxVal ); VSTDLIB_INTERFACE float RandomGaussianFloat( float flMean = 0.0f, float flStdDev = 1.0f ); 
Those two calls are to the uniform random variable function, not the gaussian function. From a quick google search I did find that this is a way to approximate gaussian distributions but with only two it should like basically like a triangle instead of a smooth gaussian. There are a few reasons I could think of why they did it this way but the important thing is they return values between -1 and 1, which implies the variables scale some other value.
Every tf2 weapon has a ctx file that holds variables about it and the shotgun has four, one for each class and they are basically identical. In each of those there is a variable named Spread with a value of 0.0675. That's far too small to be degrees but for radians it seems about right and implies that the random pellets from a shotgun can take a maximum angle of 0.0675 radians from center in x and y.
All of this would be relatively simple to simulate but I couldn't find hard numbers on the fixed spread pattern and wasn't sure the values even meant what I thought they did. TF2-Base as far as I'm aware isn't the actual code as well, so maybe whatever Valve has internally is different. So I decided to test it.
Experiment setup
I created a map that contained a single room with one wall textured with the solid blue dev texture. The bullet decals were all replaced with a small gradient so they were identical and easier to see compared to the default. On accident I also discovered that setting decals to 9 removes the single perfectly accurate shot, which is lucky because it simplified processing later.
To run the test I selected engineer and bound a single key that would shoot and call impulse 101 to reload. A python script would automatically send a keypress, wait for the recoil to settle, then take a screenshot (which was also cropped to just a small region the bullets could land in). I let this run for a couple hours and generated about 3,800 screenshots. I could have also toyed with the host timescale to speed up this process but I was worried it could possibly have other effects that might invalidate all of this.
Data Processing
Making the wall solid blue made processing the data very simple. At first I intended to make the decal red, but alpha weirdness I don't understand made them black. That meant all I had to do was select the blue channel and then invert the image so that all the decals went to the max value and the wall texture went to zero. This was passed to a function that can find local maxima and it would return the location of each pellet. I had also taken a single screenshot of the fixed spread pattern and another where I used the measure texture. These gave me a perfect center and a conversion to hammer units from pixels. From this data I converted back until I could determine the angles in x and y. Some shots did overlap and were lost but they shouldn't dramatically effect the end result.
An example of the screenshot, with the processed version next to it, and all of the bullet decals automatically is below.
https://i.redd.it/z3r2wcfmt83b1.png
Results
As expected, the maximum magnitude for the angles was about 0.065. Getting exactly 0.0675 would be unexpected because it is the least common value and there is going to be some error. A histogram below shows all of the angles I found:
https://i.redd.it/zwa01nqnu83b1.png
Unexpected Findings
This is where things started to get weird. I had created a scatter plot of each shot and after a while realized it didn't have enough points.
https://i.redd.it/u8utncwpv83b1.png
3,800 shots times 9 (with some losses) should be over 30,000 individual points easily. There should be overlap in the middle where they are closer to max probability but even then the center should be nearly colored in. As it turns out a lot pellets were landing in the same spots. Even stranger is that I was getting exactly repeated shots. The example shot from the first image occurred 23 times. I didn't test for any symmetries so it's possible those also occurred.
I've come up with a few theories on what is going on:
  1. TF2 is using a table based random number generator. This is how Doom handled random numbers, at least partially for demo compatibility and it did have effects in game. Some weapons couldn't deal the maximum damage the gamecode implied elsewhere but can in sourceports that change how this work. Of the theories this one is the least likely, but it's not impossible.
  2. The RNG used is bad. There are a bunch of ways to create bad RNG but unless it was a mistake I can't think of a reason why they would stick with it. A good RNG shouldn't have significantly more performance overhead.
  3. New seeds are frequently generated from player input. Of the options this seems the most likely because if it is the case I created the worst possible scenario. There is only one player input occurring and since it is automated it should be almost exactly the same. There isn't mouse input that should be a good source for seeding, no real inconsistency in key press time, and there is nothing else that should be calling the RNG to help advance it. The other related possibility is that maybe calling impulse 101 or any of the other tweaks I made are causing an issue.
  4. I screwed up in some other way I haven't thought of. This one I view as the second most likely explanation.
One of my reasons for sharing this now is that I am not sure how to figure out the correct results. I can think of some ways to test out option 3 but they would significantly complicate scripting and possibly require active input which would be tedious. If that is the reason I got weird repeats, the data would be useful in implying that the code is working the way I'm assuming it does.
The other reason for sharing is if it does turn out to be issue 2 or 1, that could imply other effects that I haven't tested. These things are unlikely to be noticed in game, but if we for example knew shotguns with random spread almost always put more pellets to the left of the crosshair that may be significant. Or it's option 4 and I can't find the problem on my own.
Below is a google drive folder that contains basically everything I used and another write up I need to edit. There are a lot of pictures you can view and a zip of them to download. There's also a spreadsheet containing all the shot locations that gives slightly different min and max values, probably due to differences in float precision and tangent calculations compared to how I actually did the analysis.
https://drive.google.com/drive1/folders/1vFadC98NJKTdTYBPiJVP2uDY7OOtt7_5
TLDR
I tested the random bullet spread in TF2. If I'm right random pellets can be a maximum of about 3.9 degrees off from a straight line down the crosshair. There was some weird stuff that could be a mistake that makes this all pointless, but it might be nothing or it might imply this game is even more broken than most of us assumed. If there are any source engine wizards out there I would love to get some feedback on what they think is going on.
submitted by Ceezyr to truetf2 [link] [comments]


2023.06.03 23:19 TagProLeaderboards Weekly Leaderboard Log/Statistics for June 03, 2023

# Name Points Time Win% G W L Pup% Save% Tags Popped Grabs Caps Hold Prevent Returns Support DCs
1 Jokic 5844 25:15:38 43% 321 138 165 9% 45% 1719 2464 2195 148 04:27:04 02:44:40 1474 6505 12
2 tnevlos 5737 22:12:03 59% 252 148 99 11% 40% 2066 1720 1522 164 02:57:42 03:56:54 1694 6013 2
3 Da Maniac 5645 22:26:22 57% 297 168 108 11% 28% 2032 1822 1810 243 04:08:18 03:20:48 1726 6100 16
4 Slick Mickey 5625 23:10:20 47% 270 127 138 8% 20% 1750 2023 1795 151 03:10:11 03:16:41 1461 6326 1
5 NSsolodolo 4656 19:45:27 50% 269 131 97 11% 0% 1616 1651 1512 136 02:26:21 02:34:55 1384 4324 32
6 Toppy 4547 19:28:26 41% 251 102 140 10% 0% 1182 1875 1618 95 02:49:41 02:59:16 1003 5012 3
7 springroll 4385 19:12:51 43% 241 102 132 3% 0% 1525 1791 1461 103 02:03:30 02:55:39 1360 6105 3
8 GetPupsDeep 4381 19:16:43 41% 227 92 124 11% 20% 1266 1561 1319 94 02:21:23 02:49:45 862 4990 7
9 La_Cocaine 4056 14:43:02 64% 183 115 61 19% 25% 1707 1030 912 109 01:54:55 02:22:30 1317 3838 2
10 yam meat 3939 15:54:40 55% 202 110 76 11% 0% 1182 1228 1134 120 02:08:37 02:51:55 1016 3810 13
11 |/ 3914 15:20:30 61% 187 114 71 8% 0% 1393 1443 1260 104 01:55:25 02:41:21 1237 4967 0
12 FreakBall 3888 15:32:05 60% 193 116 77 12% 100% 1428 1456 1385 157 02:31:29 02:19:12 1177 4368 0
13 Ball of Fame 3720 14:08:08 63% 181 112 58 5% 20% 1383 1074 932 75 01:33:31 02:50:59 1254 4495 7
14 JKooter 3629 14:23:03 56% 168 93 72 9% 0% 1193 1292 1232 109 02:51:20 01:53:33 1003 4099 0
15 Iodized Salt 3557 13:39:38 64% 169 107 58 8% 40% 1077 1131 1016 96 01:56:05 02:11:35 909 3783 1
16 MBAPPE 3444 12:50:21 68% 161 109 49 14% 25% 1147 1265 1201 128 02:03:33 01:42:28 933 3859 0
17 THarsenal4 3152 12:56:00 53% 155 83 72 6% 0 1200 902 769 62 01:28:36 02:43:13 1100 2998 0
18 Akko 2990 12:30:24 50% 155 76 73 4% 0% 1011 1093 948 81 01:38:43 01:48:47 897 3507 2
19 Flexo 2980 12:18:06 53% 153 80 68 5% 0% 988 1060 965 91 01:31:14 01:53:29 903 3338 2
20 'ArryKane 2872 11:31:20 50% 134 65 64 8% 0% 859 864 735 47 01:28:23 01:53:35 697 3877 0
21 Pretzelcoatl 2859 12:05:38 42% 146 61 82 11% 0% 905 918 757 47 01:18:37 02:10:23 755 3738 0
22 archedrapier 2757 10:53:15 59% 131 75 49 10% 0% 836 1014 945 110 01:46:38 01:28:20 718 2879 2
23 Snowflaek 2665 11:26:10 43% 154 67 78 10% 50% 896 1008 879 74 01:39:44 01:42:15 735 3716 8
24 HimmyButler 2656 09:47:40 65% 115 73 39 15% 25% 1064 838 770 77 01:21:29 01:32:44 876 3121 0
25 Bumballbee 2595 09:29:43 67% 113 75 36 15% 0% 965 718 714 88 01:33:42 01:36:23 809 2950 0
26 Logicus 2595 10:23:54 52% 129 66 60 10% 0% 791 993 901 90 01:38:19 01:06:39 632 3129 0
27 jkxs 2476 10:02:12 43% 121 52 68 19% 50% 1010 746 631 40 00:52:36 01:35:45 651 2992 0
28 Jarek 2461 10:21:19 47% 130 62 66 11% 0 763 870 763 67 01:24:17 01:29:37 602 2612 2
29 J 2391 11:11:14 34% 144 48 84 5% 28% 687 880 731 39 01:18:45 01:24:09 592 2815 7
30 Werth 2386 10:10:10 47% 124 59 63 10% 50% 680 945 816 71 01:21:34 01:25:10 545 3137 1
31 CoffeeSnoot 2361 09:23:20 58% 111 64 42 9% 66% 695 802 733 67 01:18:27 01:59:38 585 2939 4
32 Jooker 2344 10:10:24 45% 133 60 63 5% 75% 786 871 790 64 01:18:19 01:39:48 698 2804 10
33 Enthymeme 2294 08:28:40 64% 100 64 36 13% 100% 867 668 595 64 01:01:21 01:44:06 759 3025 0
34 spladdy 2293 09:07:52 52% 120 63 43 9% 0% 803 779 693 51 01:09:11 01:34:43 706 2771 13
35 Yuju 2285 08:38:29 64% 105 66 36 8% 0% 931 720 647 59 01:00:42 01:48:58 865 3028 1
36 lil idiot 2279 08:49:40 66% 110 73 33 6% 0% 776 728 680 81 01:09:43 01:29:29 691 2798 3
37 RoIIingStone 2220 09:45:50 39% 128 48 74 13% 14% 789 794 645 36 01:02:24 01:23:25 546 2227 0
38 Able 2204 08:39:40 60% 102 60 39 6% 33% 815 685 619 49 01:16:54 01:21:30 739 2395 1
39 Scorch 2180 08:19:52 54% 105 56 44 17% 33% 833 660 623 62 01:20:53 01:30:51 720 2304 3
40 your grandpa 2163 09:02:09 50% 125 61 58 8% 25% 711 750 666 63 01:03:11 01:34:04 609 2790 3
41 kmichael 2157 09:25:34 42% 120 51 63 9% 100% 598 746 617 46 01:02:33 01:40:35 503 2860 6
42 DonaIdTrump 2154 08:25:37 62% 114 71 33 11% 66% 705 819 855 122 01:54:47 00:38:33 583 2167 10
43 Killshot 2152 08:55:10 52% 113 58 45 7% 33% 625 757 704 58 01:35:42 01:07:26 535 2031 8
44 PTVWHR 2076 08:40:55 47% 108 49 54 15% 42% 588 708 599 52 01:01:06 01:25:22 398 2231 1
45 sb army 2057 07:50:01 63% 103 65 33 7% 0% 739 654 650 92 01:24:49 01:13:24 632 2469 4
46 kolmogorov 2053 08:26:17 53% 109 57 40 13% 50% 759 806 689 70 01:26:03 01:00:54 604 2344 10
47 ~zion~ 2044 07:38:03 61% 90 54 34 12% 33% 737 684 646 52 01:13:46 01:02:30 620 2281 0
48 flopphone 2029 08:07:31 49% 104 51 40 7% 0% 711 706 666 65 01:12:32 01:11:40 625 2769 12
49 Barbara Bush 2028 07:59:42 55% 104 58 46 14% 0 585 622 541 57 00:55:05 01:15:27 448 1871 0
50 migos 2009 09:41:53 26% 127 33 83 4% 0% 485 968 815 42 01:13:50 01:19:12 415 2504 7
51 jizz123 1960 08:10:06 50% 105 52 48 8% 0% 744 755 711 66 01:20:03 01:11:42 654 2675 3
52 ballsome 1959 08:08:40 45% 98 44 51 5% 50% 683 603 514 36 00:58:08 01:34:02 616 2273 1
53 JonahJameson 1940 07:14:25 56% 103 56 31 7% 25% 805 557 527 51 00:53:28 01:17:12 722 2711 13
54 TaoTeChill 1935 08:37:57 40% 110 44 64 4% 33% 625 630 524 34 00:47:46 01:48:06 568 2966 0
55 U Good 1877 07:02:13 64% 88 57 27 11% 0 719 593 578 76 01:09:42 00:52:34 623 2034 4
56 Tunabomber 1847 07:05:20 59% 85 49 33 13% 33% 608 637 585 67 00:58:42 01:08:34 479 1857 1
57 Horizon 1840 07:40:28 55% 95 52 39 6% 50% 543 645 613 70 01:13:47 00:54:56 488 2118 3
58 Concentrate 1839 08:11:22 50% 115 54 42 8% 0% 667 597 536 50 01:01:40 01:17:37 579 2418 12
59 soggy dog 1825 07:03:34 62% 89 55 24 8% 33% 805 503 452 43 00:51:35 01:27:56 710 2364 9
60 Lasty 1810 07:04:32 58% 95 56 38 13% 100% 635 630 595 73 01:03:57 00:52:32 528 1936 1
61 Mr awesome:) 1785 06:35:46 72% 77 54 21 8% 0% 694 535 502 48 00:55:37 01:17:10 620 2205 0
62 lizzey 1776 06:36:10 61% 78 47 30 16% 66% 653 552 514 46 00:54:58 01:01:30 524 1898 0
63 T_y 1744 07:27:32 38% 94 35 54 9% 0% 565 527 453 32 00:40:21 01:25:27 447 2592 1
64 RageQuit 1737 07:04:46 51% 93 47 38 10% 0% 560 562 505 36 01:01:41 01:07:16 501 1519 7
65 supergremlin 1734 07:36:29 45% 97 43 49 8% 25% 553 658 551 48 01:02:28 01:17:48 483 2203 2
66 Ballsofholly 1732 07:32:41 47% 96 43 48 8% 0% 529 660 523 33 00:47:49 01:08:40 431 1963 0
67 Borgus 1729 06:49:49 59% 89 52 33 6% 0% 518 506 514 60 01:06:25 01:04:07 471 1774 3
68 GragonBall 1718 08:18:48 43% 111 45 38 11% 0% 412 753 709 83 01:15:36 00:54:46 326 1471 21
69 Glimmer 1718 07:39:21 45% 100 45 48 8% 0% 546 607 542 38 00:51:13 01:09:11 455 2419 5
70 Jeffrey 1716 08:03:31 30% 104 31 68 7% 40% 581 483 319 21 00:28:08 01:36:33 506 2223 2
71 Celery 1713 07:29:18 46% 98 44 50 7% 0% 469 742 628 50 01:10:08 00:50:04 400 1878 1
72 Fronj 1695 06:07:10 71% 67 48 19 6% 0 569 546 538 67 01:01:29 01:03:25 500 1872 0
73 Sugarwater25 1688 08:07:48 32% 110 35 53 4% 0% 475 731 590 29 00:53:08 01:18:42 428 2319 20
74 Bootymane 1683 06:36:37 59% 90 51 33 8% 20% 504 665 628 64 01:11:25 00:42:02 417 1850 2
75 DumbBot 1681 07:46:41 41% 101 41 56 5% 0% 516 713 594 32 00:49:57 01:06:34 453 2534 3
76 CarrotCake 1678 05:40:28 85% 76 64 11 14% 50% 716 452 435 67 00:57:07 00:44:23 615 1538 0
77 snackpack 1662 07:14:13 44% 87 39 42 4% 100% 671 614 502 39 00:40:19 01:25:27 625 2221 6
78 rat ball 1655 08:05:19 28% 111 30 73 2% 0% 343 735 559 10 00:50:29 01:30:33 310 2071 3
79 ZippyDoodah 1623 07:17:44 36% 91 33 55 6% 100% 518 580 488 23 00:41:16 01:09:06 428 1906 3
80 Jimmywise 1623 05:51:32 76% 74 56 15 15% 50% 578 490 450 67 01:07:44 00:51:37 468 1429 2
81 nightman 2.0 1620 06:44:56 46% 78 35 39 13% 0% 585 567 500 42 01:09:09 00:57:08 461 2079 2
82 Cheerwine 1619 06:49:12 51% 85 43 40 7% 0% 506 569 479 27 00:47:49 01:13:38 444 2215 0
83 BorisDaSpida 1612 07:13:13 41% 94 39 53 4% 66% 397 804 744 55 01:17:42 00:56:23 362 2250 1
84 OG Button 1609 07:04:00 32% 89 29 57 9% 0 535 604 517 30 00:58:08 00:59:32 429 1939 3
85 Chritt 1608 06:57:01 46% 92 41 43 7% 0% 571 623 538 44 00:51:54 01:01:04 479 2299 5
86 5ca7f8f99ff6 1599 06:35:35 57% 91 51 32 11% 0% 512 589 573 65 01:06:50 00:54:24 432 1559 6
87 BUTT 1589 06:40:08 51% 79 39 35 9% 0% 501 634 593 44 01:08:40 00:58:05 399 1836 2
88 Pluto 1587 07:15:42 40% 91 37 48 5% 100% 513 655 598 63 00:50:18 00:55:58 466 2125 6
89 WhiteBallker 1567 06:52:03 46% 92 42 42 8% 50% 523 629 525 39 00:52:13 01:08:19 462 2079 7
90 2k 1554 05:33:30 66% 69 45 23 15% 0% 605 492 475 56 00:59:44 00:43:27 464 1746 0
91 SilentOne 1530 06:04:32 53% 76 39 33 9% 0% 529 584 546 46 01:01:55 00:45:44 461 1752 1
92 evil ball 1528 05:56:28 58% 70 41 27 10% 0 548 510 455 36 00:54:34 00:50:20 453 1705 2
93 kool aid 1516 05:34:26 64% 73 47 20 7% 0 567 499 493 73 01:07:46 00:37:52 495 1453 6
94 Fart? 1498 07:14:16 38% 95 36 51 2% 0% 456 662 549 33 00:56:27 01:06:17 413 1923 7
95 JayBonita 1498 06:36:32 40% 78 31 45 9% 0% 455 595 468 30 00:42:23 01:06:53 375 2113 1
96 turtlecat 1486 07:07:56 41% 92 35 35 6% 0% 337 671 603 44 01:18:00 00:54:10 312 1462 15
97 AlottaVagina 1485 06:35:29 43% 86 36 38 4% 0% 461 558 490 40 00:47:43 01:00:34 397 2371 8
98 riotgrrrl 1478 06:16:41 47% 82 37 35 7% 0% 375 488 416 26 00:39:07 00:59:15 330 1695 6
99 KoalaYeast 1472 05:36:55 62% 64 40 24 11% 0 570 487 429 38 00:53:35 00:49:22 484 1379 0
100 gros penis 1458 07:37:16 23% 109 24 67 4% 0% 430 750 581 25 00:56:54 00:51:10 358 1830 11
submitted by TagProLeaderboards to faltro [link] [comments]


2023.06.03 23:17 TagProLeaderboards Daily Leaderboard Log/Statistics for Saturday, June 03, 2023

# Name Points Time Win% G W L Pup% Save% Tags Popped Grabs Caps Hold Prevent Returns Support DCs
1 Pretzelcoatl 246 01:04:52 50% 12 6 6 15% 0 84 81 69 3 00:07:29 00:11:45 66 357 0
2 Unit Vector 232 01:05:37 61% 13 8 5 9% 0 84 86 78 6 00:07:15 00:12:51 71 353 0
3 N9VG8A 231 01:00:43 66% 12 8 4 6% 0 108 119 100 10 00:07:40 00:09:49 104 408 0
4 JonahJameson 228 00:57:40 46% 15 7 5 8% 0 100 80 81 9 00:08:58 00:08:03 92 357 3
5 Dolan Duck 209 01:00:13 50% 10 5 5 12% 0 141 74 66 10 00:05:37 00:16:23 117 305 0
6 yam meat 203 00:48:32 81% 11 9 2 10% 0 70 52 53 9 00:05:11 00:08:39 62 217 0
7 flopphone 199 00:42:06 77% 9 7 2 9% 0 80 61 59 7 00:06:19 00:05:59 73 191 0
8 Slick Mickey 193 00:52:16 54% 11 6 5 6% 0 88 79 73 5 00:05:20 00:09:01 71 291 0
9 springroll 187 01:05:10 15% 14 2 11 3% 0% 92 126 95 4 00:05:50 00:13:50 79 432 0
10 Strider 179 00:44:43 37% 8 3 5 16% 0 61 57 44 4 00:02:52 00:09:48 52 178 0
11 Jokic 177 00:52:06 55% 10 5 4 7% 0% 54 83 80 4 00:08:16 00:08:29 52 292 0
12 Byrie 162 00:51:11 30% 10 3 6 6% 0 50 98 76 4 00:07:03 00:05:31 47 264 1
13 rake 147 00:34:40 100% 7 7 0 12% 0 68 50 55 11 00:07:25 00:05:21 56 237 0
14 Balun Gong 141 00:36:12 50% 6 3 3 4% 0 37 50 41 6 00:03:03 00:07:29 37 253 0
15 Nilus 137 00:36:23 66% 6 4 1 9% 0 58 65 50 3 00:04:23 00:06:30 54 268 1
16 MarcusYallow 132 00:33:43 50% 6 3 3 2% 0 35 67 64 6 00:06:33 00:03:46 30 137 0
17 horbleborble 126 00:28:18 60% 5 3 2 3% 0 39 47 45 2 00:04:17 00:07:15 35 293 0
18 BoludoArg 125 00:45:35 20% 10 2 8 2% 0 52 49 31 1 00:03:24 00:05:53 37 170 0
19 Ballsofholly 123 00:30:35 80% 6 4 1 11% 0% 44 46 38 2 00:03:07 00:07:09 32 157 0
20 Doris 122 00:34:33 33% 6 2 4 10% 0 35 46 41 2 00:04:10 00:03:40 32 142 0
21 Moto Moto 119 00:37:34 57% 7 4 3 7% 0 48 76 71 3 00:05:20 00:05:33 40 257 0
22 La_Cocaine 114 00:28:36 83% 6 5 1 22% 0 62 47 41 3 00:02:51 00:04:09 53 155 0
23 jizz123 114 00:25:31 50% 6 3 2 14% 0 47 40 34 4 00:05:30 00:03:01 36 126 1
24 Oddball 112 00:29:31 33% 6 2 4 4% 0 39 51 45 1 00:03:28 00:05:26 35 198 0
25 he was 110 00:36:01 71% 7 5 2 17% 0 45 62 57 9 00:06:12 00:04:27 32 97 0
26 sb4life 108 00:30:21 12% 9 1 3 23% 0% 45 35 36 3 00:03:57 00:06:53 30 138 4
27 SportsMan 104 00:24:32 50% 4 2 2 9% 0 25 32 25 2 00:02:14 00:05:41 23 113 0
28 hamsun 102 00:26:21 40% 5 2 3 15% 0 44 41 36 1 00:03:26 00:05:59 31 147 0
29 @JEFE 100 00:26:12 33% 6 2 3 9% 0 34 45 40 3 00:03:41 00:04:37 29 154 1
30 Gryts 97 00:29:20 60% 5 3 2 1% 0 49 49 43 3 00:03:42 00:06:51 46 191 0
31 Gnat 94 00:22:09 40% 5 2 2 0% 0 28 25 23 2 00:01:40 00:03:18 27 91 1
32 Bootyman 90 00:18:17 80% 5 4 1 8% 0 28 23 20 2 00:02:26 00:02:36 24 89 0
33 kolmogorov 88 00:21:42 50% 4 2 2 18% 0 38 34 24 1 00:03:10 00:02:53 34 84 0
34 riotgrrrl 86 00:27:21 16% 6 1 5 6% 0 21 34 30 3 00:02:24 00:03:44 21 122 0
35 DMT 85 00:19:36 75% 4 3 1 8% 0 24 20 21 3 00:02:10 00:03:40 21 65 0
36 ill Fayze 83 00:16:28 100% 3 3 0 16% 100% 28 22 17 1 00:01:50 00:03:23 22 109 0
37 Oblong 80 00:19:15 66% 3 2 1 1% 0 33 29 28 2 00:01:48 00:03:15 29 96 0
38 Dad <| 76 00:26:34 50% 6 3 1 7% 0% 42 55 46 4 00:03:49 00:06:25 42 183 2
39 Rick G. #853 73 00:18:13 50% 4 2 2 21% 0 36 36 39 6 00:03:13 00:02:47 35 197 0
40 Cornpop 71 00:19:58 25% 5 1 2 0% 0% 27 39 32 3 00:02:27 00:04:05 27 139 1
41 #_# 71 00:23:59 75% 4 3 1 7% 0 32 36 33 1 00:02:10 00:07:22 30 154 0
42 poodIe 66 00:27:44 33% 6 2 4 5% 0 42 48 44 3 00:04:53 00:03:21 38 99 0
43 Churnoball 58 00:18:49 20% 5 1 4 4% 0 7 29 23 4 00:03:05 00:02:41 7 61 0
44 PuyoPuyo 58 00:11:59 100% 2 2 0 3% 0 7 22 20 2 00:01:40 00:01:30 7 28 0
45 -Sokka 58 00:14:57 66% 3 2 1 19% 0 20 26 22 3 00:02:56 00:01:47 17 57 0
46 FK 57 00:21:24 50% 4 2 2 8% 0 32 36 31 6 00:03:53 00:01:34 19 63 0
47 beans_ 55 00:14:05 33% 3 1 1 9% 0 16 28 17 0 00:01:12 00:00:41 13 42 1
48 Ekweuka 55 00:11:57 100% 2 2 0 15% 0 12 16 14 0 00:01:16 00:03:46 12 85 0
49 DonaIdTrump 54 00:10:47 100% 2 2 0 7% 0 16 16 18 3 00:03:08 00:00:06 15 37 0
50 fl33t 53 00:11:49 100% 2 2 0 15% 0 13 15 9 1 00:00:21 00:03:41 8 97 0
51 Square Jerk 53 00:23:02 40% 5 2 3 11% 0 17 35 31 2 00:03:29 00:02:58 15 86 0
52 BallzBuster 53 00:12:00 100% 2 1 0 5% 0% 16 20 20 0 00:01:23 00:02:43 15 85 0
53 BallsToYou. 52 00:11:02 100% 2 2 0 10% 0 16 25 20 1 00:01:26 00:01:48 14 84 0
54 slightlydead 52 00:15:49 25% 4 1 3 11% 0 18 25 19 0 00:01:44 00:04:17 16 72 0
55 Mahasamatman 51 00:10:51 100% 2 2 0 3% 0 16 14 16 2 00:01:20 00:03:06 14 92 0
56 Cheezedoodle 48 00:13:09 33% 3 1 2 3% 0 21 27 16 1 00:01:11 00:02:13 21 58 0
57 Chucho 48 00:13:22 33% 3 1 2 16% 0 17 14 11 0 00:01:09 00:02:33 9 50 0
58 Janklin 47 00:15:48 0 2 0 2 5% 0 18 24 15 0 00:02:24 00:00:52 17 26 0
59 JamPat 45 00:17:44 0 4 0 4 7% 0 13 32 24 0 00:02:17 00:02:27 12 64 0
60 dyd 39 00:13:42 0 3 0 2 3% 0% 20 30 22 2 00:01:48 00:03:11 20 105 0
61 SurfsUp 36 00:12:10 0 2 0 2 7% 0 6 20 16 1 00:01:30 00:00:53 3 24 0
62 Roll Player 34 00:16:05 75% 4 3 1 8% 0 23 18 22 4 00:02:27 00:02:51 16 100 0
63 Kobe Maybe 33 00:08:53 50% 2 1 1 7% 0 8 16 11 1 00:00:56 00:00:50 8 48 0
64 anom 32 00:06:20 100% 1 1 0 7% 0 9 5 3 0 00:00:43 00:01:08 7 12 0
65 Killshot 32 00:06:19 100% 1 1 0 28% 0 11 6 6 0 00:00:54 00:01:44 6 35 0
66 m-lady 32 00:08:38 100% 2 1 0 0% 0% 9 14 11 1 00:00:36 00:02:15 8 61 0
67 tnevlos 31 00:05:41 100% 1 1 0 33% 0 18 9 6 0 00:00:14 00:01:00 7 17 0
68 ADVICE MAN 31 00:06:20 100% 1 1 0 14% 0 6 6 6 0 00:00:12 00:02:09 6 110 0
69 5ca7f8f99ff6 30 00:15:17 66% 3 2 1 10% 0 22 23 25 3 00:02:26 00:01:24 13 40 0
70 supergremlin 30 00:06:19 100% 1 1 0 0% 0 7 10 8 0 00:00:24 00:01:53 7 43 0
71 Comrade. 29 00:12:22 50% 2 1 1 0% 0 14 16 14 0 00:01:02 00:02:52 14 76 0
72 Phil Ballins 29 00:05:13 100% 1 1 0 33% 0 10 8 8 1 00:00:38 00:00:23 4 8 0
73 vapedolphin 28 00:09:35 50% 3 1 1 0% 0% 9 19 13 1 00:01:10 00:01:46 9 34 0
74 .o0 27 00:07:54 33% 3 1 2 0% 0 6 18 17 1 00:02:00 00:00:16 5 19 0
75 bruvvy 26 00:06:20 100% 1 1 0 0% 0 4 11 7 0 00:00:32 00:02:11 4 51 0
76 spills 25 00:04:59 100% 1 1 0 30% 0 9 5 8 3 00:00:35 00:02:30 8 18 0
77 Niku 25 00:06:20 0 1 0 1 14% 0 10 6 7 1 00:00:30 00:03:10 6 34 0
78 Snowflaek 25 00:04:50 100% 1 1 0 20% 0 6 8 8 1 00:00:44 00:00:41 6 46 0
79 Glimmer 25 00:06:37 0 1 0 1 14% 0 13 12 7 0 00:00:36 00:00:36 10 18 0
80 beez 24 00:06:19 0 1 0 1 7% 0 7 6 6 1 00:00:47 00:00:48 7 12 0
81 TracyMcGravy 23 00:07:05 0 1 0 1 0% 0 14 19 14 0 00:00:49 00:01:30 14 69 0
82 RageQuit 22 00:07:58 0 2 0 2 14% 0 13 12 8 0 00:01:20 00:00:44 10 7 0
83 kpiu 21 00:06:18 0 1 0 1 0% 0 13 17 16 0 00:01:14 00:01:11 13 35 0
84 Akko 21 00:05:46 0 1 0 1 0% 0 4 11 10 0 00:00:48 00:00:19 4 8 0
85 Mr. SomeBall 21 00:06:19 0 1 0 1 0% 0 9 13 10 0 00:00:23 00:01:28 9 59 0
86 oriole 20 00:06:18 0 1 0 1 7% 0 5 13 7 0 00:00:33 00:02:55 5 24 0
87 Borgus 19 00:09:38 100% 2 2 0 4% 0 8 8 10 2 00:01:35 00:01:22 8 36 0
88 dewgazi 19 00:06:17 0 1 0 1 0% 0 3 9 5 0 00:00:18 00:02:21 3 12 0
89 yz 18 00:05:21 0 1 0 1 0% 0 12 12 11 0 00:00:41 00:01:33 9 37 0
90 philconnors 17 00:05:32 0 1 0 1 8% 0 9 8 6 1 00:00:28 00:01:28 5 22 0
91 VapingPigeon 16 00:06:20 0 1 0 1 0% 0 5 8 7 0 00:00:58 00:00:23 5 16 0
92 AA5 16 00:05:57 0 1 0 1 0% 0 2 13 9 0 00:00:38 00:00:38 2 24 0
93 <('.'<) 15 00:11:07 66% 3 2 1 11% 0 18 14 13 1 00:00:53 00:03:06 15 60 0
94 Matt 14 00:04:48 0 1 0 1 6% 0 7 4 4 0 00:00:31 00:00:28 6 8 0
95 brooo 13 00:05:18 0 1 0 1 16% 0 4 8 4 0 00:01:17 00:00:08 4 2 0
96 Swully 12 00:04:48 0 1 0 1 6% 0 1 12 8 1 00:00:48 00:00:01 1 2 0
97 BillyGumdrop 9 00:13:23 66% 3 2 1 8% 0 22 11 11 1 00:01:13 00:03:02 18 29 0
98 Bomberguy 8 00:03:36 50% 2 1 0 0% 0 3 4 5 1 00:00:25 00:00:36 3 10 1
99 Jooker 7 00:04:41 0 2 0 1 0% 0 3 6 6 0 00:01:08 00:00:40 2 20 1
100 Soccertanker 5 00:02:43 0 1 0 1 11% 0 0 8 4 0 00:00:20 00:00:03 0 12 0
submitted by TagProLeaderboards to u/TagProLeaderboards [link] [comments]


2023.06.03 23:17 TagProLeaderboards Daily Leaderboard Log/Statistics for Saturday, June 03, 2023

# Name Points Time Win% G W L Pup% Save% Tags Popped Grabs Caps Hold Prevent Returns Support DCs
1 Pretzelcoatl 246 01:04:52 50% 12 6 6 15% 0 84 81 69 3 00:07:29 00:11:45 66 357 0
2 Unit Vector 232 01:05:37 61% 13 8 5 9% 0 84 86 78 6 00:07:15 00:12:51 71 353 0
3 N9VG8A 231 01:00:43 66% 12 8 4 6% 0 108 119 100 10 00:07:40 00:09:49 104 408 0
4 JonahJameson 228 00:57:40 46% 15 7 5 8% 0 100 80 81 9 00:08:58 00:08:03 92 357 3
5 Dolan Duck 209 01:00:13 50% 10 5 5 12% 0 141 74 66 10 00:05:37 00:16:23 117 305 0
6 yam meat 203 00:48:32 81% 11 9 2 10% 0 70 52 53 9 00:05:11 00:08:39 62 217 0
7 flopphone 199 00:42:06 77% 9 7 2 9% 0 80 61 59 7 00:06:19 00:05:59 73 191 0
8 Slick Mickey 193 00:52:16 54% 11 6 5 6% 0 88 79 73 5 00:05:20 00:09:01 71 291 0
9 springroll 187 01:05:10 15% 14 2 11 3% 0% 92 126 95 4 00:05:50 00:13:50 79 432 0
10 Strider 179 00:44:43 37% 8 3 5 16% 0 61 57 44 4 00:02:52 00:09:48 52 178 0
11 Jokic 177 00:48:03 55% 9 5 4 6% 0 50 77 75 4 00:07:54 00:07:43 48 259 0
12 Byrie 162 00:51:11 30% 10 3 6 6% 0 50 98 76 4 00:07:03 00:05:31 47 264 1
13 rake 147 00:34:40 100% 7 7 0 12% 0 68 50 55 11 00:07:25 00:05:21 56 237 0
14 Balun Gong 141 00:36:12 50% 6 3 3 4% 0 37 50 41 6 00:03:03 00:07:29 37 253 0
15 Nilus 137 00:36:23 66% 6 4 1 9% 0 58 65 50 3 00:04:23 00:06:30 54 268 1
16 MarcusYallow 132 00:33:43 50% 6 3 3 2% 0 35 67 64 6 00:06:33 00:03:46 30 137 0
17 horbleborble 126 00:28:18 60% 5 3 2 3% 0 39 47 45 2 00:04:17 00:07:15 35 293 0
18 BoludoArg 125 00:45:35 20% 10 2 8 2% 0 52 49 31 1 00:03:24 00:05:53 37 170 0
19 Ballsofholly 123 00:30:35 80% 6 4 1 11% 0% 44 46 38 2 00:03:07 00:07:09 32 157 0
20 Doris 122 00:34:33 33% 6 2 4 10% 0 35 46 41 2 00:04:10 00:03:40 32 142 0
21 Moto Moto 119 00:37:34 57% 7 4 3 7% 0 48 76 71 3 00:05:20 00:05:33 40 257 0
22 La_Cocaine 114 00:28:36 83% 6 5 1 22% 0 62 47 41 3 00:02:51 00:04:09 53 155 0
23 jizz123 114 00:25:31 50% 6 3 2 14% 0 47 40 34 4 00:05:30 00:03:01 36 126 1
24 Oddball 112 00:29:31 33% 6 2 4 4% 0 39 51 45 1 00:03:28 00:05:26 35 198 0
25 he was 110 00:29:41 66% 6 4 2 16% 0 35 50 46 6 00:05:22 00:02:50 22 83 0
26 sb4life 108 00:30:21 12% 9 1 3 23% 0% 45 35 36 3 00:03:57 00:06:53 30 138 4
27 SportsMan 104 00:24:32 50% 4 2 2 9% 0 25 32 25 2 00:02:14 00:05:41 23 113 0
28 hamsun 102 00:26:21 40% 5 2 3 15% 0 44 41 36 1 00:03:26 00:05:59 31 147 0
29 @JEFE 100 00:26:12 33% 6 2 3 9% 0 34 45 40 3 00:03:41 00:04:37 29 154 1
30 Gryts 97 00:29:20 60% 5 3 2 1% 0 49 49 43 3 00:03:42 00:06:51 46 191 0
31 Gnat 94 00:22:09 40% 5 2 2 0% 0 28 25 23 2 00:01:40 00:03:18 27 91 1
32 Bootyman 90 00:18:17 80% 5 4 1 8% 0 28 23 20 2 00:02:26 00:02:36 24 89 0
33 kolmogorov 88 00:21:42 50% 4 2 2 18% 0 38 34 24 1 00:03:10 00:02:53 34 84 0
34 riotgrrrl 86 00:27:21 16% 6 1 5 6% 0 21 34 30 3 00:02:24 00:03:44 21 122 0
35 DMT 85 00:19:36 75% 4 3 1 8% 0 24 20 21 3 00:02:10 00:03:40 21 65 0
36 ill Fayze 83 00:16:28 100% 3 3 0 16% 100% 28 22 17 1 00:01:50 00:03:23 22 109 0
37 Oblong 80 00:19:15 66% 3 2 1 1% 0 33 29 28 2 00:01:48 00:03:15 29 96 0
38 Dad <| 76 00:26:34 50% 6 3 1 7% 0% 42 55 46 4 00:03:49 00:06:25 42 183 2
39 Rick G. #853 73 00:18:13 50% 4 2 2 21% 0 36 36 39 6 00:03:13 00:02:47 35 197 0
40 Cornpop 71 00:19:58 25% 5 1 2 0% 0% 27 39 32 3 00:02:27 00:04:05 27 139 1
41 #_# 71 00:23:59 75% 4 3 1 7% 0 32 36 33 1 00:02:10 00:07:22 30 154 0
42 poodIe 66 00:27:44 33% 6 2 4 5% 0 42 48 44 3 00:04:53 00:03:21 38 99 0
43 Churnoball 58 00:18:49 20% 5 1 4 4% 0 7 29 23 4 00:03:05 00:02:41 7 61 0
44 PuyoPuyo 58 00:11:59 100% 2 2 0 3% 0 7 22 20 2 00:01:40 00:01:30 7 28 0
45 -Sokka 58 00:14:57 66% 3 2 1 19% 0 20 26 22 3 00:02:56 00:01:47 17 57 0
46 FK 57 00:15:05 66% 3 2 1 8% 0 24 27 19 3 00:02:07 00:00:45 15 31 0
47 beans_ 55 00:14:05 33% 3 1 1 9% 0 16 28 17 0 00:01:12 00:00:41 13 42 1
48 Ekweuka 55 00:11:57 100% 2 2 0 15% 0 12 16 14 0 00:01:16 00:03:46 12 85 0
49 DonaIdTrump 54 00:10:47 100% 2 2 0 7% 0 16 16 18 3 00:03:08 00:00:06 15 37 0
50 fl33t 53 00:11:49 100% 2 2 0 15% 0 13 15 9 1 00:00:21 00:03:41 8 97 0
51 Square Jerk 53 00:23:02 40% 5 2 3 11% 0 17 35 31 2 00:03:29 00:02:58 15 86 0
52 BallzBuster 53 00:12:00 100% 2 1 0 5% 0% 16 20 20 0 00:01:23 00:02:43 15 85 0
53 BallsToYou. 52 00:11:02 100% 2 2 0 10% 0 16 25 20 1 00:01:26 00:01:48 14 84 0
54 slightlydead 52 00:15:49 25% 4 1 3 11% 0 18 25 19 0 00:01:44 00:04:17 16 72 0
55 Mahasamatman 51 00:10:51 100% 2 2 0 3% 0 16 14 16 2 00:01:20 00:03:06 14 92 0
56 Cheezedoodle 48 00:13:09 33% 3 1 2 3% 0 21 27 16 1 00:01:11 00:02:13 21 58 0
57 Chucho 48 00:13:22 33% 3 1 2 16% 0 17 14 11 0 00:01:09 00:02:33 9 50 0
58 Janklin 47 00:15:48 0 2 0 2 5% 0 18 24 15 0 00:02:24 00:00:52 17 26 0
59 JamPat 45 00:17:44 0 4 0 4 7% 0 13 32 24 0 00:02:17 00:02:27 12 64 0
60 dyd 39 00:13:42 0 3 0 2 3% 0% 20 30 22 2 00:01:48 00:03:11 20 105 0
61 SurfsUp 36 00:12:10 0 2 0 2 7% 0 6 20 16 1 00:01:30 00:00:53 3 24 0
62 Roll Player 34 00:16:05 75% 4 3 1 8% 0 23 18 22 4 00:02:27 00:02:51 16 100 0
63 Kobe Maybe 33 00:08:53 50% 2 1 1 7% 0 8 16 11 1 00:00:56 00:00:50 8 48 0
64 anom 32 00:06:20 100% 1 1 0 7% 0 9 5 3 0 00:00:43 00:01:08 7 12 0
65 Killshot 32 00:06:19 100% 1 1 0 28% 0 11 6 6 0 00:00:54 00:01:44 6 35 0
66 m-lady 32 00:08:38 100% 2 1 0 0% 0% 9 14 11 1 00:00:36 00:02:15 8 61 0
67 tnevlos 31 00:05:41 100% 1 1 0 33% 0 18 9 6 0 00:00:14 00:01:00 7 17 0
68 ADVICE MAN 31 00:06:20 100% 1 1 0 14% 0 6 6 6 0 00:00:12 00:02:09 6 110 0
69 5ca7f8f99ff6 30 00:15:17 66% 3 2 1 10% 0 22 23 25 3 00:02:26 00:01:24 13 40 0
70 supergremlin 30 00:06:19 100% 1 1 0 0% 0 7 10 8 0 00:00:24 00:01:53 7 43 0
71 Comrade. 29 00:12:22 50% 2 1 1 0% 0 14 16 14 0 00:01:02 00:02:52 14 76 0
72 Phil Ballins 29 00:05:13 100% 1 1 0 33% 0 10 8 8 1 00:00:38 00:00:23 4 8 0
73 vapedolphin 28 00:09:35 50% 3 1 1 0% 0% 9 19 13 1 00:01:10 00:01:46 9 34 0
74 .o0 27 00:07:54 33% 3 1 2 0% 0 6 18 17 1 00:02:00 00:00:16 5 19 0
75 bruvvy 26 00:06:20 100% 1 1 0 0% 0 4 11 7 0 00:00:32 00:02:11 4 51 0
76 spills 25 00:04:59 100% 1 1 0 30% 0 9 5 8 3 00:00:35 00:02:30 8 18 0
77 Niku 25 00:06:20 0 1 0 1 14% 0 10 6 7 1 00:00:30 00:03:10 6 34 0
78 Snowflaek 25 00:04:50 100% 1 1 0 20% 0 6 8 8 1 00:00:44 00:00:41 6 46 0
79 Glimmer 25 00:06:37 0 1 0 1 14% 0 13 12 7 0 00:00:36 00:00:36 10 18 0
80 beez 24 00:06:19 0 1 0 1 7% 0 7 6 6 1 00:00:47 00:00:48 7 12 0
81 TracyMcGravy 23 00:07:05 0 1 0 1 0% 0 14 19 14 0 00:00:49 00:01:30 14 69 0
82 RageQuit 22 00:07:58 0 2 0 2 14% 0 13 12 8 0 00:01:20 00:00:44 10 7 0
83 kpiu 21 00:06:18 0 1 0 1 0% 0 13 17 16 0 00:01:14 00:01:11 13 35 0
84 Akko 21 00:05:46 0 1 0 1 0% 0 4 11 10 0 00:00:48 00:00:19 4 8 0
85 Mr. SomeBall 21 00:06:19 0 1 0 1 0% 0 9 13 10 0 00:00:23 00:01:28 9 59 0
86 oriole 20 00:06:18 0 1 0 1 7% 0 5 13 7 0 00:00:33 00:02:55 5 24 0
87 Borgus 19 00:09:38 100% 2 2 0 4% 0 8 8 10 2 00:01:35 00:01:22 8 36 0
88 dewgazi 19 00:06:17 0 1 0 1 0% 0 3 9 5 0 00:00:18 00:02:21 3 12 0
89 yz 18 00:05:21 0 1 0 1 0% 0 12 12 11 0 00:00:41 00:01:33 9 37 0
90 philconnors 17 00:05:32 0 1 0 1 8% 0 9 8 6 1 00:00:28 00:01:28 5 22 0
91 VapingPigeon 16 00:06:20 0 1 0 1 0% 0 5 8 7 0 00:00:58 00:00:23 5 16 0
92 AA5 16 00:05:57 0 1 0 1 0% 0 2 13 9 0 00:00:38 00:00:38 2 24 0
93 <('.'<) 15 00:11:07 66% 3 2 1 11% 0 18 14 13 1 00:00:53 00:03:06 15 60 0
94 Matt 14 00:04:48 0 1 0 1 6% 0 7 4 4 0 00:00:31 00:00:28 6 8 0
95 brooo 13 00:05:18 0 1 0 1 16% 0 4 8 4 0 00:01:17 00:00:08 4 2 0
96 Swully 12 00:04:48 0 1 0 1 6% 0 1 12 8 1 00:00:48 00:00:01 1 2 0
97 BillyGumdrop 9 00:13:23 66% 3 2 1 8% 0 22 11 11 1 00:01:13 00:03:02 18 29 0
98 Bomberguy 8 00:03:36 50% 2 1 0 0% 0 3 4 5 1 00:00:25 00:00:36 3 10 1
99 Jooker 7 00:04:41 0 2 0 1 0% 0 3 6 6 0 00:01:08 00:00:40 2 20 1
100 Soccertanker 5 00:02:43 0 1 0 1 11% 0 0 8 4 0 00:00:20 00:00:03 0 12 0
submitted by TagProLeaderboards to u/TagProLeaderboards [link] [comments]


2023.06.03 23:17 TagProLeaderboards Daily Leaderboard Log/Statistics for Saturday, June 03, 2023

# Name Points Time Win% G W L Pup% Save% Tags Popped Grabs Caps Hold Prevent Returns Support DCs
1 Pretzelcoatl 246 01:04:52 50% 12 6 6 15% 0 84 81 69 3 00:07:29 00:11:45 66 357 0
2 Unit Vector 232 01:05:37 61% 13 8 5 9% 0 84 86 78 6 00:07:15 00:12:51 71 353 0
3 N9VG8A 231 01:00:43 66% 12 8 4 6% 0 108 119 100 10 00:07:40 00:09:49 104 408 0
4 JonahJameson 228 00:57:31 50% 14 7 5 8% 0 100 80 81 9 00:08:58 00:08:03 92 357 2
5 Dolan Duck 209 00:54:17 44% 9 4 5 13% 0 130 65 53 5 00:04:36 00:15:25 107 273 0
6 yam meat 203 00:48:32 81% 11 9 2 10% 0 70 52 53 9 00:05:11 00:08:39 62 217 0
7 flopphone 199 00:42:06 77% 9 7 2 9% 0 80 61 59 7 00:06:19 00:05:59 73 191 0
8 Slick Mickey 193 00:52:16 54% 11 6 5 6% 0 88 79 73 5 00:05:20 00:09:01 71 291 0
9 springroll 187 01:05:10 15% 14 2 11 3% 0% 92 126 95 4 00:05:50 00:13:50 79 432 0
10 Strider 179 00:44:43 37% 8 3 5 16% 0 61 57 44 4 00:02:52 00:09:48 52 178 0
11 Jokic 177 00:48:03 55% 9 5 4 6% 0 50 77 75 4 00:07:54 00:07:43 48 259 0
12 Byrie 162 00:51:11 30% 10 3 6 6% 0 50 98 76 4 00:07:03 00:05:31 47 264 1
13 rake 147 00:34:40 100% 7 7 0 12% 0 68 50 55 11 00:07:25 00:05:21 56 237 0
14 Balun Gong 141 00:36:12 50% 6 3 3 4% 0 37 50 41 6 00:03:03 00:07:29 37 253 0
15 Nilus 137 00:36:23 66% 6 4 1 9% 0 58 65 50 3 00:04:23 00:06:30 54 268 1
16 MarcusYallow 132 00:33:43 50% 6 3 3 2% 0 35 67 64 6 00:06:33 00:03:46 30 137 0
17 horbleborble 126 00:28:18 60% 5 3 2 3% 0 39 47 45 2 00:04:17 00:07:15 35 293 0
18 BoludoArg 125 00:45:35 20% 10 2 8 2% 0 52 49 31 1 00:03:24 00:05:53 37 170 0
19 Ballsofholly 123 00:30:35 80% 6 4 1 11% 0% 44 46 38 2 00:03:07 00:07:09 32 157 0
20 Doris 122 00:34:33 33% 6 2 4 10% 0 35 46 41 2 00:04:10 00:03:40 32 142 0
21 Moto Moto 119 00:37:34 57% 7 4 3 7% 0 48 76 71 3 00:05:20 00:05:33 40 257 0
22 La_Cocaine 114 00:28:36 83% 6 5 1 22% 0 62 47 41 3 00:02:51 00:04:09 53 155 0
23 jizz123 114 00:25:31 50% 6 3 2 14% 0 47 40 34 4 00:05:30 00:03:01 36 126 1
24 Oddball 112 00:29:31 33% 6 2 4 4% 0 39 51 45 1 00:03:28 00:05:26 35 198 0
25 he was 110 00:29:41 66% 6 4 2 16% 0 35 50 46 6 00:05:22 00:02:50 22 83 0
26 sb4life 108 00:30:21 12% 9 1 3 23% 0% 45 35 36 3 00:03:57 00:06:53 30 138 4
27 SportsMan 104 00:24:32 50% 4 2 2 9% 0 25 32 25 2 00:02:14 00:05:41 23 113 0
28 hamsun 102 00:26:21 40% 5 2 3 15% 0 44 41 36 1 00:03:26 00:05:59 31 147 0
29 @JEFE 100 00:26:12 33% 6 2 3 9% 0 34 45 40 3 00:03:41 00:04:37 29 154 1
30 Gryts 97 00:29:20 60% 5 3 2 1% 0 49 49 43 3 00:03:42 00:06:51 46 191 0
31 Gnat 94 00:22:09 40% 5 2 2 0% 0 28 25 23 2 00:01:40 00:03:18 27 91 1
32 Bootyman 90 00:18:17 80% 5 4 1 8% 0 28 23 20 2 00:02:26 00:02:36 24 89 0
33 kolmogorov 88 00:21:42 50% 4 2 2 18% 0 38 34 24 1 00:03:10 00:02:53 34 84 0
34 riotgrrrl 86 00:27:21 16% 6 1 5 6% 0 21 34 30 3 00:02:24 00:03:44 21 122 0
35 DMT 85 00:19:36 75% 4 3 1 8% 0 24 20 21 3 00:02:10 00:03:40 21 65 0
36 ill Fayze 83 00:16:28 100% 3 3 0 16% 100% 28 22 17 1 00:01:50 00:03:23 22 109 0
37 Oblong 80 00:19:15 66% 3 2 1 1% 0 33 29 28 2 00:01:48 00:03:15 29 96 0
38 Dad <| 76 00:20:09 60% 5 3 1 5% 0% 32 44 34 3 00:02:50 00:03:51 32 141 1
39 Rick G. #853 73 00:18:13 50% 4 2 2 21% 0 36 36 39 6 00:03:13 00:02:47 35 197 0
40 Cornpop 71 00:19:58 25% 5 1 2 0% 0% 27 39 32 3 00:02:27 00:04:05 27 139 1
41 #_# 71 00:23:59 75% 4 3 1 7% 0 32 36 33 1 00:02:10 00:07:22 30 154 0
42 poodIe 66 00:27:44 33% 6 2 4 5% 0 42 48 44 3 00:04:53 00:03:21 38 99 0
43 Churnoball 58 00:18:49 20% 5 1 4 4% 0 7 29 23 4 00:03:05 00:02:41 7 61 0
44 PuyoPuyo 58 00:11:59 100% 2 2 0 3% 0 7 22 20 2 00:01:40 00:01:30 7 28 0
45 -Sokka 58 00:14:57 66% 3 2 1 19% 0 20 26 22 3 00:02:56 00:01:47 17 57 0
46 FK 57 00:15:05 66% 3 2 1 8% 0 24 27 19 3 00:02:07 00:00:45 15 31 0
47 beans_ 55 00:14:05 33% 3 1 1 9% 0 16 28 17 0 00:01:12 00:00:41 13 42 1
48 Ekweuka 55 00:11:57 100% 2 2 0 15% 0 12 16 14 0 00:01:16 00:03:46 12 85 0
49 DonaIdTrump 54 00:10:47 100% 2 2 0 7% 0 16 16 18 3 00:03:08 00:00:06 15 37 0
50 fl33t 53 00:11:49 100% 2 2 0 15% 0 13 15 9 1 00:00:21 00:03:41 8 97 0
51 Square Jerk 53 00:23:02 40% 5 2 3 11% 0 17 35 31 2 00:03:29 00:02:58 15 86 0
52 BallzBuster 53 00:12:00 100% 2 1 0 5% 0% 16 20 20 0 00:01:23 00:02:43 15 85 0
53 BallsToYou. 52 00:11:02 100% 2 2 0 10% 0 16 25 20 1 00:01:26 00:01:48 14 84 0
54 slightlydead 52 00:15:49 25% 4 1 3 11% 0 18 25 19 0 00:01:44 00:04:17 16 72 0
55 Mahasamatman 51 00:10:51 100% 2 2 0 3% 0 16 14 16 2 00:01:20 00:03:06 14 92 0
56 Cheezedoodle 48 00:13:09 33% 3 1 2 3% 0 21 27 16 1 00:01:11 00:02:13 21 58 0
57 Chucho 48 00:13:22 33% 3 1 2 16% 0 17 14 11 0 00:01:09 00:02:33 9 50 0
58 Janklin 47 00:15:48 0 2 0 2 5% 0 18 24 15 0 00:02:24 00:00:52 17 26 0
59 JamPat 45 00:17:44 0 4 0 4 7% 0 13 32 24 0 00:02:17 00:02:27 12 64 0
60 dyd 39 00:13:42 0 3 0 2 3% 0% 20 30 22 2 00:01:48 00:03:11 20 105 0
61 SurfsUp 36 00:12:10 0 2 0 2 7% 0 6 20 16 1 00:01:30 00:00:53 3 24 0
62 Roll Player 34 00:16:05 75% 4 3 1 8% 0 23 18 22 4 00:02:27 00:02:51 16 100 0
63 Kobe Maybe 33 00:08:53 50% 2 1 1 7% 0 8 16 11 1 00:00:56 00:00:50 8 48 0
64 anom 32 00:06:20 100% 1 1 0 7% 0 9 5 3 0 00:00:43 00:01:08 7 12 0
65 Killshot 32 00:06:19 100% 1 1 0 28% 0 11 6 6 0 00:00:54 00:01:44 6 35 0
66 m-lady 32 00:08:38 100% 2 1 0 0% 0% 9 14 11 1 00:00:36 00:02:15 8 61 0
67 tnevlos 31 00:05:41 100% 1 1 0 33% 0 18 9 6 0 00:00:14 00:01:00 7 17 0
68 ADVICE MAN 31 00:06:20 100% 1 1 0 14% 0 6 6 6 0 00:00:12 00:02:09 6 110 0
69 5ca7f8f99ff6 30 00:15:17 66% 3 2 1 10% 0 22 23 25 3 00:02:26 00:01:24 13 40 0
70 supergremlin 30 00:06:19 100% 1 1 0 0% 0 7 10 8 0 00:00:24 00:01:53 7 43 0
71 Comrade. 29 00:06:20 100% 1 1 0 0% 0 9 10 8 0 00:00:37 00:01:44 9 40 0
72 Phil Ballins 29 00:05:13 100% 1 1 0 33% 0 10 8 8 1 00:00:38 00:00:23 4 8 0
73 vapedolphin 28 00:09:35 50% 3 1 1 0% 0% 9 19 13 1 00:01:10 00:01:46 9 34 0
74 .o0 27 00:07:54 33% 3 1 2 0% 0 6 18 17 1 00:02:00 00:00:16 5 19 0
75 bruvvy 26 00:06:20 100% 1 1 0 0% 0 4 11 7 0 00:00:32 00:02:11 4 51 0
76 spills 25 00:04:59 100% 1 1 0 30% 0 9 5 8 3 00:00:35 00:02:30 8 18 0
77 Niku 25 00:06:20 0 1 0 1 14% 0 10 6 7 1 00:00:30 00:03:10 6 34 0
78 Snowflaek 25 00:04:50 100% 1 1 0 20% 0 6 8 8 1 00:00:44 00:00:41 6 46 0
79 Glimmer 25 00:06:37 0 1 0 1 14% 0 13 12 7 0 00:00:36 00:00:36 10 18 0
80 beez 24 00:06:19 0 1 0 1 7% 0 7 6 6 1 00:00:47 00:00:48 7 12 0
81 TracyMcGravy 23 00:07:05 0 1 0 1 0% 0 14 19 14 0 00:00:49 00:01:30 14 69 0
82 RageQuit 22 00:07:58 0 2 0 2 14% 0 13 12 8 0 00:01:20 00:00:44 10 7 0
83 kpiu 21 00:06:18 0 1 0 1 0% 0 13 17 16 0 00:01:14 00:01:11 13 35 0
84 Akko 21 00:05:46 0 1 0 1 0% 0 4 11 10 0 00:00:48 00:00:19 4 8 0
85 Mr. SomeBall 21 00:06:19 0 1 0 1 0% 0 9 13 10 0 00:00:23 00:01:28 9 59 0
86 oriole 20 00:06:18 0 1 0 1 7% 0 5 13 7 0 00:00:33 00:02:55 5 24 0
87 Borgus 19 00:09:38 100% 2 2 0 4% 0 8 8 10 2 00:01:35 00:01:22 8 36 0
88 dewgazi 19 00:06:17 0 1 0 1 0% 0 3 9 5 0 00:00:18 00:02:21 3 12 0
89 yz 18 00:05:21 0 1 0 1 0% 0 12 12 11 0 00:00:41 00:01:33 9 37 0
90 philconnors 17 00:05:32 0 1 0 1 8% 0 9 8 6 1 00:00:28 00:01:28 5 22 0
91 VapingPigeon 16 00:06:20 0 1 0 1 0% 0 5 8 7 0 00:00:58 00:00:23 5 16 0
92 AA5 16 00:05:57 0 1 0 1 0% 0 2 13 9 0 00:00:38 00:00:38 2 24 0
93 <('.'<) 15 00:11:07 66% 3 2 1 11% 0 18 14 13 1 00:00:53 00:03:06 15 60 0
94 Matt 14 00:04:48 0 1 0 1 6% 0 7 4 4 0 00:00:31 00:00:28 6 8 0
95 brooo 13 00:05:18 0 1 0 1 16% 0 4 8 4 0 00:01:17 00:00:08 4 2 0
96 Swully 12 00:04:48 0 1 0 1 6% 0 1 12 8 1 00:00:48 00:00:01 1 2 0
97 BillyGumdrop 9 00:13:23 66% 3 2 1 8% 0 22 11 11 1 00:01:13 00:03:02 18 29 0
98 Bomberguy 8 00:03:36 50% 2 1 0 0% 0 3 4 5 1 00:00:25 00:00:36 3 10 1
99 Jooker 7 00:04:41 0 2 0 1 0% 0 3 6 6 0 00:01:08 00:00:40 2 20 1
100 Soccertanker 5 00:02:43 0 1 0 1 11% 0 0 8 4 0 00:00:20 00:00:03 0 12 0
submitted by TagProLeaderboards to u/TagProLeaderboards [link] [comments]


2023.06.03 23:14 TagProLeaderboards Daily Leaderboard Log/Statistics for Saturday, June 03, 2023

# Name Points Time Win% G W L Pup% Save% Tags Popped Grabs Caps Hold Prevent Returns Support DCs
1 Pretzelcoatl 246 01:02:51 54% 11 6 5 16% 0 83 78 68 3 00:07:25 00:11:01 65 355 0
2 Unit Vector 232 01:03:36 58% 12 7 5 9% 0 81 83 74 5 00:06:55 00:12:25 68 333 0
3 N9VG8A 231 00:58:42 72% 11 8 3 6% 0 107 114 98 10 00:07:26 00:09:07 103 402 0
4 JonahJameson 228 00:57:31 50% 14 7 5 8% 0 100 80 81 9 00:08:58 00:08:03 92 357 2
5 Dolan Duck 209 00:54:17 44% 9 4 5 13% 0 130 65 53 5 00:04:36 00:15:25 107 273 0
6 yam meat 203 00:46:08 80% 10 8 2 11% 0 68 50 50 8 00:04:41 00:08:22 60 207 0
7 flopphone 199 00:42:06 77% 9 7 2 9% 0 80 61 59 7 00:06:19 00:05:59 73 191 0
8 Slick Mickey 193 00:49:52 60% 10 6 4 5% 0 87 77 71 5 00:05:06 00:08:40 70 283 0
9 springroll 187 01:01:42 16% 13 2 10 3% 0% 90 118 89 4 00:05:20 00:13:37 77 418 0
10 Strider 179 00:44:43 37% 8 3 5 16% 0 61 57 44 4 00:02:52 00:09:48 52 178 0
11 Jokic 177 00:48:03 55% 9 5 4 6% 0 50 77 75 4 00:07:54 00:07:43 48 259 0
12 Byrie 162 00:51:11 30% 10 3 6 6% 0 50 98 76 4 00:07:03 00:05:31 47 264 1
13 rake 147 00:34:40 100% 7 7 0 12% 0 68 50 55 11 00:07:25 00:05:21 56 237 0
14 Balun Gong 141 00:36:12 50% 6 3 3 4% 0 37 50 41 6 00:03:03 00:07:29 37 253 0
15 Nilus 137 00:36:23 66% 6 4 1 9% 0 58 65 50 3 00:04:23 00:06:30 54 268 1
16 MarcusYallow 132 00:33:43 50% 6 3 3 2% 0 35 67 64 6 00:06:33 00:03:46 30 137 0
17 horbleborble 126 00:28:18 60% 5 3 2 3% 0 39 47 45 2 00:04:17 00:07:15 35 293 0
18 BoludoArg 125 00:42:11 22% 9 2 7 2% 0 48 47 31 1 00:03:24 00:05:06 35 155 0
19 Ballsofholly 123 00:30:35 80% 6 4 1 11% 0% 44 46 38 2 00:03:07 00:07:09 32 157 0
20 Doris 122 00:34:33 33% 6 2 4 10% 0 35 46 41 2 00:04:10 00:03:40 32 142 0
21 Moto Moto 119 00:37:34 57% 7 4 3 7% 0 48 76 71 3 00:05:20 00:05:33 40 257 0
22 La_Cocaine 114 00:28:36 83% 6 5 1 22% 0 62 47 41 3 00:02:51 00:04:09 53 155 0
23 jizz123 114 00:25:31 50% 6 3 2 14% 0 47 40 34 4 00:05:30 00:03:01 36 126 1
24 Oddball 112 00:29:31 33% 6 2 4 4% 0 39 51 45 1 00:03:28 00:05:26 35 198 0
25 he was 110 00:29:41 66% 6 4 2 16% 0 35 50 46 6 00:05:22 00:02:50 22 83 0
26 sb4life 108 00:30:21 12% 9 1 3 23% 0% 45 35 36 3 00:03:57 00:06:53 30 138 4
27 SportsMan 104 00:24:32 50% 4 2 2 9% 0 25 32 25 2 00:02:14 00:05:41 23 113 0
28 hamsun 102 00:26:21 40% 5 2 3 15% 0 44 41 36 1 00:03:26 00:05:59 31 147 0
29 @JEFE 100 00:26:12 33% 6 2 3 9% 0 34 45 40 3 00:03:41 00:04:37 29 154 1
30 Gryts 97 00:29:20 60% 5 3 2 1% 0 49 49 43 3 00:03:42 00:06:51 46 191 0
31 Gnat 94 00:22:09 40% 5 2 2 0% 0 28 25 23 2 00:01:40 00:03:18 27 91 1
32 Bootyman 90 00:18:17 80% 5 4 1 8% 0 28 23 20 2 00:02:26 00:02:36 24 89 0
33 kolmogorov 88 00:21:42 50% 4 2 2 18% 0 38 34 24 1 00:03:10 00:02:53 34 84 0
34 riotgrrrl 86 00:27:21 16% 6 1 5 6% 0 21 34 30 3 00:02:24 00:03:44 21 122 0
35 DMT 85 00:19:36 75% 4 3 1 8% 0 24 20 21 3 00:02:10 00:03:40 21 65 0
36 ill Fayze 83 00:16:28 100% 3 3 0 16% 100% 28 22 17 1 00:01:50 00:03:23 22 109 0
37 Oblong 80 00:19:15 66% 3 2 1 1% 0 33 29 28 2 00:01:48 00:03:15 29 96 0
38 Dad <| 76 00:20:09 60% 5 3 1 5% 0% 32 44 34 3 00:02:50 00:03:51 32 141 1
39 Rick G. #853 73 00:18:13 50% 4 2 2 21% 0 36 36 39 6 00:03:13 00:02:47 35 197 0
40 Cornpop 71 00:19:58 25% 5 1 2 0% 0% 27 39 32 3 00:02:27 00:04:05 27 139 1
41 #_# 71 00:23:59 75% 4 3 1 7% 0 32 36 33 1 00:02:10 00:07:22 30 154 0
42 poodIe 66 00:24:16 40% 5 2 3 6% 0 37 42 39 3 00:04:08 00:02:47 33 94 0
43 Churnoball 58 00:18:49 20% 5 1 4 4% 0 7 29 23 4 00:03:05 00:02:41 7 61 0
44 PuyoPuyo 58 00:11:59 100% 2 2 0 3% 0 7 22 20 2 00:01:40 00:01:30 7 28 0
45 -Sokka 58 00:14:57 66% 3 2 1 19% 0 20 26 22 3 00:02:56 00:01:47 17 57 0
46 FK 57 00:15:05 66% 3 2 1 8% 0 24 27 19 3 00:02:07 00:00:45 15 31 0
47 beans_ 55 00:14:05 33% 3 1 1 9% 0 16 28 17 0 00:01:12 00:00:41 13 42 1
48 Ekweuka 55 00:11:57 100% 2 2 0 15% 0 12 16 14 0 00:01:16 00:03:46 12 85 0
49 DonaIdTrump 54 00:10:47 100% 2 2 0 7% 0 16 16 18 3 00:03:08 00:00:06 15 37 0
50 fl33t 53 00:11:49 100% 2 2 0 15% 0 13 15 9 1 00:00:21 00:03:41 8 97 0
51 Square Jerk 53 00:23:02 40% 5 2 3 11% 0 17 35 31 2 00:03:29 00:02:58 15 86 0
52 BallzBuster 53 00:12:00 100% 2 1 0 5% 0% 16 20 20 0 00:01:23 00:02:43 15 85 0
53 BallsToYou. 52 00:11:02 100% 2 2 0 10% 0 16 25 20 1 00:01:26 00:01:48 14 84 0
54 slightlydead 52 00:15:49 25% 4 1 3 11% 0 18 25 19 0 00:01:44 00:04:17 16 72 0
55 Mahasamatman 51 00:10:51 100% 2 2 0 3% 0 16 14 16 2 00:01:20 00:03:06 14 92 0
56 Cheezedoodle 48 00:13:09 33% 3 1 2 3% 0 21 27 16 1 00:01:11 00:02:13 21 58 0
57 Chucho 48 00:13:22 33% 3 1 2 16% 0 17 14 11 0 00:01:09 00:02:33 9 50 0
58 Janklin 47 00:15:48 0 2 0 2 5% 0 18 24 15 0 00:02:24 00:00:52 17 26 0
59 JamPat 45 00:17:44 0 4 0 4 7% 0 13 32 24 0 00:02:17 00:02:27 12 64 0
60 dyd 39 00:13:42 0 3 0 2 3% 0% 20 30 22 2 00:01:48 00:03:11 20 105 0
61 SurfsUp 36 00:12:10 0 2 0 2 7% 0 6 20 16 1 00:01:30 00:00:53 3 24 0
62 Roll Player 34 00:14:05 66% 3 2 1 5% 0 15 16 20 4 00:02:15 00:02:14 14 90 0
63 Kobe Maybe 33 00:08:53 50% 2 1 1 7% 0 8 16 11 1 00:00:56 00:00:50 8 48 0
64 anom 32 00:06:20 100% 1 1 0 7% 0 9 5 3 0 00:00:43 00:01:08 7 12 0
65 Killshot 32 00:06:19 100% 1 1 0 28% 0 11 6 6 0 00:00:54 00:01:44 6 35 0
66 m-lady 32 00:08:38 100% 2 1 0 0% 0% 9 14 11 1 00:00:36 00:02:15 8 61 0
67 tnevlos 31 00:05:41 100% 1 1 0 33% 0 18 9 6 0 00:00:14 00:01:00 7 17 0
68 ADVICE MAN 31 00:06:20 100% 1 1 0 14% 0 6 6 6 0 00:00:12 00:02:09 6 110 0
69 5ca7f8f99ff6 30 00:15:17 66% 3 2 1 10% 0 22 23 25 3 00:02:26 00:01:24 13 40 0
70 supergremlin 30 00:06:19 100% 1 1 0 0% 0 7 10 8 0 00:00:24 00:01:53 7 43 0
71 Comrade. 29 00:06:20 100% 1 1 0 0% 0 9 10 8 0 00:00:37 00:01:44 9 40 0
72 Phil Ballins 29 00:05:13 100% 1 1 0 33% 0 10 8 8 1 00:00:38 00:00:23 4 8 0
73 vapedolphin 28 00:09:35 50% 3 1 1 0% 0% 9 19 13 1 00:01:10 00:01:46 9 34 0
74 .o0 27 00:07:54 33% 3 1 2 0% 0 6 18 17 1 00:02:00 00:00:16 5 19 0
75 bruvvy 26 00:06:20 100% 1 1 0 0% 0 4 11 7 0 00:00:32 00:02:11 4 51 0
76 spills 25 00:04:59 100% 1 1 0 30% 0 9 5 8 3 00:00:35 00:02:30 8 18 0
77 Niku 25 00:06:20 0 1 0 1 14% 0 10 6 7 1 00:00:30 00:03:10 6 34 0
78 Snowflaek 25 00:04:50 100% 1 1 0 20% 0 6 8 8 1 00:00:44 00:00:41 6 46 0
79 Glimmer 25 00:06:37 0 1 0 1 14% 0 13 12 7 0 00:00:36 00:00:36 10 18 0
80 beez 24 00:06:19 0 1 0 1 7% 0 7 6 6 1 00:00:47 00:00:48 7 12 0
81 TracyMcGravy 23 00:07:05 0 1 0 1 0% 0 14 19 14 0 00:00:49 00:01:30 14 69 0
82 RageQuit 22 00:07:58 0 2 0 2 14% 0 13 12 8 0 00:01:20 00:00:44 10 7 0
83 kpiu 21 00:06:18 0 1 0 1 0% 0 13 17 16 0 00:01:14 00:01:11 13 35 0
84 Akko 21 00:05:46 0 1 0 1 0% 0 4 11 10 0 00:00:48 00:00:19 4 8 0
85 Mr. SomeBall 21 00:06:19 0 1 0 1 0% 0 9 13 10 0 00:00:23 00:01:28 9 59 0
86 oriole 20 00:06:18 0 1 0 1 7% 0 5 13 7 0 00:00:33 00:02:55 5 24 0
87 Borgus 19 00:09:38 100% 2 2 0 4% 0 8 8 10 2 00:01:35 00:01:22 8 36 0
88 dewgazi 19 00:06:17 0 1 0 1 0% 0 3 9 5 0 00:00:18 00:02:21 3 12 0
89 yz 18 00:05:21 0 1 0 1 0% 0 12 12 11 0 00:00:41 00:01:33 9 37 0
90 philconnors 17 00:05:32 0 1 0 1 8% 0 9 8 6 1 00:00:28 00:01:28 5 22 0
91 VapingPigeon 16 00:06:20 0 1 0 1 0% 0 5 8 7 0 00:00:58 00:00:23 5 16 0
92 AA5 16 00:05:57 0 1 0 1 0% 0 2 13 9 0 00:00:38 00:00:38 2 24 0
93 <('.'<) 15 00:11:07 66% 3 2 1 11% 0 18 14 13 1 00:00:53 00:03:06 15 60 0
94 Matt 14 00:04:48 0 1 0 1 6% 0 7 4 4 0 00:00:31 00:00:28 6 8 0
95 brooo 13 00:05:18 0 1 0 1 16% 0 4 8 4 0 00:01:17 00:00:08 4 2 0
96 Swully 12 00:04:48 0 1 0 1 6% 0 1 12 8 1 00:00:48 00:00:01 1 2 0
97 BillyGumdrop 9 00:09:55 50% 2 1 1 6% 0 14 8 8 1 00:00:50 00:02:24 10 24 0
98 Bomberguy 8 00:03:36 50% 2 1 0 0% 0 3 4 5 1 00:00:25 00:00:36 3 10 1
99 Jooker 7 00:04:41 0 2 0 1 0% 0 3 6 6 0 00:01:08 00:00:40 2 20 1
100 Soccertanker 5 00:02:43 0 1 0 1 11% 0 0 8 4 0 00:00:20 00:00:03 0 12 0
submitted by TagProLeaderboards to u/TagProLeaderboards [link] [comments]


2023.06.03 23:06 mattrts How do you maintain intensity against players who are worse than you?

For context, I'm a 5 UTNTRP 3.5-4.0 (computer rated 3.5 but play 4.0 every now and again — hopefully getting bumped in December). I haven't lost a match against any 4 UTRs or lower in over a year and win about 50% of my matches against 5 UTRs. I win about 80% of 3.5 singles matches and about 50% at 4.0. However, I still have a problem with playing to my opponent's level. For example, I played a 2 UTR earlier today and only won by 6-3 6-4 because I could not motivate myself to play at the same intensity I play against players closer to my level. As a result, my footwork suffers and I make UEs I don't make against higher-level players.
How do y'all handle this? I think it's holding me back from getting to that 6 UTR level. I also don't want it to come across like I'm disrespecting my opponent and am just playing how I actually play.
submitted by mattrts to 10s [link] [comments]


2023.06.03 23:06 ForwardPhotograph771 Can you give me opinions on this build?

A few months back i decided to upgrade my working/gaming pc, and made a list with anintel 13600k and a 4070 ti, but i had to put it on hold.Now i'm resuming the project and i have a total of $3500 usd, so i changed the list by upgrading the processor to an i7-13700k and a 4090 gpu.
-I'll be using the pc for editing in premier and after effects.(and a little bit of gaming).
-Im from Chile, but i will buy everything in amazon US.
-This is the upgraded list, thank you for your opinions.
PCPartPicker Part List
Type Item Price
CPU Intel Core i7-13700K 3.4 GHz 16-Core Processor $407.99 @ Amazon
CPU Cooler Thermalright Phantom Spirit 120 SE 66.17 CFM CPU Cooler $45.90 @ Amazon
Motherboard Gigabyte Z790 AORUS ELITE AX ATX LGA1700 Motherboard $254.99 @ Amazon
Memory G.Skill Ripjaws S5 32 GB (2 x 16 GB) DDR5-6000 CL36 Memory $99.99 @ Amazon
Storage Western Digital Black SN770 2 TB M.2-2280 PCIe 4.0 X4 NVME Solid State Drive $109.99 @ Newegg
Storage Seagate Barracuda Compute 2 TB 3.5" 7200 RPM Internal Hard Drive $49.99 @ Amazon
Video Card Gigabyte GAMING OC GeForce RTX 4090 24 GB Video Card $1689.99 @ Amazon
Case Lian Li LANCOOL 216 ATX Mid Tower Case $109.99 @ B&H
Power Supply MSI MPG A850G PCIE5 850 W 80+ Gold Certified Fully Modular ATX Power Supply $159.99 @ Amazon
Monitor Acer Nitro XV272U Vbmiiprx 27.0" 2560 x 1440 170 Hz Monitor $249.99 @ Amazon
Prices include shipping, taxes, rebates, and discounts
Total $3178.81
Generated by PCPartPicker 2023-06-03 17:03 EDT-0400
submitted by ForwardPhotograph771 to buildmeapc [link] [comments]


2023.06.03 23:02 yacob_lad The prologue to my semi-sci-fi military novel [2067]

Any and all feedback would be appreciated.
PROLOGUE:
“When the world was lit aflame by this meat grinder of a conflict I looked to you for understanding, I, in my obligation, was sent to cleanse the flames, As to fill my hollowness with the great steam clouds, You answered back, You, in your obligation, were sent to further expand the flames, As to fill your hollowness with the ash, And yet, Neither of us still feel complete, You are wrecked, remnants, And I, have cause unfathomable damage in my efforts, ‘O murdeur ‘o mine, How different are you and I?”
The last paragraph in the novel, ‘Orange fields’ recovered by clean up crews in the Eastern African front during the Sol-War, each page had to be scanned meticulously so as to recognize the chemical weaponry stained pages. The side of which the author was on is still unknown, and yet, many would like to keep it that way.
2153, a year so distant yet so predictable, corporate power rising, spineless governments, weak and unarmed civilians and hot zones becoming more and more normal and recurring; with those same governments bowing to the corporations that demand to squeeze all the profit out of those same hot zones with those same cannon fodder civilians.
“We would like to personally thank you for your service here today, your bravery and sacrifice will not go unheard, this is your chance to take back one of the world's crowning achievements, the democratic republic of congo’s ‘zenith’ medical facility; as New MPLA forces have decided to overthrow the current government, this will be the first of many ops to be enacted that will take back this beautiful land.” This ‘heart warming’ speech, presented by a vanilla UN representative was echoed throughout the interior of the troop transport airship, each soldier situated on their standardised metal seat looking down in a melancholy manner at the damp flooring. Jason Kazamai followed along, except he wasn’t acknowledging the speech whatsoever, it was all background noise, alongside the background smell of muddy and sweaty soldiers who had been picked up from a previous battle. Seeing their disgruntled look and, some, torn off limbs set a heavy precedent that these New MPLA don’t mess around; and this being atop Jason’s already, rash and most certainly unwise decision to enlist made his muscles tense to a rubber band being stretched to its fullest level of fragility. He let his rifle, the default UN service rifle, flow down onto the floor, letting its sling, which was now a, almost, car seat belt type system integrated into their ballistic vest, weigh his chest down, making that usual metaphorical feeling, real.
The speech went on for a little while longer, before cutting to a noticeably lower quality news broadcast likely filmed in some warehouse some UN employee had spare. The presenter took a few short seconds staring at the camera before he noticed it was on. “In news today, New MPLA forces have decided to show their tolerance to those who go against their new communist ideology, they have sent out videos of them maiming and executing civilians who had taken part in the Kinshasa protest. And although all governments in the UN haven’t responded, internally they have all decided to band together ‘peace forging’ groups to settle down the New MPLA; yet due to its illegality their presence haven’t been allowed to pass through news and social media filters.” Jason toyed with a little string coming off of his dryland camo shirt.
“Our last story of today covers the recent Gunblade situation regarding the UN peace forging groups, as tensions rise with the Gunblade UECs and their confrontation over not being given the contract to send their own troops into the DRC; with Vale himself in a meeting apparently cursing at a UN representative and leaving the hall. More updates will be given as they arise.” The troop transport ship made a hefty metal slamming noise, causing a few soldiers to slide down their rows of seats. “The hell was that?” A soldier shouted. Rapid pinging noises sprinkled along the outside of the walls of the ship, like metallic rain. The instant the crew in the cockpit realised the situation the ship went into a lockdown, with all doors sealing tight and the ships internals becoming padded and secured; and for extra measure all lights had turned to a red to coincide with the alarm that was going off. Jason was struck up by the seering sound of the alarm and had his back pressed fully against the back of his seat. In an act of comfort he grabbed the barrel of his rifle, trying his hardest to regulate his breathing. The sounds had stopped for a short while. The undying echo of silence filling the void as everyone awaited the sound of whether they’d be able to return home
“NO!” To coincide with the sound of a blistering missile attack, a gaping hole erupted in the side of the troop transport ship, three soldiers were instantly sucked out of the ship and into the desolate drylands. With the still blaring sound of the alarms the pilot spoke over the comms and to the nearest UN FOB in DRC, “This is NOVA-BRAGA 12 we are being attacked by UFOS I repeat this is NOVA-BRAGA 12 we are being attacked by UFOS, if there are any UN allies in the area please respond, I beg!”
Jason dug his fingernails into the small leather armrest in the seat so as to not be taken into the afterlife by the scorching hole just opposite himself. The troop transport ship wrestled to find the attacker, sending out recon virus to infiltrate the attackers vehicles and spraying in all kinds of directions their small guns. But it was all futile.
The pilot talked to the still remaining troops within the ship, “I repeat to all still living soldiers to f-follow procedures and, uh, to hold on to whatever you can, we are going to try and land in the nearest forest!” The pilot started to try and diverge most power into the barely functioning thrusters for the ship. All within started to struggle to breathe as all the air filters and cyclers were failing at a rapid pace. Jason grasped his own mouth with intense force as sickening chemicals from the burrowed servers below the floor of the ship started to leak upwards. Many soldiers did not do the same, some didn’t realise it was even there and some thought of it as some saving gas designed to help them in some way; but once they inhaled it in a matter of seconds their lungs were scorched and their throats turned into tunnels of visceral pain. The gas ever so gently passed by Jason, and he started to slip down his seat so as to not get even touched by it.
“Almost there-” The pilot sent out a blistering cry as he was turned to nothing but charred remains as another, even more powerful missile was sent out at the ship. The ship spun right as it started to fall without power towards the ground. Jason held on tightly to the metal, trying so hard to dig his fingers into the packed steel. All other soldiers were trying the same, except all screaming, crying and the likes, whilst Jason stayed silent, there was nothing else his mind could think of to do. He let out a whimper and spoke, “Please.” Before bracing for impact against the drylands.
He awoke to the sight of a head split in two, brain matter spilled along the muddy terrain and skull splinters sticking out from the ground; Jason stared at the body for a few minutes, not sure whether that corpse was himself and he was looking at himself as a ghost. He looked down, he was lodged a few inches deep into the mud, he shuffled himself around to release himself. He gasped for air as a searing pain erupted from both of his legs as he tried to move around, yet still he continued to move around, surveying the area for an escape. The ship had been torn into many large pieces which kept most of the bodies of the soldiers within making it look like they had been placed into a blender and now great fires started outside cooking them from within. A mountain of bodies laid atop one-another in the centre of the ship wreckage. A faint siren was still ongoing just in the blurry distance. Jason grabbed a nearby shard of metal and pulled himself out of the mud, he further gasped for air searching for small pockets of uncontaminated air. He lay for a few minutes, trying to gather his thoughts again. It had all happened too quickly.
He dragged himself across the terrain, passing by chunks of flesh and bone; he was in too much distress to absorb the horrors before himself. He paused in his tracks as he heard distant shots, a shadow of a standing soldier aiming a rifle at a body displayed itself off of one of the ship fragments, he fired three rounds into the likely already dead body. Jason could ever-so slightly hear muffled comms chatter, with the fire and clouded thoughts in his mind making it more difficult to do so.
The soldier finished off verifying the bodies, “No sign of the Heir.” “Keep looking, those calculations were on point he should be breathing at the very least.” The soldier reloaded his rifle, a heavily modified D4M assault rifle. A shining star of Gunblade with its on-the-fly part removal system. The soldier then, with around two others following him, passed by the shard of the ship in which his shadow was just displayed. At this point Jason had retreated backwards to where he originally was laying at, he was aiming to go beyond the ship fragment situated behind this location and then… Escape?
A few more shots were fired as the soldiers encroached to Jason’s position, they were now tired of waiting around and only took a quarter-of-a-second before dumping a few shots into a body. Jason saw just a small metre before him a pistol, and in a stark flash of feeling heroic, Jason went for the weapon; thinking to himself how he was going to be able to take down these heavily armed and skilled soldiers with a simple 9mm. As he got closer and closer to the pistol, the stench of corpses and the sound of gunfire came closer and closer. Jason hurried as fast as he could do so with his injuries to the weapon.
As he thrust forward his hand to grab the pistol, it was kicked aside by one of the soldiers, who, as soon as he aimed the rifle at Jasons dome, put down the weapon and in a hurry bent down to grab him by the throat; the soldier was dressed in all black with a sort of mage-looking cloak that went down to his shins. Although Jason didn’t intake this first, as his helm was far more of a prolific sight. A Gunblade info helm. Advanced helmets, with swanky breathing ports located just where the mouth is going up to the nose, and audio devices placed in the ears and in all of the other space being heavy ballistic glass, with going down the middle to the breather being a ingrained black parting line. The soldier held Jason up with a firm grip like Jason was a child, he stared at him for a while before speaking, “Heir secure.” The voice was digitized and muffled, yet still translatable. The soldier had scanned Jason’s head structure and other small details.
After the soldier had confirmed Jasons capturing, the op leader spoke back, “Good, good, extraction is out in two minutes, excellent work today, three birds with one stone, or missile really…” The other soldiers started speaking to the op leader, trying to get a promotion by playing nice to him. “What are the birds then?” “Well, of course we got our target, but then we also got a good cover story for why we should be sent into the DRC, the UN having their 'skilled troops' massacred by B-tier terrorists isn't the greatest show of strength, and they'll be looking for a way to put this story into the ground, which of course will be us."
submitted by yacob_lad to WritersGroup [link] [comments]


2023.06.03 22:53 Renegade_Blade Set 9 Tome Tailoring Guide

With Legends bringing a degree of consistency to the early game and especially with URF guaranteeing a tome for all Gold and Prismatic games, knowing the best way to tailor your Tome of Traits is more important than ever.
I was curious about the statistical best ways to get certain emblems, so I made a little program for finding this.
Before starting, here's the simple explanation from the wiki).
Expanding on this, you must also know that some traits do not have an emblem associated with them, but they still count toward having a trait in the tailoring. Using this effectively, you can dramatically increase the chance of getting the emblem you would like.
In set 9, there are only 3 (excluding the 5 5-cost traits) traits without emblems: Yordle, Multicaster, and Targon.
This is all you need to know to keep it simple while having the most success with this method: Be at the minimum breakpoint for a tailored augment while having all 3 of the above traits.
2 other important points:

Now for the the absolute best comps for finding each emblem. I don't really feel like making a graphic at the moment, so here's just the raw data. If anyone wants to make something more with this, be my guest. I might eventually make a website with this info and some other features, but don't have the time right now.
For all of these results, the probability of the selected emblem being one of the four shown are all at 72.0%, which seems to be the theoretical maximum due to exactly 12 traits with all of the no-emblem traits.

Emblem Comps
Sorcerer Orianna,Soraka,Teemo,Warwick + Orianna,Soraka,Teemo,Zed + Poppy,Soraka,Swain,Taliyah + Soraka,Swain,Teemo,Warwick + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Zed,Malzahar
Void Cho'Gath,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Zed + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Warwick,Kassadin + Soraka,Teemo,Zed,Malzahar + Soraka,Teemo,Zed,Kassadin
Bastion Poppy,Soraka,Swain,Taliyah + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Zed + Poppy,Soraka,Warwick,Taliyah + Poppy,Soraka,Zed,Taliyah + Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Kassadin + Soraka,Teemo,Zed,Maokai + Soraka,Teemo,Zed,Kassadin
Deadeye Ashe,Soraka,Teemo,Warwick + Ashe,Soraka,Teemo,Zed + Soraka,Teemo,Warwick,Jhin
Rogue Ashe,Soraka,Teemo,Zed + Cho'Gath,Soraka,Teemo,Zed + Jinx,Soraka,Teemo,Zed + Orianna,Soraka,Teemo,Zed + Poppy,Soraka,Teemo,Zed + Poppy,Soraka,Zed,Taliyah + Renekton,Soraka,Teemo,Zed + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Zed,Cassiopeia + Soraka,Teemo,Zed,Vi + Soraka,Teemo,Zed,Maokai + Soraka,Teemo,Zed,Samira + Soraka,Teemo,Zed,Malzahar + Soraka,Teemo,Zed,Kassadin
Bruiser Cho'Gath,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Zed + Renekton,Soraka,Teemo,Warwick + Renekton,Soraka,Teemo,Zed + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Zed,Vi
Demacia Poppy,Soraka,Swain,Taliyah + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Zed + Poppy,Soraka,Warwick,Taliyah + Poppy,Soraka,Zed,Taliyah + Soraka,Teemo,Warwick,Kayle
Freljord Ashe,Soraka,Teemo,Warwick + Ashe,Soraka,Teemo,Zed
Juggernaut Ashe,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Warwick + Kled,Soraka,Teemo,Warwick + Kled,Soraka,Warwick,Taliyah + Orianna,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Warwick,Taliyah + Renekton,Soraka,Teemo,Warwick + Soraka,Swain,Teemo,Warwick + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Kayle + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Warwick,Jhin + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Warwick,Kassadin
Challenger Ashe,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Warwick + Kled,Soraka,Teemo,Warwick + Kled,Soraka,Warwick,Taliyah + Orianna,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Warwick,Taliyah + Renekton,Soraka,Teemo,Warwick + Soraka,Swain,Teemo,Warwick + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Kayle + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Warwick,Jhin + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Warwick,Kassadin + Soraka,Teemo,Zed,Samira
Slayer Ashe,Soraka,Teemo,Zed + Cho'Gath,Soraka,Teemo,Zed + Jinx,Soraka,Teemo,Zed + Kled,Soraka,Teemo,Warwick + Kled,Soraka,Warwick,Taliyah + Orianna,Soraka,Teemo,Zed + Poppy,Soraka,Teemo,Zed + Poppy,Soraka,Zed,Taliyah + Renekton,Soraka,Teemo,Zed + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Kayle + Soraka,Teemo,Zed,Cassiopeia + Soraka,Teemo,Zed,Vi + Soraka,Teemo,Zed,Maokai + Soraka,Teemo,Zed,Samira + Soraka,Teemo,Zed,Malzahar + Soraka,Teemo,Zed,Kassadin
Piltover Orianna,Soraka,Teemo,Warwick + Orianna,Soraka,Teemo,Zed + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Zed,Vi
Noxus Kled,Soraka,Teemo,Warwick + Kled,Soraka,Warwick,Taliyah + Poppy,Soraka,Swain,Taliyah + Soraka,Swain,Teemo,Warwick + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Zed,Cassiopeia + Soraka,Teemo,Zed,Samira
Zaun Ashe,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Warwick + Jinx,Soraka,Teemo,Zed + Kled,Soraka,Teemo,Warwick + Kled,Soraka,Warwick,Taliyah + Orianna,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Warwick,Taliyah + Renekton,Soraka,Teemo,Warwick + Soraka,Swain,Teemo,Warwick + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Kayle + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Warwick,Jhin + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Warwick,Kassadin
Shurima Kled,Soraka,Warwick,Taliyah + Poppy,Soraka,Swain,Taliyah + Poppy,Soraka,Warwick,Taliyah + Poppy,Soraka,Zed,Taliyah + Renekton,Soraka,Teemo,Warwick + Renekton,Soraka,Teemo,Zed + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Zed,Cassiopeia
Invoker Ashe,Soraka,Teemo,Warwick + Ashe,Soraka,Teemo,Zed + Cho'Gath,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Zed + Jinx,Soraka,Teemo,Zed + Kled,Soraka,Teemo,Warwick + Kled,Soraka,Warwick,Taliyah + Orianna,Soraka,Teemo,Warwick + Orianna,Soraka,Teemo,Zed + Poppy,Soraka,Swain,Taliyah + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Zed + Poppy,Soraka,Warwick,Taliyah + Poppy,Soraka,Zed,Taliyah + Renekton,Soraka,Teemo,Warwick + Renekton,Soraka,Teemo,Zed + Soraka,Swain,Teemo,Warwick + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Kayle + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Warwick,Jhin + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Warwick,Kassadin + Soraka,Teemo,Zed,Cassiopeia + Soraka,Teemo,Zed,Vi + Soraka,Teemo,Zed,Maokai + Soraka,Teemo,Zed,Samira + Soraka,Teemo,Zed,Malzahar + Soraka,Teemo,Zed,Kassadin
Gunner Jinx,Soraka,Teemo,Zed
Strategist Ashe,Soraka,Teemo,Warwick + Ashe,Soraka,Teemo,Zed + Cho'Gath,Soraka,Teemo,Warwick + Cho'Gath,Soraka,Teemo,Zed + Jinx,Soraka,Teemo,Zed + Kled,Soraka,Teemo,Warwick + Orianna,Soraka,Teemo,Warwick + Orianna,Soraka,Teemo,Zed + Poppy,Soraka,Swain,Taliyah + Poppy,Soraka,Teemo,Warwick + Poppy,Soraka,Teemo,Zed + Renekton,Soraka,Teemo,Warwick + Renekton,Soraka,Teemo,Zed + Soraka,Swain,Teemo,Warwick + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Cassiopeia + Soraka,Teemo,Warwick,Vi + Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Kayle + Soraka,Teemo,Warwick,Malzahar + Soraka,Teemo,Warwick,Jhin + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Warwick,Kassadin + Soraka,Teemo,Zed,Cassiopeia + Soraka,Teemo,Zed,Vi + Soraka,Teemo,Zed,Maokai + Soraka,Teemo,Zed,Samira + Soraka,Teemo,Zed,Malzahar + Soraka,Teemo,Zed,Kassadin
Ionia Ashe,Soraka,Teemo,Zed + Cho'Gath,Soraka,Teemo,Zed + Jinx,Soraka,Teemo,Zed + Orianna,Soraka,Teemo,Zed + Poppy,Soraka,Teemo,Zed + Poppy,Soraka,Zed,Taliyah + Renekton,Soraka,Teemo,Zed + Soraka,Swain,Teemo,Zed + Soraka,Teemo,Warwick,Jhin + Soraka,Teemo,Zed,Cassiopeia + Soraka,Teemo,Zed,Vi + Soraka,Teemo,Zed,Maokai + Soraka,Teemo,Zed,Samira + Soraka,Teemo,Zed,Malzahar + Soraka,Teemo,Zed,Kassadin
Shadow Isles Soraka,Teemo,Warwick,Maokai + Soraka,Teemo,Warwick,Viego + Soraka,Teemo,Zed,Maokai
Just want to note that all teams analyzed for this are <=4 size and <=2 cost. More results would be possible if this was extended.
submitted by Renegade_Blade to CompetitiveTFT [link] [comments]


2023.06.03 22:43 LeslieJMercer Dwemer tips & tricks?

Hi, I've completed my Falmer revival by reuniting Skyrim under the name of Falmeris - focused on slow and meticulous rise from a one-county island through mostly stewardship.
Now I want to try myself in a Dwemeri culture run, but I seem to fail within around 10-15 years due to not being able to get myself off the ground early enough so that surrounding rulers (or my own liege) don't conquer me through sheer numbers.
At this point I tried 3 locations - all of them are one-counrt starts - north/south Morrowind and the island that belongs to the Daggerfell duchy (close to Hammerfell which in lore is closely connected to the Dwemer) and in all of them I get conquered early and the game simply ends.
The biggest issue seems to be the early focus on learning - sure, the quickly progressing development seems nice, but it leaves you at max 400-500 men in your army while AI focuses on sheer numbers, so no matter the advantage or commander skills - they just overpower me.
Another issue would be the complete randomness of the councillors you get at the start. One time I even got a chancellor with 8 diplomacy and he GAVE a neighboring ruler a Cassus Belli on my poor little island. One slip-up and suddenly your only holding gets random -20 control and you're left making 0.3 gold per month
Any tips? I don't want to start the game as a duchy or anything - not only isnt it lore friendly, but also the game gets too easy too fast.
Another thing is that with the decision to play Dwemer revival, I also started playing Ironman for the first time, so it also has a huge impact on how I play and, more importantly, how I lose
submitted by LeslieJMercer to ElderKings [link] [comments]


2023.06.03 22:43 wherehaveubeen Hoping for some information on comma.ai - I’m supposed to buy a new car tomorrow, but this may influence my decision!

I apologise for these questions that have probably been answered 100 times before, but I’m in a bit of a time crunch and I would truly be grateful for some info and advice!
I discovered comma just a few minutes ago and I’m enamoured by what I am seeing. I have a deposit down on a 23 Corolla, mainly because I’m hoping that Toyota sense will help improve my soul crushing daily commute by taking the pressure off of keeping within a lane and at the right distance from other cars. Now I’m wondering if I should just buy a used 2021 for 10k less and spend the extra $1500 on a comma. I’m sure there are common questions, but I’m actually meeting with the dealership tomorrow to finalise the deal so I’m hoping for quick answers now while I continue to research on my own.
Will it give me any problems with insurance if I get in an accident? I use Travelers and I want to be 100% certain I won’t be liable if I get in an accident before moving forward.
Does comma work much better than Toyota sense 3.0? It seems like it is better able to actually autonomously drive (with user attention of course), but is it just a little better or way better?
Does it void the factory warranty?
Any help will be appreciated!
submitted by wherehaveubeen to SelfDrivingCars [link] [comments]


2023.06.03 22:36 Khorch- [Store]Cheap Diretide I, II and Aghanim's Collector's Cache Sets

Hi guys! I am selling Diretide cache I & II as well as some Aghanim Cache. I am selling those sets because i have many extras and i don't play those heroes that much. Some of the sets are unbundled but still can be gifted, you can check my inventory to be sure. Buyer goes first no exceptions. If you don't trust me, i am okay with using a middleman. I have sold to many people before and i have many proof screenshots and recordings i can show. I can do discounts for bulk sales.

Here is my steam profile: https://steamcommunity.com/profiles/76561198113120433
My steamrep: https://steamrep.com/search?q=76561198113120433

DIRETIDE COLLECTOR'S CACHE I
Set name Hero Quantity Price USD
Dark Behemoth (VERY RARE) Primal Beast 0 LEFT (1 SOLD) 25$ ITEMS
Angel of Vex (RARE) (Comes with persona) Invoker + Persona 2 LEFT (1 SOLD) 12$ ITEMS
Blue Horizons (RARE) Marci 2 LEFT (1 SOLD,1 RESERVED) 10$ ITEMS
Dirge Amplifier Undying 1 LEFT 3$ ITEMS
Forgotten Station Terrorblade 2 LEFT (1 SOLD) 3$ ITEMS
Crimson Dawn Phoenix 1 LEFT 3$ ITEMS
Trophies of the Hallowed Hunt Ursa 1 LEFT 3$ ITEMS
Chines of the Inquisitor Faceless Void 0 LEFT (1 SOLD) 3$ ITEMS
Spoils of the Shadowveil Spectre 1 LEFT (1 SOLD) 3$ ITEMS
Starlorn Adjudicator Dawnbreaker 0 LEFT (1 SOLD) 3$ ITEMS
Seadog's Stash Clockwerk 1 LEFT 3$ ITEMS
Hounds of Obsession Chen 2 LEFT 3$ ITEMS
Whippersnapper Snapfire 0 LEFT (1 SOLD) 3$ ITEMS
Scarlet Subversion Riki 0 LEFT (2 SOLD) 3$ ITEMS
Shadowleaf Insurgent Hoodwink 0 LEFT (2 SOLD) 3$ ITEMS

DIRETIDE COLLECTOR'S CACHE II
Set name Hero Quantity Price USD
Brands of the Reaper (RARE) Anti Mage 0 LEFT (SOLD) 20$ (SOLD)
Grudges of the Gallows (RARE) Treant Protector 1 LEFT 8$ ITEMS
Bird of Prey Legion Commander 0 LEFT (1 SOLD) 3$ ITEMS
Darkbrew's Transgression Alchemist 2 LEFT (1 SOLD) 3$ ITEMS
Transcendent Path Oracle 1 LEFT 3$ ITEMS
The Wilding Tiger Brewmaster 1 LEFT 3$ ITEMS
Dawn of a Darkness Foretold Doom 1 LEFT 3$ ITEMS
Grand Suppressor Silencer 1 LEFT 3$ ITEMS
Withering Pain Clinkz 1 LEFT 3$ ITEMS
Sacred Chamber Guardian Huskar 1 LEFT 3$ ITEMS
War Rig Eradicators Techies 1 LEFT 3$ ITEMS

AGHANIMS COLLECTOR'S CACHE
Set name Hero Quantity Price USD
Pyrexae Polymorph Perfected Ogre Magi (SOLD) 9$ (SOLD)
Days of the Demon Axe (SOLD) 10$ (SOLD)
March of the Crackerjack Mage Rubick 1 LEFT 4$ ITEMS
Scales of the Shadow Walker Phantom Lancer 1 LEFT 4$ ITEMS
Secrets of the Frost Singularity Ancient Apparation 0 LEFT (1 SOLD) 3$ ITEMS
The Chained Scribe Grimstroke 0 LEFT (1 RESERVED) 3$ ITEMS
Forgotten Fate Mars 1 LEFT 4$ ITEMS
submitted by Khorch- to Dota2Trade [link] [comments]


2023.06.03 22:34 Cota-Orben WIP Void Warlock (Season agnostic) build.

Basically I want a Void Warlock build that'll function well in mid-tier content (Lost Sectors/Raids/Dungeons/Master dungeons) for those times I don't have to be the one on Well duty.
Here's what I've come up with so far:
Exotic: Contraverse Hold
Weapons: WavesplittePotentially Collective Obligation when Pulses have anti-champ mods again.
Super: Vortex for stationary bosses, Cataclysm for jumpy boys and general add clear hijinks.
Grenade: Vortex (Though I hear it's underperforming, so maybe Scatter? Scatter doesn't benefit quite as much from Contraverse though)
Aspects: Chaos Accelerant/Child of the Old Gods
Feed the Void just doesn't really feel worth it.
Fragments: Starvation, Instability, Persistence, Undermining
Mods: Void Siphon/Surge, Firepower, class energy on grenade damage, etc.
Stat Priority: Resil/Disc, Recovery, everything else.
Armor aesthetic: Hive, because the hands ornament for Contraverse clashes with everything else. Also fish ornaments work well too.
submitted by Cota-Orben to destiny2builds [link] [comments]


2023.06.03 22:31 Googleflax I genuinely don't understand why people do this in Gold; it's so unfun and a huge waste of time.

I genuinely don't understand why people do this in Gold; it's so unfun and a huge waste of time. submitted by Googleflax to apexlegends [link] [comments]


2023.06.03 22:21 Jarabsk We ran into a slight problem, my first multiplayer games today though :P

We ran into a slight problem, my first multiplayer games today though :P submitted by Jarabsk to DeepRockGalactic [link] [comments]


2023.06.03 22:20 MissionLecture6357 Working on myself is awful lonely

I (M23) have been single for about 3 months now, I am quite introverted and don’t typically reach out to many people anyway so all of this can only be my fault. Perhaps I use Reddit quite often nowadays because I can be heard without having to be seen.
After my breakup I decided to work on myself. I’ve taken up a number of different personal responsibilities and they seem to be paying off quite well.
Gym 6 days a week for 2hrs+ each day. Working 7 days a week in a career type job and have part time jobs filling up a lot of my spare time. Awesome skincare routine. Successfully implemented a daily vitamin routine. I’ve organised my subscriptions so I’m not wasting money on things I don’t use. I’ve been finding reading quite enjoyable lately and have been reading most days. Quit masturbation (about 9 weeks running now). Quit vaping and no longer drink.
I feel good looking, strong and happy with myself and know once I meet someone I will be able to be good for them, and if I continue to work on myself for the next year or two I could be in an even better place. This is something I would like to achieve.
The one thing that cripples me every night once my busy day is over is the pain of loneliness. I have a couple of friends who send me funny videos and I reciprocate, and I have conversations with my parents every so often, but it doesn’t fill that void that a woman would fill for me.
I crave intimacy with a woman so much, yet I don’t have the balls to go up to them in person with fear of being perceived as a creep and I haven’t taken any pictures worthy of social media in years because of my whole “experience life without ruining it with cameras” attitude. I am able to hold an enjoyable conversation with women and make them laugh with ease, I just don’t want to bother make myself vulnerable to rejection. I suppose that makes me a quite a coward.
Id love to meet a woman like me so we can disappear off the face of the earth together and live our own quiet lives and celebrate our wins quietly together. But I don’t know how to find her and worry I won’t for a while, and the thought of being lonely for the foreseeable future really brings me pain.
If anyone has any life advice they’d like to share with me I’d love to read it.
Thanks for taking the time to read :)
submitted by MissionLecture6357 to dating_advice [link] [comments]


2023.06.03 22:17 GoastRiter [GUIDE] Living Large in Los Santos: Unleashing Chaos. Making Friends and Rediscovering the Thrill of GTA Online!

If you're reading this, perhaps you're like me. You have most things you want in GTA Online. You've "done it all". And now you're bored.
But... have you *really* done it all? Turns out, most of us haven't. There's so much to do in this game, and it's easy to get stuck in old habits that prevent us from discovering everything there is to do in Los Santos!
So I began writing down all my ideas for having fun in the game, and basically use these suggestions as guidelines to always find something new to do. It has completely reinvigorated my joy for the game, and I hope it can help you do the same!
If you're having trouble with motivation or inspiration, then I suggest picking something at random from the list and just doing it! You might disccover that you love it, just like I did!
And if you have anything more to add, please share your comments so that we can all help build this list together. :)

Let's go!

submitted by GoastRiter to u/GoastRiter [link] [comments]


2023.06.03 22:15 GoastRiter [GUIDE] Living Large in Los Santos: Unleashing Chaos. Making Friends and Rediscovering the Thrill of GTA Online!

If you're reading this, perhaps you're like me. You have most things you want in GTA Online. You've "done it all". And now you're bored.
But... have you *really* done it all? Turns out, most of us haven't. There's so much to do in this game, and it's easy to get stuck in old habits that prevent us from discovering everything there is to do in Los Santos!
So I began writing down all my ideas for having fun in the game, and basically use these suggestions as guidelines to always find something new to do. It has completely reinvigorated my joy for the game, and I hope it can help you do the same!
If you're having trouble with motivation or inspiration, then I suggest picking something at random from the list and just doing it! You might disccover that you love it, just like I did!
And if you have anything more to add, please share your comments so that we can all help build this list together. :)

Let's go!

submitted by GoastRiter to gtaonline [link] [comments]


2023.06.03 22:14 CIassicNegan Weird texture bug on ps4. Only happens on new game plus. If i load older save, the issue is gone. What can i do? Issue also present in the og save file. Even worse there.

Weird texture bug on ps4. Only happens on new game plus. If i load older save, the issue is gone. What can i do? Issue also present in the og save file. Even worse there. submitted by CIassicNegan to thewitcher3 [link] [comments]


2023.06.03 22:06 Aspel They put a Freehold ON THE MOON!!!

I'm jumping off of an idea in Kith and Kin for a Lunar Freehold:
So, Kith and Kin introduces the concept of Changelings... IN SPACE! and even gives an extremely brief write up about a Freehold on the Moon. Unfortunately what is given is not actually all that detailed and I don't particularly like it that much (sorry to whoever wrote it, you did a great job sparking my imagination though). I really want to expand upon that, possibly for Storyteller's Vault. So I'm creating a new setting. I call it Selene.
Selene is extremely different from the Changeling we're familiar with, and comes straight to you out of a Frank Franzetta painting of a Princess of Mars cover. This is a place where you might do battle with Mi-Go or shapeshifting spirits. It's a setting where the second star to the right and straight on til morning will lead to a world of adventure.
It departs heavily from the Lunar Freehold given in the book. First, the Court System is completely different. There are five courts, each dedicated to one of the Celestial Maidens that the earliest freehold bargained with. Second, there are humans on the moon. These two facts are related. The foundational myth of Selene, though the actual details are lost to the generations, is that the earliest Changelings on the moon for hundreds of years were simply Free Companies. Stories abound going back thousands of years of people living on the moon, and these Changelings might have inspired those stories, or the Gentry that created them might have been inspired by them. Either way, they came out in a lifeless world but somehow managed to stay. Meanwhile, the other major group were the people of Habitat 3D3N. They were not taken by the Gentry, but their ancestors were taken by Angels. Those ancestors lived on the far side of the moon in paradise, but that time was long since passed as the Infrastructure that kept Habitat 3D3N running was failing.
This is when the Five Maidens came to the Free Companies of the Moon, which conveniently numbered Five. They were Mercury, Venus, Mars, Jupiter, and Saturn (sometimes known as the Crone). Each offered the Free Companies power and protection—the Moon is a Harsh Mistress after all—if they chose to aid the people flee Eden (and worshiped the Maidens). And so the Free Companies earned their Bargains. The Court of Journeys lead the way, seeking out the best paths. The Court of Serenity tended to the Integrity of the refugees and fed them as they traveled. The Court of Battles protected them from the myriad threats found crossing Oceanus Procellarum. The Court of Secrets hid them away from the most dangerous things. And the Court of Endings watched over it all and guided the change. Bargains in hand, the arduous trek through complete, the Freehold of Selene was well and truly established.

That was maybe a hundred years ago. Since then, the people of Selene have built a city on the Moon. Though I'm leaving the specifics up to anyone who uses the setting (I think somewhere in Oceanus Procellarum or Mare Tranquillitatis is thematically appropriate). Selene holds many secrets, as the Jovians will tell you. Civilizations the God Machine abandoned that were forced to fend for themselves and fell centuries ago. Fallen Lychgates, crafted by the Huntsmen before the Gentry came to Arcadia. And of course simply swashbuckling space faring adventure as you fight off the migou.
Mercury — Journeys
Mercurian; Explorers, Wanderers
The Court of Mercury are explorers. They may have their homes, but they also want to venture among the stars. Many of them didn’t originate on Selene, they came to her from Earth on the Wishing Roads because they felt the call of the Maiden of Journeys. They’re also the ones who want to expand Selene’s reaches well beyond the Kuiper Belt, and are the reason that there are some tiny little places on Io and Mars.
The Maiden herself watches over the Wishing Roads, and her courtiers explore them with abandon, though her protection isn’t perfect. But then again, the Explorers wouldn’t want it any other way. Emotion: Wonder
Venus — Serenity
Venusian; (Moon) Rabbits, Gardeners
The Court of Serenity are empathetic and caring, and keep the Freehold of Selene running. They create flourishing hedge gardens that are welcome to all, and make sure to try helping the other Courtiers with their problems. They are the volunteers without whom Selene would simply be a dead rock floating in space.
The Maiden herself makes Selene able to grow food, both fae and mortal. Her bounty is tended to by her acolytes.
Emotion: Compassion
Mars — Battle Martian; Warriors, Tacticians
The Moon is a harsh mistress. While the other Celestial Courts might try to tame it, the Chosen of Battles makes sure that it stays in one piece. The Gentry aren’t the only threat the Court of Battle has to face. Strange shapeshifting horrors lurk in the dark, and even stranger alien threats abound. The Martian Courtiers fight those threats as well, clashing against them with spear and sword and magic.
The Bargain with the Maiden of Battle protects Selene from the Idigam, Angels of the God-Machine, and greater threats that would obliterate Selene. The formless spirit monsters, Huntsmen, and fungal aliens that slip through, her children take care of.
Emotion: Tenacity
Jupiter — Secrets
Jovian; Tattletales, Treasure Keepers
The Jovian Court hunts down secrets. Not simply to hoard the arcane and dangerous knowledge away—though they do that as well—but also to reveal the secrets, even when doing so causes trouble. They are forever driven by the desire to know what’s in the box, as well as the joy in hiding something in a box from others.
The Maiden of Secrets protects Selene by covering the Freehold from the prying eyes of both Supernatural and Terrestrial agents. The blanket of secrecy isn’t perfect, though, and her chosen keep the Freehold from leaving traces.
Emotion: Curiosity
Saturn — Endings
Saturnine; Judges, Crones
The Maiden Saturn, sometimes called the Crone, is the final arbiter of all. She and her Court oversee the end of all things and the crushing void of space. But as with the Tarot Death, she isn’t simply a complete ending, but instead change. One door opens and another closes. They are the opportunity of the void. They act as judges of the Freehold, meting out punishments and calling for restitution.
The Crone grants her blessing to Selene by allowing the Freehold to breathe, the void of her star ocean parting for the area around the Freehold.
Emotion: Resignation ​
submitted by Aspel to WhiteWolfRPG [link] [comments]