Battle Rap and Freestyle Battles at Lets Beef


 
Start a battle

Vote on a battle to earn +1 credit!
 
  Grand Championship 2025
Battles ready for vote
Phracture vs HuNgReeDy BeAsT

Vote on tournaments to earn +5 credits!
 
 
Battle Feed
No battles yet.
 
 

Go Back   Lets Beef - Battle Rap Forums > Battle Arena > General Talk
Register Articles FAQ Community Calendar Today's Posts Search Journals

Notices

User Tag List

Reply
 
Thread Tools Display
  #1  
Unread 03-28-2017, 11:42 AM
Mindless Mindless is on FIRE! 5+ wins in a row!
Staff Hall Of Famer
HEBREW BANHAMMER
Join Date: May 2006
Posts: 6,578
Mentioned: 713 Post(s)
Tagged: 56 Thread(s)
Estimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 stars
Ranked Audio Record
3 Won / 1 Lost
Estimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 stars
Ranked Text Record
34 Won / 6 Lost
Exclusive Text Record
1 Won / 1 Lost
Default

Quote:
Originally Posted by Indianapolis Jones View Post
Pointless because you don't have the userbase to pull it off plus this isn't a game where raw mechanical skill, knowledge on the latest metas from balance patches and partying up vs solos take president over knowing who you're VSing. Theres a reason people here prefer to pre arrange battles\have 3 days notice from tourneys ect. Plus most people prefer to pick their opponents spontainiously to get themselves motivated rather than have ELO RNG dictate they face *insert name* For the tenth time this week because the site doesn't have the numbers to support an ELO MM.
Which ever way you want to slice it, it wont work.
I've actually been working on a system off and on in my spare time writing pseudo code to try and figure out a good way to do the ranking system and I think it addresses this problem.

My method involves assigning a points to users that they gain or lose according to whether they win or lose. How many points the winner takes from the loser ranges on factors from the difference in estimated skill level, current rank and w/l record. Basically it works by having a range of 0-N where N is the cap of the maximum amount of points that can be taken. A user facing another with a much lower skill level than them would gain nothing from the win but an increase in w/l. Basically it would nerf someone like @Bnas from doing his goofy shit and being able to crack the top 100 because at a certain point you gain nothing from battling people that much lower than you. Also, the more you do it the faster it nets you nothing because your w/l goes up. I'll post it below but it's unfinished and a mess at this point.

Keep in mind this is pseudocode (Written with p5.JavaScript syntax for the most part):

Code:
var maxEstimatedSkill = 10;
var ELOPoints = NumberOfRegisteredUsers;
var MaxEloChange = 32;
//W-L expressed as decimal
var winLoss = 0;
//I'm not sure how exactly to express a mathematical formula for determining exactly how to remove the number of points taken
var pointSubtraction;

var User1 = {
//All numbers in here are random. I didn't feel like writing some actual code in
//a spreadsheet to distribute the ELO points amongst the current user count
//(139,421) randomly and then sorting it. This should do well enough to express what
//I'm getting at.
    currentRank: 35,
    EstimatedSkill: 7,
    CurrentEloPoints: 15000,
    winLoss = 75.3
}

var User2 = {
    currentRank: 1000,
    EstimatedSkill: 7,
    CurrentEloPoints: 1200,
    winLoss = 25.2
}

function Battle() {
    
    Predict = {
    User1PredictionScore = user1.CurrentEloPoints + (user1.currentRank + user1.EstimatedSkill + user1.winLoss);
    User2PredictionScore = user2.CurrentEloPoints + (user2.currentRank + user2.EstimatedSkill + user2.winLoss);
      if (User1PredictionScore > User2PredictionScore) prediction = User1 wins;
      if (User2PredictionScore > User1PredictionScore) prediction = User2 wins;
      if (User1PredictionScore == User2PredictionScore) prediction = CoinFlip; //do nothing
    }
    
    DetermineWinner = {
    if (user1VoteTally > greater than user2VoteTally) {
    user1 wins} else { 
    user2 wins
     }
    }
    
    Winner = Result
    
    DetermineRankChange = {
    if Winner was predicted {
    ELOAdded = MaxEloChange - (pointSubtraction)
    }
    if Winner was not predicted {
    ELOAdded = UnderDogWin
    UnderDogWin() {
    //Determine the amount of points added to the winner based on the amount of difference between the two.
    //Probably by using the PredictionScore.
        }    
    }
    }
}
__________________
Quote:
Originally Posted by Krhyme Killz View Post
lol...hava nagila nigga
Reply With Quote
Unread 03-28-2017, 11:42 AM   #1
 
Mindless Mindless is on FIRE! 5+ wins in a row!
Staff Hall Of Famer
HEBREW BANHAMMER
Estimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 stars
Ranked Audio Record
3 Won / 1 Lost
Estimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 stars
Ranked Text Record
34 Won / 6 Lost
Exclusive Text Record
1 Won / 1 Lost
 
Join Date: May 2006
Voted: 95 audio / 718 text
Posts: 6,578
Mentioned: 713 Post(s)
Tagged: 56 Thread(s)


Default

Quote:
Originally Posted by Indianapolis Jones View Post
Pointless because you don't have the userbase to pull it off plus this isn't a game where raw mechanical skill, knowledge on the latest metas from balance patches and partying up vs solos take president over knowing who you're VSing. Theres a reason people here prefer to pre arrange battles\have 3 days notice from tourneys ect. Plus most people prefer to pick their opponents spontainiously to get themselves motivated rather than have ELO RNG dictate they face *insert name* For the tenth time this week because the site doesn't have the numbers to support an ELO MM.
Which ever way you want to slice it, it wont work.
I've actually been working on a system off and on in my spare time writing pseudo code to try and figure out a good way to do the ranking system and I think it addresses this problem.

My method involves assigning a points to users that they gain or lose according to whether they win or lose. How many points the winner takes from the loser ranges on factors from the difference in estimated skill level, current rank and w/l record. Basically it works by having a range of 0-N where N is the cap of the maximum amount of points that can be taken. A user facing another with a much lower skill level than them would gain nothing from the win but an increase in w/l. Basically it would nerf someone like @Bnas from doing his goofy shit and being able to crack the top 100 because at a certain point you gain nothing from battling people that much lower than you. Also, the more you do it the faster it nets you nothing because your w/l goes up. I'll post it below but it's unfinished and a mess at this point.

Keep in mind this is pseudocode (Written with p5.JavaScript syntax for the most part):

Code:
var maxEstimatedSkill = 10;
var ELOPoints = NumberOfRegisteredUsers;
var MaxEloChange = 32;
//W-L expressed as decimal
var winLoss = 0;
//I'm not sure how exactly to express a mathematical formula for determining exactly how to remove the number of points taken
var pointSubtraction;

var User1 = {
//All numbers in here are random. I didn't feel like writing some actual code in
//a spreadsheet to distribute the ELO points amongst the current user count
//(139,421) randomly and then sorting it. This should do well enough to express what
//I'm getting at.
    currentRank: 35,
    EstimatedSkill: 7,
    CurrentEloPoints: 15000,
    winLoss = 75.3
}

var User2 = {
    currentRank: 1000,
    EstimatedSkill: 7,
    CurrentEloPoints: 1200,
    winLoss = 25.2
}

function Battle() {
    
    Predict = {
    User1PredictionScore = user1.CurrentEloPoints + (user1.currentRank + user1.EstimatedSkill + user1.winLoss);
    User2PredictionScore = user2.CurrentEloPoints + (user2.currentRank + user2.EstimatedSkill + user2.winLoss);
      if (User1PredictionScore > User2PredictionScore) prediction = User1 wins;
      if (User2PredictionScore > User1PredictionScore) prediction = User2 wins;
      if (User1PredictionScore == User2PredictionScore) prediction = CoinFlip; //do nothing
    }
    
    DetermineWinner = {
    if (user1VoteTally > greater than user2VoteTally) {
    user1 wins} else { 
    user2 wins
     }
    }
    
    Winner = Result
    
    DetermineRankChange = {
    if Winner was predicted {
    ELOAdded = MaxEloChange - (pointSubtraction)
    }
    if Winner was not predicted {
    ELOAdded = UnderDogWin
    UnderDogWin() {
    //Determine the amount of points added to the winner based on the amount of difference between the two.
    //Probably by using the PredictionScore.
        }    
    }
    }
}
__________________
Quote:
Originally Posted by Krhyme Killz View Post
lol...hava nagila nigga
Offline   Reply With Quote
  #2  
Unread 03-28-2017, 12:09 PM
J u s T C J u s T C is on FIRE! 5+ wins in a row!
Join Date: Jul 2012
Posts: 6,812
Mentioned: 1535 Post(s)
Tagged: 21 Thread(s)
Estimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 6.88/10 starsEstimated Skill in Text: 6.88/10 starsEstimated Skill in Text: 6.88/10 starsEstimated Skill in Text: 6.88/10 stars
Ranked Text Record
4 Won / 0 Lost
Default

Quote:
Originally Posted by Mindless View Post
I've actually been working on a system off and on in my spare time writing pseudo code to try and figure out a good way to do the ranking system and I think it addresses this problem.

My method involves assigning a points to users that they gain or lose according to whether they win or lose. How many points the winner takes from the loser ranges on factors from the difference in estimated skill level, current rank and w/l record. Basically it works by having a range of 0-N where N is the cap of the maximum amount of points that can be taken. A user facing another with a much lower skill level than them would gain nothing from the win but an increase in w/l. Basically it would nerf someone like @Bnas from doing his goofy shit and being able to crack the top 100 because at a certain point you gain nothing from battling people that much lower than you. Also, the more you do it the faster it nets you nothing because your w/l goes up. I'll post it below but it's unfinished and a mess at this point.

Keep in mind this is pseudocode (Written with p5.JavaScript syntax for the most part):

Code:
var maxEstimatedSkill = 10;
var ELOPoints = NumberOfRegisteredUsers;
var MaxEloChange = 32;
//W-L expressed as decimal
var winLoss = 0;
//I'm not sure how exactly to express a mathematical formula for determining exactly how to remove the number of points taken
var pointSubtraction;

var User1 = {
//All numbers in here are random. I didn't feel like writing some actual code in
//a spreadsheet to distribute the ELO points amongst the current user count
//(139,421) randomly and then sorting it. This should do well enough to express what
//I'm getting at.
    currentRank: 35,
    EstimatedSkill: 7,
    CurrentEloPoints: 15000,
    winLoss = 75.3
}

var User2 = {
    currentRank: 1000,
    EstimatedSkill: 7,
    CurrentEloPoints: 1200,
    winLoss = 25.2
}

function Battle() {
    
    Predict = {
    User1PredictionScore = user1.CurrentEloPoints + (user1.currentRank + user1.EstimatedSkill + user1.winLoss);
    User2PredictionScore = user2.CurrentEloPoints + (user2.currentRank + user2.EstimatedSkill + user2.winLoss);
      if (User1PredictionScore > User2PredictionScore) prediction = User1 wins;
      if (User2PredictionScore > User1PredictionScore) prediction = User2 wins;
      if (User1PredictionScore == User2PredictionScore) prediction = CoinFlip; //do nothing
    }
    
    DetermineWinner = {
    if (user1VoteTally > greater than user2VoteTally) {
    user1 wins} else { 
    user2 wins
     }
    }
    
    Winner = Result
    
    DetermineRankChange = {
    if Winner was predicted {
    ELOAdded = MaxEloChange - (pointSubtraction)
    }
    if Winner was not predicted {
    ELOAdded = UnderDogWin
    UnderDogWin() {
    //Determine the amount of points added to the winner based on the amount of difference between the two.
    //Probably by using the PredictionScore.
        }    
    }
    }
}
Is this with an automated MM system or pick your battles in mind?
__________________
Quote:
Originally Posted by Godbody View Post

I'm part German myself.

Fuck off, I got work to do.
Reply With Quote
Unread 03-28-2017, 12:09 PM   #2
 
J u s T C J u s T C is on FIRE! 5+ wins in a row!
Estimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 7.91/10 starsEstimated Skill in Text: 6.88/10 starsEstimated Skill in Text: 6.88/10 starsEstimated Skill in Text: 6.88/10 starsEstimated Skill in Text: 6.88/10 stars
Ranked Text Record
4 Won / 0 Lost
 
Join Date: Jul 2012
Voted: 46 audio / 30 text
Posts: 6,812
Mentioned: 1535 Post(s)
Tagged: 21 Thread(s)


Default

Quote:
Originally Posted by Mindless View Post
I've actually been working on a system off and on in my spare time writing pseudo code to try and figure out a good way to do the ranking system and I think it addresses this problem.

My method involves assigning a points to users that they gain or lose according to whether they win or lose. How many points the winner takes from the loser ranges on factors from the difference in estimated skill level, current rank and w/l record. Basically it works by having a range of 0-N where N is the cap of the maximum amount of points that can be taken. A user facing another with a much lower skill level than them would gain nothing from the win but an increase in w/l. Basically it would nerf someone like @Bnas from doing his goofy shit and being able to crack the top 100 because at a certain point you gain nothing from battling people that much lower than you. Also, the more you do it the faster it nets you nothing because your w/l goes up. I'll post it below but it's unfinished and a mess at this point.

Keep in mind this is pseudocode (Written with p5.JavaScript syntax for the most part):

Code:
var maxEstimatedSkill = 10;
var ELOPoints = NumberOfRegisteredUsers;
var MaxEloChange = 32;
//W-L expressed as decimal
var winLoss = 0;
//I'm not sure how exactly to express a mathematical formula for determining exactly how to remove the number of points taken
var pointSubtraction;

var User1 = {
//All numbers in here are random. I didn't feel like writing some actual code in
//a spreadsheet to distribute the ELO points amongst the current user count
//(139,421) randomly and then sorting it. This should do well enough to express what
//I'm getting at.
    currentRank: 35,
    EstimatedSkill: 7,
    CurrentEloPoints: 15000,
    winLoss = 75.3
}

var User2 = {
    currentRank: 1000,
    EstimatedSkill: 7,
    CurrentEloPoints: 1200,
    winLoss = 25.2
}

function Battle() {
    
    Predict = {
    User1PredictionScore = user1.CurrentEloPoints + (user1.currentRank + user1.EstimatedSkill + user1.winLoss);
    User2PredictionScore = user2.CurrentEloPoints + (user2.currentRank + user2.EstimatedSkill + user2.winLoss);
      if (User1PredictionScore > User2PredictionScore) prediction = User1 wins;
      if (User2PredictionScore > User1PredictionScore) prediction = User2 wins;
      if (User1PredictionScore == User2PredictionScore) prediction = CoinFlip; //do nothing
    }
    
    DetermineWinner = {
    if (user1VoteTally > greater than user2VoteTally) {
    user1 wins} else { 
    user2 wins
     }
    }
    
    Winner = Result
    
    DetermineRankChange = {
    if Winner was predicted {
    ELOAdded = MaxEloChange - (pointSubtraction)
    }
    if Winner was not predicted {
    ELOAdded = UnderDogWin
    UnderDogWin() {
    //Determine the amount of points added to the winner based on the amount of difference between the two.
    //Probably by using the PredictionScore.
        }    
    }
    }
}
Is this with an automated MM system or pick your battles in mind?
__________________
Quote:
Originally Posted by Godbody View Post

I'm part German myself.

Fuck off, I got work to do.
Offline  
Reply With Quote
  #3  
Unread 03-28-2017, 02:31 PM
Mindless Mindless is on FIRE! 5+ wins in a row!
Staff Hall Of Famer
HEBREW BANHAMMER
Join Date: May 2006
Posts: 6,578
Mentioned: 713 Post(s)
Tagged: 56 Thread(s)
Estimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 stars
Ranked Audio Record
3 Won / 1 Lost
Estimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 stars
Ranked Text Record
34 Won / 6 Lost
Exclusive Text Record
1 Won / 1 Lost
Default

Quote:
Originally Posted by Indianapolis Jones View Post
Is this with an automated MM system or pick your battles in mind?
You would pick your own battles. It's kind of based on the way that RPG stats are gained in that you can only level up by facing opponents with stats that are equal to or higher than your own. Basically we're applying the law of diminishing returns to battling. The difference is that someone low ranked doesn't risk as much facing someone much higher than them.

Quote:
Originally Posted by ILLoKWENT View Post
lmao.. goldmic already had a ratings system in place years ago, ive been bringing that idea up for a long time.. for each profile, a person is given a +/- followed by a designated points, corresponding to how strong the opponent ia based on opponents, and rank.. so a strong battler will see a weak battlers points as +5/-35 meaning if he keeps battling scrubs, hell only gain 5 points toward his rating, but if he loses ,he could lose 35... if a strong battler faces one thats his level, hed see +15/-15.. etc.etc. this will encourage battlers to challenge stronger opponents to move up quicker..dunno how the point system is now, but at least with this in place, you can visually see what points youd gain, or lost against certain opponents
I kind of like this but I think that's too much information to give. IMO, the only information anyone should have on anyone is their current rank, w/l and ESL. If you give people too much insight into the system they figure out a way to game it and use it in ways it wasn't intended. Also, what would a weak battler see on the page of a strong battler? What's the cap on point loss?

Quote:
Originally Posted by Nicholas View Post
This sounds better than the original suggestion. I don't like the idea of forced match-ups and I don't think suggested match-ups would even be acknowledged. The problem is, what do you guys do now? Delete all previous points? That seems unfair.
Freeze the current rankings and put them somewhere and say "This is our old ranking system". Then you restart everyone at zero.

Also, forced match-ups is lame unless it's voluntary. What I mean by that is, for the general system it's bad. If it were it's own system it could be fun though. I don't see it ever happening though.
__________________
Quote:
Originally Posted by Krhyme Killz View Post
lol...hava nagila nigga
Reply With Quote
Unread 03-28-2017, 02:31 PM   #3
 
Mindless Mindless is on FIRE! 5+ wins in a row!
Staff Hall Of Famer
HEBREW BANHAMMER
Estimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 stars
Ranked Audio Record
3 Won / 1 Lost
Estimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 stars
Ranked Text Record
34 Won / 6 Lost
Exclusive Text Record
1 Won / 1 Lost
 
Join Date: May 2006
Voted: 95 audio / 718 text
Posts: 6,578
Mentioned: 713 Post(s)
Tagged: 56 Thread(s)


Default

Quote:
Originally Posted by Indianapolis Jones View Post
Is this with an automated MM system or pick your battles in mind?
You would pick your own battles. It's kind of based on the way that RPG stats are gained in that you can only level up by facing opponents with stats that are equal to or higher than your own. Basically we're applying the law of diminishing returns to battling. The difference is that someone low ranked doesn't risk as much facing someone much higher than them.

Quote:
Originally Posted by ILLoKWENT View Post
lmao.. goldmic already had a ratings system in place years ago, ive been bringing that idea up for a long time.. for each profile, a person is given a +/- followed by a designated points, corresponding to how strong the opponent ia based on opponents, and rank.. so a strong battler will see a weak battlers points as +5/-35 meaning if he keeps battling scrubs, hell only gain 5 points toward his rating, but if he loses ,he could lose 35... if a strong battler faces one thats his level, hed see +15/-15.. etc.etc. this will encourage battlers to challenge stronger opponents to move up quicker..dunno how the point system is now, but at least with this in place, you can visually see what points youd gain, or lost against certain opponents
I kind of like this but I think that's too much information to give. IMO, the only information anyone should have on anyone is their current rank, w/l and ESL. If you give people too much insight into the system they figure out a way to game it and use it in ways it wasn't intended. Also, what would a weak battler see on the page of a strong battler? What's the cap on point loss?

Quote:
Originally Posted by Nicholas View Post
This sounds better than the original suggestion. I don't like the idea of forced match-ups and I don't think suggested match-ups would even be acknowledged. The problem is, what do you guys do now? Delete all previous points? That seems unfair.
Freeze the current rankings and put them somewhere and say "This is our old ranking system". Then you restart everyone at zero.

Also, forced match-ups is lame unless it's voluntary. What I mean by that is, for the general system it's bad. If it were it's own system it could be fun though. I don't see it ever happening though.
Offline   Reply With Quote
  #4  
Unread 03-29-2017, 12:58 AM
ILLoKWENT ILLoKWENT is on FIRE! 30+ wins in a row!ILLoKWENT is on FIRE! 30+ wins in a row!ILLoKWENT is on FIRE! 30+ wins in a row!
Join Date: Dec 2011
Posts: 2,315
Mentioned: 2696 Post(s)
Tagged: 58 Thread(s)
Estimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 stars
Ranked Audio Record
3 Won / 0 Lost
Estimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.52/10 starsEstimated Skill in Text: 7.52/10 starsEstimated Skill in Text: 7.52/10 stars
Ranked Text Record
168 Won / 28 Lost
Default

Quote:
Originally Posted by Mindless View Post
You would pick your own battles. It's kind of based on the way that RPG stats are gained in that you can only level up by facing opponents with stats that are equal to or higher than your own. Basically we're applying the law of diminishing returns to battling. The difference is that someone low ranked doesn't risk as much facing someone much higher than them.



I kind of like this but I think that's too much information to give. IMO, the only information anyone should have on anyone is their current rank, w/l and ESL. If you give people too much insight into the system they figure out a way to game it and use it in ways it wasn't intended. Also, what would a weak battler see on the page of a strong battler? What's the cap on point loss?



Freeze the current rankings and put them somewhere and say "This is our old ranking system". Then you restart everyone at zero.

Also, forced match-ups is lame unless it's voluntary. What I mean by that is, for the general system it's bad. If it were it's own system it could be fun though. I don't see it ever happening though.
on goldmic ,a weak battler ex.. mc gay would see UA with a +60/-5, or +35/-5...... . UA would see the exact opposite.. so if he battled mc gay and lost, he would lose 60 points and drop in rating. . if UA saw RULES profile then it would be +15/-15..
__________________
http://www.iwantcovers.com/wp-content/uploads/2012/01/Gatling-Boombox.jpg
Reply With Quote
Unread 03-29-2017, 12:58 AM   #4
 
ILLoKWENT ILLoKWENT is on FIRE! 30+ wins in a row!ILLoKWENT is on FIRE! 30+ wins in a row!ILLoKWENT is on FIRE! 30+ wins in a row!
Estimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 starsEstimated Skill in Audio: 7.04/10 stars
Ranked Audio Record
3 Won / 0 Lost
Estimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.04/10 starsEstimated Skill in Text: 7.52/10 starsEstimated Skill in Text: 7.52/10 starsEstimated Skill in Text: 7.52/10 stars
Ranked Text Record
168 Won / 28 Lost
 
Join Date: Dec 2011
Voted: 82 audio / 1286 text
Posts: 2,315
Mentioned: 2696 Post(s)
Tagged: 58 Thread(s)


Default

Quote:
Originally Posted by Mindless View Post
You would pick your own battles. It's kind of based on the way that RPG stats are gained in that you can only level up by facing opponents with stats that are equal to or higher than your own. Basically we're applying the law of diminishing returns to battling. The difference is that someone low ranked doesn't risk as much facing someone much higher than them.



I kind of like this but I think that's too much information to give. IMO, the only information anyone should have on anyone is their current rank, w/l and ESL. If you give people too much insight into the system they figure out a way to game it and use it in ways it wasn't intended. Also, what would a weak battler see on the page of a strong battler? What's the cap on point loss?



Freeze the current rankings and put them somewhere and say "This is our old ranking system". Then you restart everyone at zero.

Also, forced match-ups is lame unless it's voluntary. What I mean by that is, for the general system it's bad. If it were it's own system it could be fun though. I don't see it ever happening though.
on goldmic ,a weak battler ex.. mc gay would see UA with a +60/-5, or +35/-5...... . UA would see the exact opposite.. so if he battled mc gay and lost, he would lose 60 points and drop in rating. . if UA saw RULES profile then it would be +15/-15..
__________________
http://www.iwantcovers.com/wp-content/uploads/2012/01/Gatling-Boombox.jpg
Offline  
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:18 PM.


Powered by vBulletin
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.

 

[ LetsBeef Instagram | LetsBeef Facebook | LetsBeef Twitter | LetsBeef Youtube | Privacy Policy | Terms & Conditions | FAQ | Contact Support ]
Some members of the public may use explicit lyrics in the performance of their art, so please be advised that such language, if any, may not be appropriate for minors.
Graphics by Pixel Dreams · Site © 2025 LetsBeef.com
 
no new posts