Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Morphius

Pages: [1]
1
Help Me / Formula Help
« on: December 21, 2007, 11:30:03 AM »
Hi, I'm trying to work out a new points structure for our league and I wondered if this was possible to do

Quote
Average points doubled, must play 7 games or more to qualify, 0.5 points added every time you play

current point system is

Code: [Select]
switch(r, 1, n,
  2, if(n >= 4, n-2*r, 0),
  3, if(n >= 6, n-2*r, 0),
  4, if(n >= 8, n-2*r, 0),
  5, if(n >= 10, n-2*r, 0),
  6, if(n >= 12, n-2*r, 0),
  7, if(n >= 14, n-2*r, 0),
  8, if(n >= 16, n-2*r, 0),
  9, if(n >= 18, n-2*r, 0),
  10, if(n >= 20, n-2*r, 0))

(so is based on number of players)

Would it be possible to do this, I have been thinking about it for a while and without writing it out by hand Im not sure how to acheive it

2
Templates, Layouts and Sounds / Formula Help for a league
« on: September 11, 2007, 12:42:48 PM »
Hi, im currently attempting to make a formula based on the number of people in the game.

if should be like this, first place gets n so the number of people, every place (up to place 10) after that gets the number of players - 2 times the rank

So far i've got to here
Quote
switch(r, 1, n, 2, n - 2r, 3, if(n >= 6, n-2r, 0), 4, if(n >= 8, n-2r, 0), 5, if(n >= 10, n-2r, 0), 6, if(n >= 12, n-2r, 0), 7, if(n >= 14, n-2r, 0), 8, if(n >= 16, n-2r, 0), 9, if(n >= 18, n-2r, 0), 10, if(n >= 20, n-2r, 0))

It also checks to see if there are the correct number of people in there so that minus points arent given.

However its currently saying Formula Error, wondering if you could help

Pages: [1]