T1 team logo
final
1 : 0
vs.
Bo1
UnitedERA team logo
Betting
Anonymous Betting & Instant Crypto Withdrawals
Sign up for Rainbet for Valorant Bets!
Streams
No stream available
VODs
Not yet available
Maps/Stats
13
T1
10 / 3
Ascent
31:19
UnitedERA
2 / 1
3
T1
UNIT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
All
Attack
Defend
R
ACS
K/D/A
+/–
KAST
ADR
HS%
FK
FD
+/–
1.670.861.95
306205340
20317/844/312
+12-1+13
94%75%100%
202143222
19%40%14%
615
000
+6+1+5
1.591.771.53
309219339
18315/716/633
+11+2+9
100%100%100%
207150226
26%38%24%
312
101
+2+1+1
1.412.041.21
237395186
1569/725/734
+8+4+4
100%100%100%
139223111
17%22%13%
211
000
+2+1+1
1.360.871.52
177151186
1028/624/13211
+40+4
88%50%100%
10896112
10%29%6%
000
110
-1-10
1.231.401.18
227312200
1358/835/808
+5+2+3
94%100%92%
147179136
27%29%26%
101
202
-10-1
R
ACS
K/D/A
+/–
KAST
ADR
HS%
FK
FD
+/–
0.860.990.48
219245143
1082/15114/220
-5-3-2
56%50%75%
15016896
25%26%20%
000
110
-1-10
0.590.540.75
129110186
642/15114/312
-9-7-2
69%58%100%
9384120
30%21%50%
000
220
-2-20
0.580.460.93
127110181
853/15123/211
-7-70
38%33%50%
646175
12%5%33%
101
101
000
0.460.430.58
168157204
963/16124/000
-7-6-1
44%42%50%
9587119
31%22%100%
330
541
-2-1-1
0.070.040.22
5737117
321/15114/211
-12-9-3
44%33%75%
353049
25%33%17%
000
321
-3-2-1
All
Attack
Defend
R
ACS
K/D/A
+/–
KAST
ADR
HS%
FK
FD
+/–
0.861.951.67
306205340
20317/844/312
+12-1+13
94%75%100%
202143222
19%40%14%
615
000
+6+1+5
1.771.531.59
309219339
18315/716/633
+11+2+9
100%100%100%
207150226
26%38%24%
312
101
+2+1+1
2.041.211.41
237395186
1569/725/734
+8+4+4
100%100%100%
139223111
17%22%13%
211
000
+2+1+1
0.871.521.36
177151186
1028/624/13211
+40+4
88%50%100%
10896112
10%29%6%
000
110
-1-10
1.401.181.23
227312200
1358/835/808
+5+2+3
94%100%92%
147179136
27%29%26%
101
202
-10-1
R
ACS
K/D/A
+/–
KAST
ADR
HS%
FK
FD
+/–
0.990.480.86
219245143
1082/15114/220
-5-3-2
56%50%75%
15016896
25%26%20%
000
110
-1-10
0.540.750.59
129110186
642/15114/312
-9-7-2
69%58%100%
9384120
30%21%50%
000
220
-2-20
0.460.930.58
127110181
853/15123/211
-7-70
38%33%50%
646175
12%5%33%
101
101
000
0.430.580.46
168157204
963/16124/000
-7-6-1
44%42%50%
9587119
31%22%100%
330
541
-2-1-1
0.040.220.07
5737117
321/15114/211
-12-9-3
44%33%75%
353049
25%33%17%
000
321
-3-2-1
Head-to-head
No previous encounters
Past Matches
View:
Threaded
Linear
Threaded
Hide Pre-match
#1
4evrDuke
1
Frags
+

If steel = Chamber
Then t1 = win
Else t1 = lose

Sorry I didn't take Coding/Ip as a subject 🥺

#2
SHEEPMAN69
6
Frags
+

#include <iostream>
#include <time.h>
#include <string>

using namespace std;

int main()
{
string Steel;
string Chamber;
string notChamber;

srand(time(NULL));
int randNum = rand()%2;
if (randNum == 0){
Steel = Chamber;
cout << "win";
}
else {
Steel = notChamber;
cout << "lose";
}
}

#4
theldb
1
Frags
+
pub struct T1Roster {
    pub curry_agent: Option<String>,
    pub thwifo_agent: Option<String>,
    pub steel_agent: String,
    pub seven_agent: Option<String>,
    pub pwny_agent: Option<String>,
}

fn main() {
    let t1_vs_ue_roster = T1Roster {
        curry_agent: None,
        thwifo_agent: None,
        steel_agent: "Chamber".to_string(),
        seven_agent: None,
        pwny_agent: None
    };

    if t1_vs_ue_roster.steel_agent == "Chamber".to_string() {
        println!("{}", true)
    }
    else {
        println!("{}", false)
    }
}
#5
YaysterBestOpNA
0
Frags
+

a bit cleaner

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>

struct Player {
    //TODO: Everything else
    bool isChamber;
};

int main() {
    struct Player steel;
    srand(time(0));
    steel.isChamber = rand() % 2 == 0;
    printf(steel.isChamber ? "Win.\n" : "Lose.\n");
}
#3
DELUSIONAL_ZANDER_FAN
1
Frags
+

13-0 united era

  • Preview
  • Edit
› check that that your post follows the forum rules and guidelines or get formatting help
Sign up or log in to post a comment