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.


Messages - Morphius

Pages: 1 [2]
16
Help Me / Re: Formula Help
« on: January 22, 2008, 09:22:55 AM »
Just noticed the formula works on scores not points... if i change the word to points will it recognise it as all i get at the moment is Formula Error

17
Help Me / Re: Formula Help
« on: January 07, 2008, 03:39:09 AM »
bounty chips?

18
Help Me / Re: Formula Help
« on: December 26, 2007, 12:13:58 PM »
yeah the half point is to be added after they are averaged....

is TD able to sort out a decent way for Hits... in that we are planning on awarding £5 every time someone knocked out someone, but no points, can TD keep this registered?

19
Help Me / Re: Formula Help
« on: December 21, 2007, 11:35:38 AM »
just figured prob have to do this by overall score function?

20
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

21
Suggestions / Re: Email Tournament Summary
« on: October 15, 2007, 02:33:00 PM »
I think the idea of adding an SMTP feature to send email to everyone with some pre-defined txt and then the summary page exported to HTML there

22
Templates, Layouts and Sounds / Re: Formula Help for a league
« on: September 11, 2007, 01:55:05 PM »
Thanks your amazing corey keep it up :)

23
Templates, Layouts and Sounds / Re: Formula Help for a league
« on: September 11, 2007, 12:50:30 PM »
also, is it possible for a dynamic league, so using the points screen above, but rather than accumulate the points for a league it averages out, this way people who play a ton more games don't get a huge advantage over others (but they have to play a minimum number of games)

24
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 [2]