vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - [PBPG] Chess (https://vborg.vbsupport.ru/showthread.php?t=232923)

Carnage 01-31-2010 10:11 PM

If you've deleted the uninstall code from the chess plugin, it will not do anything to prevent its removal.

Alternativly: upgrade both the core and this product to the latest versions and then uninstall.

TimberFloorAu 01-31-2010 10:49 PM

I have tried that. Will give it one more go.

TimberFloorAu 01-31-2010 10:59 PM

Ok Deleted.

But you still have issues with file paths.

Images to chess pieces are not showing up, I posted this in one of your threads.
I imagine that is why the game doesnt work, also because paths are incorrect

Carnage 03-03-2010 05:33 PM

I'm planning a release as soon as I'm able to get it finished.

Will feature privacy mode; admin settings for the images directory and commands to change the games status (eg checkmate, stalemate etc) an important step towards being able to do cool things like tracking user stats and integrating into my tournaments and ladders mod.

Carnage 03-12-2010 12:26 PM

Update released.

ShawnV 03-17-2010 04:55 PM

Hey Carnage, Ive installed and uninstalled the latest versions of this and the core and I still have the pbpg_chess_blackbg & pbpg_chess_whitebg Stylevars.

Carnage 03-18-2010 08:12 PM

That seems to be a bug in vbulletin; I just checked the delete product code; there is no code to remove added style vars.

Edit: Did some research; known bug in 4.0.2 http://www.vbulletin.com/forum/proje...?issueid=36241

ShawnV 03-18-2010 11:00 PM

Ah thanks man, figures. lol

ricardoNJ 04-06-2010 06:59 AM

I looking chess for 3.8.4....

DragonBlade 04-13-2010 03:55 PM

Quote:

Originally Posted by Carnage- (Post 1957291)
From the admin side; I'm going to assume you followed the install instructions and have managed to create a configuration and assigned it to a forum.

From there, you need to goto the forum you assigned it to; create a new thread. There will be a list of avaliable games to play on the post new thread form. Select the chess configuration you just made. Make a post, at this point it dosn't really matter what you say in it.

The thread will then display as a chess board, with a comments box at the bottom and a moves list at the side. Clicking any piece on the chess board will select it (red border) and selecting an empty space (or space containing an enemy piece) will move it there. You will notice that some characters representing the move you just made were put into the quick reply box and the move was added to the moves list. You may now add a comment to the quick reply box (maybe something like 'check' or 'good move') and post a reply.Only when you've posted the reply has the move become commited.

Anyone who views the thread can now see your move. By default the first two people to post valid moves become white and black respectivly, but you can change this by adding the string (option,white,<username for white>) and (option,black,<username for black>) to your first post.

Yo.

We've got the correct image path on our forums, and it does display the pieces. However, it's not allowing us to set players and make moves and stuff.

If it helps at all, we DO get this javaScript error when loading a thread that has the board:
Error: complete is not defined
Source File: http://(myforum)/showthread.php?87079-Testing...
Line: 1027

Here's the relevant piece of code:
Code:

    <script type="text/javascript">
    <!--
        black_sugg = new vB_AJAX_NameSuggest('black_sugg', 'black', 'blackplayername');
        white_sugg = new vB_AJAX_NameSuggest('white_sugg', 'white', 'whiteplayername');

    YAHOO.util.Event.on(window, 'load',function(){
    YAHOO.util.Event.addListener('rotation_menu_body','click',complete);
    YAHOO.util.Event.addListener('quiet_menu_body','click',complete);
    });
    //-->
    </script>

Did we screw up somewhere?

Carnage 04-14-2010 05:08 PM

That function is defined in an external js file; check to see if thats uploaded.

DragonBlade 04-15-2010 05:13 PM

The /pbpg_plugins/chess/script/basic.js and /pbpg_plugins/chess/script/options.js are both uploaded, if that's what you mean.

Carnage 04-15-2010 06:06 PM

Can you link me to the forum so I can take a look? Pm me if you dont' want to post the link publically.

Quote:

I looking chess for 3.8.4....
Check my profile, I released a chess mod for 3.6+ that'll work on 3.8 with a change to add in the security token to the template.

Carnage 05-05-2010 10:17 AM

I've updated the first post with a link to a live demo on my site; this mod and the other PBPG mods are at the top of my list for updates and new features once i've got my masters project done. I'm hoping to be able to post an update in about two weeks.

Giray 05-09-2010 03:52 AM

Uploaded all files in both products including .js files. Installed both products. Created forum. New thread shows up fine with all the pieces.
Just can't select and move pieces...

Carnage 05-09-2010 10:30 AM

Thats a known issue, planned to be fixed in the beta 4 release. The fix for now is to edit the PBPG chess template and change the javascript paths from /pbpg_plugins/... to /forums/pbpg_plugins/... or whichever directory your forum is installed in.

I've added this information to the first post for now; the next release is planned to be out soon.

Carnage 05-17-2010 05:46 PM

Beta 4 Released.

Alot of thigns done in this release; including two bug fixes and numerous enhancements to the user interface.

AtomicAcidbath 07-24-2010 11:01 PM

** Edit:
found and corrected problem in chess/scripts/basic.js

Carnage 07-26-2010 12:15 AM

What problem did you correct?

If its a bug, I can put it into the official release.

AtomicAcidbath 07-26-2010 02:43 AM

Quote:

Originally Posted by Carnage- (Post 2074499)
What problem did you correct?

If its a bug, I can put it into the official release.

File /chess/script/basic.js

Find (on line 132):
Code:

function post_move(e)
{
    comment = YAHOO.util.Dom.get("comment").value;
    YAHOO.util.Dom.get("comment").value == '';
  ...
    YAHOO.util.Dom.get('vB_Editor_QR_textarea').value += comment;

Change js var 'comment' to 'temp' (or something else).

Using 'comment' causes js error 'object does not support this property or method'.
IE8, vB4.0.5, tested both Remote and local YUI
Also: Does not play well with vBSuperCharged (js compression)...might just be me.

Disabled this mod until version with rule enforcement is released.

Carnage 07-26-2010 11:50 AM

that is an odd error.

I assume its an issue between 4.0.3 and 4.0.5

DAMINK 07-31-2010 11:10 PM

I gave this a go. Seems to work sort of.
I have this little issue currently?

http://www.ftw.net.au/fileuploads2/1...88_Capture.gif

Any advice on this?

Carnage 08-01-2010 10:37 AM

which version of vb are you running?

DAMINK 08-01-2010 09:29 PM

Quote:

Originally Posted by Carnage- (Post 2077565)
which version of vb are you running?

Latest 4.0.5

fevredsuk 10-01-2010 09:35 PM

very very very buggy,

potentially very good, but huge let down

worse mod ever installed for being unfinished

p

Carnage 10-05-2010 12:26 PM

what bugs did you encounter?

Its been running fine on my forums for months.

Sunka 10-05-2010 01:52 PM

Any chance to upload non beta version soon?

Carnage 10-05-2010 05:04 PM

I have a google like addiction to prolonged betas. My reasoning behind this is down to the vast number of possible configurations of forums.

At the time of release, none of my mods will have known bugs. An alpha release is usually something which has only been installed and tested on my development board. A beta or RC release is one which has been installed on one or more of my production boards and has been running stably for some time. I only consider something good enough for a full 'gold' release once its got a good number of installs recorded on here with no complaints of major (anything other than a cosmetic issue) unfixed bugs.

Pro-eSports.com 10-06-2010 01:11 PM

Any chance for a "Checkers" mod?

Carnage 10-09-2010 10:09 AM

There is one in the works actually; there are still a few bugs in it and I don't have any graphics done for it yet but I'm planning to release ASAP.

fevredsuk 10-20-2010 11:44 AM

[QUOTE=Carnage-;2107035]what bugs did you encounter?

Its been running fine on my forums for months.[/QUOTE

chess pieces disappearing during games

games freezing and no opponents being able to make a move

in one game all the pieced turned to rooks and there were one on every square

many more niggily bugs that resorted in members giving up playing.

also if 2 members agrred to have a game and one set the game up while the other wasn't there, even if they put the members names in anyone could join the game and start playing - is that supposed to happen?

Carnage 10-20-2010 04:18 PM

Do you still have a copy of the threads? If I could see the sequence of commands that generated the bugs I'd have a better shot at fixing them.

Carnage 11-05-2010 06:13 PM

Beta 5 released; this version requires the latest version of the core product released about half an hour ago.

This adds support for automatic tournaments (with latest version of T+L mod due for release soon) and support for statistics from games.

paolonappo 11-06-2010 02:08 PM

1 Attachment(s)
Attachment 123438
Vb4.08
white move black (e7,e5). Game stopped.

Carnage 11-06-2010 03:31 PM

Can you link me to the thread?

paolonappo 11-06-2010 03:45 PM

Quote:

Originally Posted by Carnage- (Post 2118711)
Can you link me to the thread?

Link
user: new
pwd: partizan

thank

Carnage 11-07-2010 06:23 AM

Thanks; I've figured out the issue.

It seems that for chess and presumably checkers, the user names entered are case-sensitive.

I'm moving up the next release priority and will include a fix for this issue; for now make use of the auto-complete on the set usernames box to get the correct capitalisation for the username

paolonappo 11-07-2010 01:43 PM

Quote:

Originally Posted by Carnage- (Post 2118932)
Thanks; I've figured out the issue.

It seems that for chess and presumably checkers, the user names entered are case-sensitive.

I'm moving up the next release priority and will include a fix for this issue; for now make use of the auto-complete on the set usernames box to get the correct capitalisation for the username

Ok. Thanks :)

loovie 01-02-2011 11:41 AM

Sorry for my bad english.

The game chess i have installed, so far everything in order!
I see everything but it is not possible to play!
Why?
Must i still which consider?

Carnage 01-14-2011 05:34 AM

have you checked that you setup the script paths correctly in the plugin config? (if you don't have your forums installed in the root of your domain, you will need to change this)


All times are GMT. The time now is 01:34 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01222 seconds
  • Memory Usage 1,820KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete