Forum
A place to discuss topics/games with other webDiplomacy players.
Page 611 of 1419
FirstPreviousNextLast
rlumley (0 DX)
11 Jun 10 UTC
Convoy Paradox
I know we've discussed this before, but this didn't adjudicate as I thought it should.

http://www.webdiplomacy.net/map.php?gameID=29250&turn=7&mapType=large
24 replies
Open
Bob Genghiskhan (1233 D)
11 Jun 10 UTC
Live game, 1540 GMT, 1040 CDT
gameID=31172

Something to do while listening to the World Cup...
14 replies
Open
KaiserWilly (664 D)
11 Jun 10 UTC
Sumer Is Icumin In
sing cuccu!
gameID=31192

Bonus points to whomever can identify that title correctly!
0 replies
Open
Bitemenow10 (100 D)
11 Jun 10 UTC
new game
http://webdiplomacy.net/board.php?gameID=31168
two spots left
1 reply
Open
JesusPetry (258 D)
08 Jun 10 UTC
A good idea
New game:
gameID=30966
51 D
Anon WTA
3 replies
Open
Double A (167 D)
10 Jun 10 UTC
Retreating to ENEMY sc's
This rule is extremely stupid. An enemy army retreating in disarray has no chance in hell of taking a fortified city.

Not to mention it makes me want to stab someone.
36 replies
Open
LeitrimLad (100 D)
11 Jun 10 UTC
Rapid Fire-2
Fancy a live game, why not join Rapid Fire-2
1 reply
Open
Bitemenow10 (100 D)
11 Jun 10 UTC
hmmm i think someone is cheating in this game
they are just too coordinated for a no talking game
http://webdiplomacy.net/board.php?gameID=31129
4 replies
Open
PuppyKicker (777 D)
10 Jun 10 UTC
Strange Player Behavior
gameID=29939

I'm not saying people are cheating, but could anyone comment on how strange Rome and Egypt are acting in this game? Miss a turn, come back, miss a turn, come back, all the while leaving themselves defenseless against Persia.
20 replies
Open
Attavior (1677 D)
10 Jun 10 UTC
Bounce a Territory
If you bounce a territory with two of your own units, will this make your opponent unable to retreat there during that phase?
3 replies
Open
kestasjk (95 DMod(P))
07 Jun 10 UTC
webDip development
What should be the main things to work on, hoping that in 2-3 weeks I'll have some free time to do so?
Page 2 of 5
FirstPreviousNextLast
 
Kamen (1935 D(S))
07 Jun 10 UTC
8 of course. Focus on small things which would improve gaming an community experience. For instance:
- auto disbands (!!!) and auto retreats (when only one option exists)
- "sitting forum" where you could search for sitters or help people (I'm not 100% sure in this one)
- possibility to "sell the game" instead to leave it or some other way of preventing country going CD or helping get another player before it is too late
- possibility to choose "non playing days" (weekend for instance)
- private lists of "friends" and "foes"
- permanent "live game" window
...
askninjasks (1122 D)
07 Jun 10 UTC
5:
I check this site from my phone all the time, and it sometimes gets suspicious when my "last seen" time has been updated but I can't respond to anyone.
8:
An option to "give up" your slot without making everyone else wait 2 turns. This way, a replacement can be found before the country goes into CD. (also auto-disbands would be cool)
askninjasks (1122 D)
07 Jun 10 UTC
ffs meant 4
Draugnar (0 DX)
07 Jun 10 UTC
@Kamen - no such thing as an auto-retreat as there is always the option to disband instead of retreating. There is only auto-disbands.
rlumley (0 DX)
07 Jun 10 UTC
@ Kestas:

I know a little PHP, so I'm not just completely guessing.

Is "stickying" a post not just a simple if statement and a boolean variable? Sure, you'd have to code something that would let the moderators actually sticky things (I know nothing about how the mod interface works) but checking if a thread is sticky would seem to be pretty easy.


The code now probably looks something along the lines of:
(I may be mixing some Visual Basic in with my PHP. I've been coding a lot in VB lately. Sorry.)
(And this is going to look disgusting because the forum automatically removes spaces, hint hint)
If(NewPostinThreadID)
{
For(i=0, i < ThreadID'sForumIndex, i++)
ForumAdd(i)
/* ForumAdd is a function that accepts an integer n and increments the ForumIndex for the nth entry in the forum.*/
next i
}
ThreadID'sForumIndex = 0


It's a simple matter of changing that to:
If(NewPostinThreadID) {
NumSticky = 0;
For(i=0, i < ThreadID'sForumIndex, i++)
if(Sticky(i) = False)
{ForumAdd(i)}
/* ForumAdd is still a function that accepts an integer n and increments the ForumIndex for the nth entry in the forum.*/
else
{NumSticky ++}
next i
ThreadID'sForumIndex = NumSticky

Now actually setting Sticky(i) = True would be different. Like I said, I know nothing about that.
rlumley (0 DX)
07 Jun 10 UTC
"8:
An option to "give up" your slot without making everyone else wait 2 turns. This way, a replacement can be found before the country goes into CD. (also auto-disbands would be cool)"

NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO.

This encourages quitting.
rlumley (0 DX)
07 Jun 10 UTC
Perhaps an option to pay 25 nonrefundable points to do that, MAYBE. But don't add that.
figlesquidge (2131 D)
07 Jun 10 UTC
I'm in favour of the ability to buy-out of a game, but only if you have arranged a replacement.
@ask - Feels like a nice idea, but people would use it to ditch
figlesquidge (2131 D)
07 Jun 10 UTC
@rlum - That's not normally how a forum would work no. Ordering and sorting tends to be done by the database. A more standard way of stickying posts would be to add a boolean flag to the thread entry, and modify the ORDER BY sql criteria by pre-pending a sort on sticky.
And yes, that's much more like visual basic than PHP.
Draugnar (0 DX)
07 Jun 10 UTC
Yeah, changing the SQL to...

SELECT field list FROM Postings
WHERE [ParentThread] = 0
ORDER BY [StickyFlag] desc, [LastPostAppendedDate] desc

...should do the trick. Then just add the ability for a mod to click on the sticky flag to the forum view.
figlesquidge (2131 D)
07 Jun 10 UTC
Also for my views - sorry I didn't remember this before:
Most important: Correct game ending place in the cycle - Currently the rules are not correct (as noted on dev-forum)
Madcat991 (0 DX)
07 Jun 10 UTC
Option number 1 By far the more important.

Then the option with Facebook will be great too

and the cheater stuff also.
rlumley (0 DX)
07 Jun 10 UTC
@ Fig: On the websites I manage, our "databases" consists of about 12 different .csv files. I don't know much about real database management. If I were doing it, I'd have an excel sheet with the order of the threads, threadID, Title, Summary, and responses ad infinitum, and just have the website read that, easy peasy.

But ultimately, the database has to do exactly what I coded, doesn't it? SOMETHING does that, and it's just a matter of telling the something to do it a slightly different way...

And be glad I didn't through in MATLAB. What a God-forsaken environment in which to code that is.
figlesquidge (2131 D)
07 Jun 10 UTC
Well, I guess in some ways.
However, you never have to deal with it with a decent database, because the database will sort values internally, so externally you have nothing new to deal with.

Wow, I've got one website that uses a .csv database for it's Diary, but that's only because I haven't got round to converting it yet. Seems just so inefficient to me, although I can see the simplicity of it.
Draugnar (0 DX)
07 Jun 10 UTC
*Draugnar runs around in circles screaming 'CSV! Nooooooooooo!'*

Seriously, with all the free databases out there, including SQL Server Express that Excel and VBA for Office can talk to, why would you still use a CSV flat file for a database table?
sqrg (304 D)
07 Jun 10 UTC
Hey kestasjk,
Wouldnt it be a great idea to put webip into git? (github.com is nice)
Much easier for collaborative working, when others have time to help. I don't know php myself, though. Still a very nice tool for projects like this.
rlumley (0 DX)
07 Jun 10 UTC
*Watches what Draugnar just said fly over his head*

Wooooosh!

I have no idea what SQL even is, although a remotely intelligent monkey could deduce from context that it's a database client of some kind.

Seriously though, if you have suggestions, make some. Just today, I started designing a new website for my research lab, and in a couple days, unless you all give me a decent alternative, it might have dreaded CSV files. :-P
rlumley (0 DX)
07 Jun 10 UTC
Sorry for derailing your thread Kestas. :-P
rlumley (0 DX)
07 Jun 10 UTC
Oh, and Kestas, I'm not exactly sure what the cutoff point is, but if you look in Threads/Replies posted in someone's profile, it only displays results a certain number/time/whatever old. This is really irksome, when I'm looking for a thread several days old in which I just posted.. If this could be fixed, or the forum made searchable, that would really help a lot.
rlumley (0 DX)
07 Jun 10 UTC
Another thought: (Now I'm spamming your thread, but at least I'm getting it back on track...)

Having some kind of asterisk next to when a player takes over a CD would be really nice.
martinck1 (4464 D(S))
07 Jun 10 UTC
I like the:

1. non-anon pre game, then anon idea
2. auto-disbands
3. a new one - a pause proposal that is voted on is to a specific time on a specific date. ie Pause game to Saturday 20 June at 8pm GMT. then everyone votes on it
fortknox (2059 D)
07 Jun 10 UTC
What about voting to determine starting countries? I'm surprised that isn't on your list. Seems a pretty easy request. Everyone pics 1-8 on starting countries in the order in which they want, computer randomizes the users, top player gets his first country, next player gets his top choice (and if it is gone, the next choice), etc...

I don't want to be turkey anymore! ;)
kestasjk (95 DMod(P))
07 Jun 10 UTC
Its not really constructive to discuss how something might be implemented here, either it's already clear or there are other complications that haven't been factored in, but I appreciate the thought at least of aiming for easier features even if it's rarely true to the reality of it

I'm still interested to see what people think, but don't worry about how hard it'd be to do etc
TheGhostmaker (1545 D)
07 Jun 10 UTC
In order of priority:

8. An improvement to the reporting system
8. Official sitting support
8. Deposits for games as an option
8. WTA/ PPSC hybrid as standard scoring system.
8. No-NMR as an option (if a user NMRs, give an extra phaselength and after that, pause putting them into CD)
TheGhostmaker (1545 D)
07 Jun 10 UTC
Possibly: give the option to mods to edit the FAQ etc.

One thing I forgot, as a pretty high priority (1st/2nd): Require an agreement to the rules on the sign up (possibly with checkboxes by each of the rules)
TheGhostmaker (1545 D)
07 Jun 10 UTC
No. 7 shouldn't be necessary until October btw, because I'm going to be able to put in a fair amount over the summer. Also, I'm not quite sure how it would be done.

Making the Mod tools quicker/nicer to use will have greater benefits.
figlesquidge (2131 D)
07 Jun 10 UTC
Deposits?
8. Game notifications continuing to show up in the top-bar for 2 phase lengths after completion. Allows you to discuss a game that you've just finished with the other players, but without having to start a forum thread.
8. PM notification in the top bar
Hellenic Riot (1626 D(G))
07 Jun 10 UTC
8. An improvement to the reporting system
8. Official sitting support

Agree totally with those, the reporting system in particular could be a lot easier, it's a lot simpler than emailing anyway and (i think) would require less work from the mods.

5, the stickying and possibly making it to the third page where they get locked, rather than the second (if it's possible)

7, if it could actually be done :P
TheGhostmaker (1545 D)
07 Jun 10 UTC
figle's suggestions in that post are v. good too.

Deposits: Bet is 10 D, but you put down a deposit of 10 D (say, possible to choose) which you get if you play on until the end.
Chrispminis (916 D)
07 Jun 10 UTC
The agreement to the rules thing would never work. The people who don't pay attention to the rules normally will be the ones that simply check the boxes mechanically. It's just a pain and could reduce registrations. I get the intention, and perhaps it would be better solved by having a short quiz on site rules to let you play WTA games or something.

Anyways, I think we should get more variants in, especially the simple ones that have to do with small modifications of the basic maps.

Otherwise, my number one improvement would actually be improved smartphone support. I don't use a smartphone, but from the way things are going, I feel like this is the next big thing in terms of exposure. Smartphones are becoming pretty standard and support would bring in a larger player base in the future and give us an edge on other sites. I feel Diplomacy is an especially good game for someone to play on a smartphone, and I think webdip's design can be incorporated well on to a smaller screen.

Page 2 of 5
FirstPreviousNextLast
 

132 replies
zephyris (1316 D)
09 Jun 10 UTC
Left vs Resigned
Not sure if this was answered somewhere (I tried looking in the FAQ), but is there a difference between the status of Left and Resigned?
9 replies
Open
taylornottyler (100 D)
10 Jun 10 UTC
heyooo Gunboat yes no?
Hola mi chicas
I want to start 2 gunboat games. One PPSC for 60 daggers, and one WTA for 59 daggers. All anon 36 hour phases, anyone interested?
1 reply
Open
yayager (384 D)
10 Jun 10 UTC
Forum Search
Stupid noob question: Is there a way to search the forum by keyword? Before contacting a mod, I'd like to see if I can find something that explains what I think is a bug.
7 replies
Open
ava2790 (232 D(S))
10 Jun 10 UTC
Live Game - NOT advertised on the 'special' Live Games Thread
http://webdiplomacy.net/board.php?gameID=31077

This thread was created to advertise a live game. No rule prohibits us from doing this. If you have a problem with this, please take a hike, or try to convince the developers to create a separate forum for organizing live games.
139 replies
Open
KaptinKool (408 D)
10 Jun 10 UTC
Some sort of system error...
userID=24829
This dude has lost 5 games out of 4 played.
27 replies
Open
KaiserWilly (664 D)
10 Jun 10 UTC
AHH A LIVE GAME!!!
What he said ^ gameID=31110
0 replies
Open
bob_rymple (118 D)
10 Jun 10 UTC
High Noon
Anyone want a quick game after lunch?
0 replies
Open
cujo8400 (300 D)
10 Jun 10 UTC
Live Game // DEFCON One
gameID=31089 // 20 D // WTA
3 replies
Open
Jamiet99uk (865 D)
09 Jun 10 UTC
Threads / replies in my profile
The listings of my threads / replies in my profile has not updated since the first half of May. I have tried clearing my cache and restarting, but this does not solve the problem. (I am using Internet Explorer 7). What's the problem?
13 replies
Open
Gobbledydook (1389 D(B))
10 Jun 10 UTC
New game: One Hundred and One
http://webdiplomacy.net/board.php?gameID=31096

Please join! 101 point PPSC, 2 day phase, looking for advanced players!
0 replies
Open
`ZaZaMaRaNDaBo` (1922 D)
10 Jun 10 UTC
I need a sitter!
It'll only be for one game--a world gunboat game. PM if you'll sit for me and you're not in this gameID=29875
0 replies
Open
Tolstoy (1962 D)
01 Jun 10 UTC
Brave Israeli Navy valiantly defends itself from dangerous terrorists armed with sticks
Does anyone buy Israel's spin on this one?
306 replies
Open
Remagen (162 D)
08 Jun 10 UTC
World Diplomacy Tips?
I find world diplo somewhat more difficult for me than classic. All my neighbors seem to attack me, even when we've made peace... (I have yet to see some1 stick to their peace deal with me in world diplo)
What am I not getting about world diplo?
26 replies
Open
thblckrbbit (0 DX)
10 Jun 10 UTC
I WANNA BE BANNED!
Yo...it'd be awesome to be banned. Pl0x. I mean it....so fucking badass
4 replies
Open
Tom Bombadil (4023 D(G))
10 Jun 10 UTC
Urgent sitter needed
I am leaving tomorrow morning and thought the game would be over by now. All that is needed is to make sure the game is drawn. Please post if interested,
8 replies
Open
Kusiag (1443 D)
10 Jun 10 UTC
1 player needed!!! World Diplo 1 day/turns
1 reply
Open
DingleberryJones (4469 D(B))
09 Jun 10 UTC
Who would have thought adultery was illegal in NY?
http://www.cbsnews.com/8301-504083_162-20007211-504083.html
2 replies
Open
TAWZ (0 DX)
10 Jun 10 UTC
KILLER COPY
HERE THE NEW ONE
gameID=31070
5 replies
Open
ava2790 (232 D(S))
09 Jun 10 UTC
rlumley, come join my live game!
gameID=31003
which I have taken pains to create a separate thread for.

34 replies
Open
Page 611 of 1419
FirstPreviousNextLast
Back to top