Forum
A place to discuss topics/games with other webDiplomacy players.
Page 256 of 1419
FirstPreviousNextLast
Candyman (222 D)
28 Apr 09 UTC
In the mood for a quick game?
join this one: http://phpdiplomacy.net/board.php?gameID=10432
0 replies
Open
Candyman (222 D)
28 Apr 09 UTC
Fast game #1
http://phpdiplomacy.net/board.php?gameID=10427

http://phpdiplomacy.net/board.php?gameID=10427
4 replies
Open
Slifer556 (100 D)
28 Apr 09 UTC
Can you retreat into unoccupied enemy territory ?
That is my question.

Thank you in advance
2 replies
Open
CaesarAugustus (100 D)
28 Apr 09 UTC
New game - RedDwarf
Hi there, we've got a new game going named RedDwarf and we need a few more players.
1 reply
Open
Ravnoss (151 D)
28 Apr 09 UTC
Last player needed
http://www.phpdiplomacy.net/board.php?gameID=10423
0 replies
Open
Ravnoss (151 D)
28 Apr 09 UTC
Nice beginners Game
Beginners game:

http://phpdiplomacy.net/board.php?gameID=10427
0 replies
Open
Candyman (222 D)
28 Apr 09 UTC
Fast game?
http://phpdiplomacy.net/board.php?gameID=10427

http://phpdiplomacy.net/board.php?gameID=10427
0 replies
Open
Ravnoss (151 D)
28 Apr 09 UTC
Fast game
http://phpdiplomacy.net/board.php?gameID=10425
0 replies
Open
stillwaterguitars (100 D)
28 Apr 09 UTC
Rules clarification
In this game: http://phpdiplomacy.net/mapstore/998/9988/12-largemap.png?nocache=334504

I'm holding Munich with two supports, Mun attacks Bur, Germany takes it...
7 replies
Open
Hereward77 (930 D)
28 Apr 09 UTC
Game starting...need two more players.
http://phpdiplomacy.net/board.php?gameID=10400

Needs two more!
2 replies
Open
diplomat1824 (0 DX)
27 Apr 09 UTC
Super quick question for a mod
How many accounts are there?
20 replies
Open
Malleus (2719 D)
28 Apr 09 UTC
Bug - Option to support hold a disbanded unit
Italy in http://phpdiplomacy.net/board.php?gameID=10034
4 replies
Open
trip (696 D(B))
26 Apr 09 UTC
36 pts for winning and 84 pt game?
i'm not the greatest mathematician, but that seems off to me...help?
Page 2 of 3
FirstPreviousNextLast
 
trip (696 D(B))
27 Apr 09 UTC
so in an 84 point game, nearly 20% of the pot will be raked by the rounding system. wish i knew that ahead of time.
trip (696 D(B))
27 Apr 09 UTC
REFUND!
trip (696 D(B))
27 Apr 09 UTC
seriously, could i at least get back my two buy-in points that were not calculated in the final scoring?
figlesquidge (2131 D)
27 Apr 09 UTC
Well, think of it the other way trip: this happens to everyone else as well.
jbalcorn (429 D)
27 Apr 09 UTC
From objects/game.php: Function pointsPerSupplyCenter

totalSCNo is the number of all SCs owned by players not in CD.

return round((float)$this->pot / (float)$totalSCNo)

So sure enough, it calculates a points-per-supply-center, although not necessarily pot/34
jbalcorn (429 D)
27 Apr 09 UTC
So in a 12 bet game with no CDs, only 68 points will be distributed, 16 will go *poof*

In a 8 point game, 68 points will also be distributed. Only 56 points were bet.
i think trip deserves his points.... not to mention that he's found a major bug that affects us all...

thanks trip!
trip (696 D(B))
27 Apr 09 UTC
i know figs, i'll get over it. just not really thrilled with the outcome right now.
trip (696 D(B))
27 Apr 09 UTC
anybody want to start of series of 8 pt games? we can 7 way draw and turn a profit.
Noirin (2827 D)
27 Apr 09 UTC
Lol. That wouldn't last :)
jbalcorn (429 D)
27 Apr 09 UTC
I wouldn't call it a bug. It's a design decision with perhaps unintended consequences. I'm guessing they never actually sat down and looked at the percentages for low-point games.

The extremes:
With a 7-point buy-in, the players lose 30% of the bet.
with an 8-point buy-in, the players gain 21% of the bet.

The ONLY bets where the payout on a non-CD game is the same as the buy-in are exact multiples of 34. Makes sense.
figlesquidge (2131 D)
27 Apr 09 UTC
LoA - its not a newly discovered bug, but unfortunately it hasn't been dealt with yet. Its not publicised to stop people trying to exploit it. I'll get in contact with Kestas and ask him to make that rounding into a floor, so the system can't be exploited before a real improvement is made
jbalcorn (429 D)
27 Apr 09 UTC
Draws are different. From function setDrawn:

$winnings = round($this->pot / $players);

It's no longer points per supply center. Now it's points per players. Since every pot at the beginning of the game is divisible by 7, all points are awarded in that case.

Now, if you can knock one player out then draw, you can gain a few points, but no more than 3:

On a 15 point game, there are 105 total points. When divided by 6, everyone gets 18 points for a total of 108 points.
jbalcorn (429 D)
27 Apr 09 UTC
Making it a floor (actually, an INT) will make it unexploitable, but also guarantee that as a group we can only LOSE points.

Now, that has to be balanced against the point inflation caused by the immediate bump to 100 points after losing a game. We get a net inflation, considering the rate of newbies joining.
jbalcorn

i think, by definition, that it's a bug.
figlesquidge (2131 D)
27 Apr 09 UTC
My suggestion of a floor was as a short-term measure as Kestas seems very busy at the moment, so changing like that (yes fair point to use typecasting though!) would be very quick to add.
It would be far better to round at the last minute.
If you have better suggestions please do make them on the dev forum though!
jbalcorn (429 D)
27 Apr 09 UTC
But still, avoid games with bets of 7,6 and 12 points. 30%, 19% and 19% point loss. The next worse is an 11 point bet with a net loss of 11.6%. Those are the only ones above 10%.

Until they change the round to a floor, 8, 17, 13 and 22 point bets are the best for low-point with high possible reward.

Talk about a house advantage, though. I think I'm going to take the code offshore and set up a play-for-money site! :-)
jbalcorn (429 D)
27 Apr 09 UTC
Yeah. Looking at the code, it's going to take some significant refactoring to fix this. It's not a bug, I think Kestas was very aware of what he was doing. I think it's a design decision. Since there's no actual money involved, and he gives away 100 points over and over again to everyone, it's not that it's unfair.

However, DO NOT play this game for money.
trip (696 D(B))
27 Apr 09 UTC
figs, thanks for your help. i appreciate it.
alamothe (3367 D(B))
27 Apr 09 UTC
has this been fixed yet? i think the system owes me more than 250 points. i have done the calculations myself
alamothe (3367 D(B))
27 Apr 09 UTC
i would say it's a major bug
it's a 'design decision' that is obviously very wrong and completely unintended. i.e. it's a bug.
figlesquidge (2131 D)
27 Apr 09 UTC
Why? It's applied to everyone and is roughly even. Moreover the common values of 100 etc are 'wins' and as such you probably owe the system.
figlesquidge (2131 D)
27 Apr 09 UTC
Alamothe - this "investigation" only really got going in the last few hours, so no it hasn't changed. Be fair - Kestas is not only very busy but I would also bet he's currently fast asleep. Remember world timezones!
it's called a bug because it makes the system behave in an unintended, and usually incorrect fashion.

that's what a bug is.

for coders i mean.
i'm sure kestas will fix it or do something about it... so not to worry...
alamothe (3367 D(B))
27 Apr 09 UTC
fig, why can't that function return float, and then do the rounding elsewhere?
Alderian (2425 D(S))
27 Apr 09 UTC
Actually a 7 point buy-in game with someone buying a 2 point CD to put the pot total at 51 gives the biggest extra percentage back with 68 points going out for a "profit" of 33.3%.

In any case, if you stick to multiples of 5 any loss would be pretty minor. Except for 50. But even that is just a loss of 10 points out of 350.
alamothe (3367 D(B))
27 Apr 09 UTC
BTW i'm not saying it must be fixed in the next few hours :-) we have been playing with this bug for decades, right?
figlesquidge (2131 D)
27 Apr 09 UTC
Since the introduction of the points system yes

It could return a float yes, and that would be the prefered solution.
Using int rather than round would be a good stop-gap method to prevent deliberate exploitation

Page 2 of 3
FirstPreviousNextLast
 

71 replies
napking (100 D)
24 Apr 09 UTC
Facebook diplomacy and phpDiplomacy
Are they the same? Can a game created in one be played in the other?
16 replies
Open
TheGhostmaker (1545 D)
25 Apr 09 UTC
League Site Updated
http://phpdiplomacy.tournaments.googlepages.com/home2

Games start next weekend (2nd May)
35 replies
Open
jbalcorn (429 D)
27 Apr 09 UTC
New to WTA, Practice for League
I've never played a WTA game, so a little tuneup for the league.
21 replies
Open
DingleberryJones (4469 D(B))
28 Apr 09 UTC
Germ,any & Italy needed for Gunboat - 200pts
http://phpdiplomacy.net/board.php?gameID=10391
4 replies
Open
mapleleaf (0 DX)
27 Apr 09 UTC
King of Gunboat
200 point ante WTA 24 hr phases. It WILL start. We have 5. 2 more spaces.
8 replies
Open
aoe3rules (949 D)
26 Apr 09 UTC
Grammarful Game
For people without grammarlessness only, please.

Email me if interested. Game will have at least 101 point buy-in and at least 25 hour phases, and WTA vs. PPSC has not yet been decided. Game will be passworded; I will send you the password in my reply. Also send your preferences (time, pot, WTA/PPSC).
16 replies
Open
airborne (154 D)
27 Apr 09 UTC
League Warm-Up
board.php?gameID=10410&join=on&gamepass=71144850f4fb4cc55fc0ee6935badddf
password: ghost
3 replies
Open
hitchhiker (341 D)
28 Apr 09 UTC
my games
what happened?? i logged on and got kicked from all of my games??? not only this game, but all of my online games, wonder if anyone knows if I got a virus?
1 reply
Open
ama66144 (130 D)
28 Apr 09 UTC
2 more spots for a quick pace game
Quick Game 3 has two more spots left and 17 hour turns for instant diplomacy action. Anyone interested?
1 reply
Open
ag7433 (927 D(S))
27 Apr 09 UTC
Question (IF) multi-accounter
See inside
21 replies
Open
Shrimpy (100 D)
19 Apr 09 UTC
Meta-Diplomacy
A new kind of varient.
123 replies
Open
ANother 5 point game
Making yet another 5 point game purely for fun join no matter your skill level.
0 replies
Open
urallLESBlANS (0 DX)
27 Apr 09 UTC
WorldLeaders
I know this is a competing site, but I know a lot of people play on both sites. Is anyone else having trouble getting on to the worldleadersthegame site? It just tells me the site doesn't exist. I suppose it has something to do with the server update. Just curious.
7 replies
Open
iMurk789 (100 D)
27 Apr 09 UTC
pointsless game?
just an idea i had
17 replies
Open
P.Ginsberg (125 D)
27 Apr 09 UTC
My father once owned a pony...
And then I killed so I could get more money...


Join
1 reply
Open
ThomasB (742 D)
25 Apr 09 UTC
WTA 101/24h - any takers?
You know you want it!
Just reply and as soon as we have 4 players we can put the new game out there.
40 replies
Open
aoe3rules (949 D)
27 Apr 09 UTC
Haha, WTF?
Look at the game "Newbie only" (in the joinable games tab).

"Civil Disorder Kestas"?
15 replies
Open
Page 256 of 1419
FirstPreviousNextLast
Back to top