I want to make an AI that tries to predict game results, is there an API that can give me match history with results and map scores
I want to make an AI that tries to predict game results, is there an API that can give me match history with results and map scores
Maybe runitback.gg, or you can do it the dirty way by scraping from vlr or thespike.
if(teamA == "XSET" OR teamB == "XSET"):
winner = "XSET"
return winner
else:
winner = random(teamA, teamB)
return winner
EZ coding, you don't even need API for stats
Typical_NA_Fan [#4]if(teamA == "XSET" OR teamB == "XSET"):
winner = "XSET"
return winner
else:
winner = random(teamA, teamB)
return winnerEZ coding, you don't even need API for stats
yes
Typical_NA_Fan [#4]if(teamA == "XSET" OR teamB == "XSET"):
winner = "XSET"
return winner
else:
winner = random(teamA, teamB)
return winnerEZ coding, you don't even need API for stats
+1, but
def winner(teams):
return "XSET" if "XSET" in teams else choice(teams) ArgieGR8ArgieB8ArgieM8 [#3]Maybe runitback.gg, or you can do it the dirty way by scraping from vlr or thespike.
coughs abruptly I've never done taken stats from vlr
ArgieGR8ArgieB8ArgieM8 [#6]+1, but
def winner(teams): return "XSET" if "XSET" in teams else choice(teams)
int teamarray[2];
for(int i=0;i<2;i++){
cin>>teams;}
if(teamarray[0]==TSM){
cout<<"TSM is the winner";}
else if(teamarray[1]==TSM){
cout<<"TSM is the winner";}
else{
cout<<"Team is not TSM so they are trash";}
TSMFANFOREVER [#8]int teamarray[2];
for(int i=0;i<2;i++){
cin>>teams;}
if(teamarray[0]==TSM){
cout<<"TSM is the winner";}
else if(teamarray[1]==TSM){
cout<<"TSM is the winner";}
else{
cout<<"Team is not TSM so they are trash";}
here u go king https://www.vlr.gg/pickem/91e38fc9
ArgieGR8ArgieB8ArgieM8 [#9]here u go king https://www.vlr.gg/pickem/91e38fc9
how
ArgieGR8ArgieB8ArgieM8 [#9]here u go king https://www.vlr.gg/pickem/91e38fc9
this is it