Thread: Add-On Releases - -:[GAME]:- London Chase
View Single Post
  #16  
Old 06-05-2009, 04:16 PM
Calystos's Avatar
Calystos Calystos is offline
 
Join Date: Apr 2009
Location: Terra
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

K, not sure whats up here but I can't get it to work at all. It installs fine, just like every other addon I've installed. But when I went to try it out I get a wall of code and at the bottom a sql error. :-(

Code:
GPC['preview'] == 'show') { $mc = count ($module_menue['menueoption']); for ($x = 0; $x < $mc; $x++) { $preview = 'preview' . $x; if ($module_menue['menuejavascript'][$x]) { if ($_GET[$preview]) { $sc = count ($module_menue['menueoptiontext'][$x][6]); $key = $_GET[$preview] - 1; for ($y = 0; $y < $sc; $y++) { $module_menue['menueoptiontext'][$x][6][$y] = 0; if ($y == $key) { $module_menue['menueoptiontext'][$x][6][$y] = 1; $theselectedpreviewkey = $key; } } } } } } /* start to init the module */ /* getting the max gameid */ $result = $db->query_first ("SELECT max(" . $module_menue['gameidentry'] . ") AS maxid FROM `" . TABLE_PREFIX . $gamedb . "`"); $lastgameid = $result['maxid']; /* check, if the user is in a game */ $menue_showmain = 0; $result = $db->query_first ("SELECT * FROM " . TABLE_PREFIX . $userdb . " WHERE `userid`='" . $$playersid . "'"); if (!$result[$module_menue['gameidentry']]) { $menue_showmain = 1; $check = running_game (); $showthismenue = 1; if (count ($check) > 0) { if ($module_menue['maxgames'] > 1) { $gogameselect = create_gogames ($check, $module_menue['maxgames'], 1); } else { $showthismenue = 0; $gogameselect = create_gogames ($check, $module_menue['maxgames'], 0); $mytestmoduletemplate = template_menue_gogame (); } } if ($vbulletin->GPC['menueaction'] == 'gogame') { /* check if the game is avaible and if it's not complete */ $gameid = intval ($vbulletin->GPC['goingame']); $ingame = $db->query_first ("SELECT * FROM `" . TABLE_PREFIX . $module_menue['gamedb'] . "` WHERE `" . $module_menue['gameidentry'] . "`='" . $gameid . "'"); if (!$ingame['gameid']) { header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } else { $compl = 1; $maxpla = $ingame['maxplayer']; for ($x = 1; $x < $maxpla + 1; $x++) { $mplayer = $module_menue['playerenty'] . $x; if (!$ingame[$mplayer]) { $insplayer = $mplayer; $compl = 0; break; } } if ($compl) { header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['gamedb'] . "` SET `" . $insplayer . "`='" . $$module_menue['playersid'] . "' WHERE `gameid`='" . $gameid . "'"); $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['userdb'] . "` SET `" . $module_menue['gameidentry'] . "`='" . $lastgameid . "', `username`='" . addslashes ($$playersname) . "' WHERE `userid`='" . $$module_menue['playersid'] . "'"); header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } } if ($showthismenue) { $selm = 1; if ($vbulletin->GPC['menueaction'] == 'startgame') { if (!$lastgameid) { $lastgameid = 1; } else { $lastgameid++; } $check = running_game (); if (count ($check) >= $module_menue['maxgames']) { header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } if ($vbulletin->GPC['goingame']) { $ggameid = intval ($vbulletin->GPC['goingame']); $ingame = $db->query_first("SELECT * FROM `" . TABLE_PREFIX . $module_menue['gamedb'] . "` WHERE `" . $module_menue['gameidentry'] . "`='" . $ggameid . "'"); if (!$ingame['gameid']) { header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } else { $compl = 1; $maxpla = $ingame['maxplayer']; for ($x = 1; $x < $maxpla + 1; $x++) { $mplayer = $module_menue['playerenty'] . $x; if (!$ingame[$mplayer]) { $insplayer = $mplayer; $compl = 0; break; } } if ($compl) { header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['gamedb'] . "` SET `" . $insplayer . "`='" . $$module_menue['playersid'] . "' WHERE `gameid`='" . $ggameid . "'"); $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['userdb'] . "` SET `" . $module_menue['gameidentry'] . "`='" . $lastgameid . "', `username`='" . addslashes ($$playersname) . "' WHERE `userid`='" . $$module_menue['playersid'] . "'"); // $showthismenue = $selm = $menue_showmain = 0; header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } } if ($selm) { foreach ($module_menue['menueoption'] AS $key => $val) { if ($vbulletin->GPC[$val]) { $$val = $vbulletin->GPC[$val]; if ($module_menue['menueiski'][$key]) { $query = ''; insert_menueki ($$module_menue['menueoption'][$key], $$module_menue['maxplayerentry'], $lastgameid, $module_menue['kirandon']); } else { $query = "INSERT INTO `" . TABLE_PREFIX . $module_menue['gamedb'] . "` ("; $entries = $module_menue['menueentries'][$key]; foreach ($entries AS $x => $y) { $query .= "`" . $y . "`, "; } $query = substr ($query, 0, strlen ($query) - 2); $query .= ") VALUES ("; $entryvals = $module_menue['menueentryvals'][$key]; foreach ($entryvals AS $key => $val) { $query .= "'" . $$val . "', "; } $query = substr ($query, 0, strlen ($query) - 2) . ")"; $db->query ($query); $db->query ("UPDATE `" . TABLE_PREFIX . $module_menue['userdb'] . "` SET `" . $module_menue['gameidentry'] . "`='" . $lastgameid . "', `username`='" . addslashes ($$playersname) . "' WHERE `userid`='" . $$module_menue['playersid'] . "'"); $menue_showmain = 0; } } } } } if ($selm) { $selectmenue = generate_select (); // generate the selectmenue $mytestmoduletemplate = template_menue (); } } } if (!$menue_showmain) { /* if we're in a game - so check out if the game is complete */ $gameid = $result[$module_menue['gameidentry']]; $mygame = $db->query_first("SELECT * FROM `" . TABLE_PREFIX . $module_menue['gamedb'] . "` WHERE `" . $module_menue['gameidentry'] . "`='" . $gameid . "'"); $ingameplayer = 0; $menue_gamecomplete = 1; $maxplayer = $mygame['maxplayer']; for ($x = 1; $x < $maxplayer + 1;$x++) { $mplayer = $module_menue['playerenty'] . $x; if (!$mygame[$mplayer]) { $menue_gamecomplete = 0; } else { $ingameplayer++; } } $menue_showmain = 0; if ($vbulletin->GPC['menueaction'] == 'breakgame') { if (!$menue_gamecomplete) { /* game is incomplete, so we have to search if there is any human player */ $humans = 0; for ($x = 1; $x < $maxplayer + 1;$x++) { $mplayer = $module_menue['playerenty'] . $x; if ($mygame[$mplayer] AND $mygame[$mplayer] < $minkiid AND $mygame[$mplayer] != $$module_menue['playersid']) $humans++; if ($mygame[$mplayer] AND $mygame[$mplayer] == $$module_menue['playersid']) $mypos = $mplayer; } if ($humans) { // there are other humans in that game $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['userdb'] . "` SET `" . $module_menue['gameidentry'] . "`='0' WHERE `userid`='" . $mygame[$mypos] . "'"); $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['gamedb'] . "` SET `" . $mypos . "`='0' WHERE `gameid`='" . $gameid . "'"); } else { for ($x = 1; $x < $maxplayer + 1;$x++) { $mplayer = $module_menue['playerenty'] . $x; if ($mygame[$mplayer] >= $minkiid) { $db->query("DELETE FROM `" . TABLE_PREFIX . $module_menue['userdb'] . "` WHERE `userid`='" . $mygame[$mplayer] . "'"); } else { $db->query("UPDATE `" . TABLE_PREFIX . $module_menue['userdb'] . "` SET `" . $module_menue['gameidentry'] . "`='0' WHERE `userid`='" . $mygame[$mplayer] . "'"); } } $db->query("DELETE FROM `" . TABLE_PREFIX . $module_menue['gamedb'] . "` WHERE `" . $module_menue['gameidentry'] . "`='" . $gameid . "'"); } $db->query("OPTIMIZE TABLE `" . TABLE_PREFIX . $module_menue['gamedb'] . "`"); $db->query("OPTIMIZE TABLE `" . TABLE_PREFIX . $module_menue['userdb'] . "`"); header ("location: " . $modulemain . $session['sessionhash'], TRUE); exit (); } } if (!$menue_gamecomplete) { // $iswaiting = 1; $menue_showmain = 1; $missing = $maxplayer - $ingameplayer; $mytestmoduletemplate = template_menuewait ($missing); } } function generate_buttons () { global $module_menue, $vbphrase, $session; $menuebuttons = ''; foreach ($module_menue['menuebuttons'] AS $key => $val) { $buttonname = $val['button']; if ($val['islang']) { $buttonname = $vbphrase[$val['button']]; } if (!$val['islink']) { $menuebuttons .= "" . $buttonname . "   "; } else { $menuebuttons .= "   "; } } $menuebuttons = substr ($menuebuttons, 0, strlen ($menuebuttons) - 18); return $menuebuttons; } function create_gogames ($check, $maxgames, $startempty) { global $vbphrase, $db, $module_menue, $module_version, $mod_tableb; $si = 0; $selectoption = ''; if ($startempty) $selectoption .= "----------\r\n"; foreach ($check AS $key => $val) { if ($si < $maxgames) { $result = $db->query_first ("SELECT * FROM " . TABLE_PREFIX . $module_menue['gamedb'] . " WHERE " . $module_menue['gameidentry'] . "='" . $val . "'"); $text = $module_menue['menuetitles']['gogametext'][0]; if ($module_menue['menuetitles']['gogametext'][1]) { $text = $vbphrase[$module_menue['menuetitles']['gogametext'][0]]; } $gamers = 0; $mplayer = $module_menue['playerenty']; for ($x = 1; $x < $result['maxplayer'] + 1; $x++) { $aplayer = $mplayer . $x; if ($result[$aplayer]) $gamers++; } $missing = $result['maxplayer'] - $gamers; $creator = $val; $text = str_replace ("%1", $creator, $text); $text = str_replace ("%2", $missing, $text); $selectoption .= "" . $text . "\r\n"; } $si++; } $gogameselect = "\r\n"; $gogameselect .= "\r\n"; $gogameselect .= "\r\n"; $gogameselect .= $selectoption . "\r\n"; $gogameselect .= "\r\n"; $gogameselect .= "\r\n"; $gogameselect .= "\r\n"; return $gogameselect; } function running_game () { global $db, $module_menue; $check = array (); $result = $db->query ("SELECT * FROM `" . TABLE_PREFIX . $module_menue['gamedb'] . "` ORDER BY `" . $module_menue['gameidentry'] . "` ASC"); while ($row = $db->fetch_array ($result)) { $end = 0; $maxplayer = $row['maxplayer']; for ($x = 1; $x < $maxplayer + 1; $x++) { $mplayer = $module_menue['playerenty'] . $x; if (!$row[$mplayer]) $end = 1; } if ($end) $check[] = $row[$module_menue['gameidentry']]; } return $check; } function insert_menueki ($kiplay, $maxpla, $gameid, $random) { global $db, $module_menue, $minkiid; $mkiplayer = $module_menue['playerenty']; $result = $db->query ("SELECT * FROM " . TABLE_PREFIX . $module_menue['gamedb']); while($row = $db->fetch_array ($result)) { for ($x = 1; $x < $maxpla + 1; $x++) { $player = $mkiplayer . $x; if ($row[$player] >= $minkiid) { if ($row[$player] >= $minkiid) $maxki = $row[$player] + 10; } } } $result = $db->query_first ("SELECT * FROM `" . TABLE_PREFIX . $module_menue['gamedb'] . "` WHERE `" . $module_menue['gameidentry'] . "`='" . $gameid . "'"); for ($x = 1; $x < $maxpla + 1; $x++) { $player = $mkiplayer; $player .= $x; if ($result[$player] != 0) break; } $start = $x + 1; // which player is an AI if ($kiplay >= $maxpla) { $end = $maxpla - $start + 1; } else { $end = $kiplay; } include_once (DIR . '/lc_modules/lc_module_ainames.php'); $ai_names = array (); $ki = 1; $kip = $start; $mk = $kiplay; if ($mk == 0) $mk = 1; srand ((double) microtime() * 10000000); $names = array_rand ($ainames, $mk); for ($i = 0; $i < $end; $i++) { $player = $mkiplayer . $kip; if ($random == 0) { $kiname = $module_menue['kinames'][$i]; } else { if ($mk == 1) { $kiname = $ainames[$names]; } else { $kiname = $ainames[$names[$i]]; } } $db->query ("UPDATE `" . TABLE_PREFIX . $module_menue['gamedb'] . "` SET " . $player . "='" . $maxki . "' WHERE `" . $module_menue['gameidentry'] . "`='" . $gameid . "'"); $db->query ("INSERT INTO `" . TABLE_PREFIX . $module_menue['userdb'] . "` (`gameid`, `userid`, `username`) VALUES ('" . $gameid . "', '" . $maxki . "', '" . addslashes ($kiname) . "')"); $kip++; $maxki++; } } function generate_select () { global $module_menue, $vbphrase, $previewselected; $selectmenue = ''; foreach ($module_menue['menueoption'] AS $key => $val) { $optionvals = $module_menue['menueoptiontext'][$key]; if ($optionvals[0]) { $javascript = ''; $formname = $val; if ($module_menue['menuejavascript'][$key]) $javascript = $module_menue['menuejavascript'][$key]; $selecttext = $optionvals[1]; if ($optionvals[2]) { $selecttext = $vbphrase[$optionvals[1]]; } $selectoption = ''; $seltext = $optionvals[4]; if ($optionvals[5]) { $seltext = $vbphrase[$optionvals[4]]; } $minmax = explode ('-', $optionvals[3]); $min = $minmax[0]; $max = $minmax[1]; for ($x = $min; $x < $max + 1; $x++) { $select = ''; $d = $x; foreach ($optionvals[6] AS $e => $f) { if ($e == $d AND $f == 1) $select = " selected=\"selected\""; } $selectoption .= "
And the sql error:
Code:
Database error in vBulletin 3.8.2:

Invalid SQL:

			UPDATE londonchase_games SET 
			startdate=1244221892,
			initok=1,
			steps=1,
			whoplay= 
			WHERE gameid=0;

MySQL Error   : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE gameid=0' at line 6
Error Number  : 1064
Request Date  : Friday, June 5th 2009 @ 06:11:32 PM
Error Date    : Friday, June 5th 2009 @ 06:11:32 PM
Script        : lc.php
Referrer      : 
IP Address    : 
Username      : Calystos
Classname     : vB_Database
MySQL Version : 5.0.67
Any ideas?
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01276 seconds
  • Memory Usage 1,833KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete