View unanswered posts | View active topics It is currently Fri Dec 01, 2023 4:55 am



Reply to topic  [ 4 posts ] 
 3D Chess / looking for partner 
Author Message
Junior Member

Joined: Fri Aug 06, 2010 3:56 pm
Posts: 1
Post 3D Chess / looking for partner
Hello everyone,
I made (with other people) a 2D/3D javascript chess game (demo: http://htmlchess.sourceforge.net/demo/example.html). I am looking for any chess enthusiast who has excellent knowledge of PHP who would like to join the project in order to make the chessboard able to connect to the Free International Chess Server (F.I.C.S.) to play against other users as well as against their machines.
The thing itself would be pretty easy since the server uses a simple Telnet connection and simply replacing in the following script the words [USERNAME] and [PASSWORD] with a valid username and password it's possible to login:

<?php
$fp = fsockopen("fics.freechess.org", 5000, $errno, $errstr, 300);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "[USERNAME]\r\n";
$out .= "[PASSWORD]\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
?>

Unfortunately my knowledge of PHP is zero. :( I'd be really happy if someone offered himself to join the project. The javascript code provides all the tools (ajax, algebraic notation of moves, etc..) to realize this easily. There is only a condition: the code must be relased under GNU Public License, version 3.

Thank you,
* socrates *


Sat Aug 07, 2010 9:29 pm
Report this post
Profile
Junior Member

Joined: Tue Jul 10, 2012 6:42 am
Posts: 1
Post Re: 3D Chess / looking for partner
It's a great idea, socrates!
Have you found a partner? I am a great fan of chess and checkers, so I"d love to have a look at your work!


______________
download free winrar http://freearchiver.net/


Fri Jul 27, 2012 2:40 am
Report this post
Profile
Junior Member

Joined: Mon Sep 10, 2012 2:17 am
Posts: 1
Location: Dallas, Texas
Post Re: 3D Chess / looking for partner
Hey Socrates!! If in case, you are still looking for partner then plese PM me.


Mon Sep 10, 2012 2:40 am
Report this post
Profile YIM WWW
Display posts from previous:  Sort by  
Reply to topic   [ 4 posts ] 

Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
© Copyright 2003-2008 www.php-editors.com. The ultimate PHP Editor and PHP IDE site.