Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post New Sudoku Mod (1.0.6 => 2.5.0) 
 
I have found a new version of the Sudoku mod, version 2.5.0 and I like play sudoku, so i have adapted for Icy Phoenix 1.1.0.15, there is one bug that is when you need help in the sudoku the Ctracker scream, but you can set Ctracker disabled in the common.php.

In this version is it possible to play three kinds of Sudoku's.

Sudoku
sudoku1
Sudoku Samurai
sudoku2
Sudoku Ninja
 sudoku3

and there are more and more features included in this version, for a live example.
Check: www.phpBBXS.nl / user: test   password: sudoku
I have adapted the files and so you can use it.

Download the package and upload the whole package to your webhost with Icy Phoenix, al modified files are included into this package. After upload the package, you should do the following things.

Code: [Download] [Hide]
  1. #  
  2. #-----[ OPEN ]------------------------------------------  
  3. #  
  4.  
  5. includes/page_tail.php  
  6.  
  7. #  
  8. #-----[ FIND ]------------------------------------------  
  9. #  
  10.  
  11. die('Hacking attempt');  
  12. }  
  13.  
  14. #  
  15. #-----[ AFTER, ADD ]------------------------------------------  
  16. #  
  17.  
  18. //Weekly sudoku  
  19. if ( ( time() - $board_config['sudoku_cron_last_time'] ) > $board_config['sudoku_cron_time'])  
  20. {  
  21.    include_once($phpbb_root_path . 'includes/sudoku_weekly_cron.'.$phpEx);  
  22. }  
  23. #  
  24. #-----[ OPEN ]------------------------------------------  
  25. #  
  26.  
  27. language/lang_english/lang_main.php  
  28.  
  29. #  
  30. #-----[ FIND ]------------------------------------------  
  31. #  
  32.  
  33. ?>  
  34.  
  35. #  
  36. #-----[ BEFORE, ADD ]------------------------------------------  
  37. #  
  38.  
  39. // sudoku Mod  
  40. $lang['Sudoku'] = 'Sudoku';  
  41. $lang['sudoku_disable'] = 'Sorry, Board Sudoku is disabled';  
  42. // End sudoku Mod  
  43.  
  44. #  
  45. #-----[ OPEN ]------------------------------------------  
  46. #  
  47.  
  48. includes/constants.php  
  49.  
  50. #  
  51. #-----[ FIND ]------------------------------------------  
  52. #  
  53.  
  54. define('SUDOKU_SESSIONS', $table_prefix . 'sudoku_sessions');  
  55. define('SUDOKU_SOLUTIONS', $table_prefix . 'sudoku_solutions');  
  56. define('SUDOKU_STARTS', $table_prefix . 'sudoku_starts');  
  57. define('SUDOKU_STATS', $table_prefix . 'sudoku_stats');  
  58. define('SUDOKU_USERS', $table_prefix . 'sudoku_users');  
  59.  
  60. #  
  61. #-----[ REPLACE WITH ]------------------------------  
  62. #  
  63.  
  64. // sudoku mod  
  65. define('SUDOKU_TABLE',  $table_prefix.'sudoku');  
  66. define('SAMURAI_TABLE',  $table_prefix .'sudoku_samurai');  
  67. define('NINJA_TABLE',  $table_prefix .'sudoku_ninja');  
  68. define('SUDOKU_VAULT',  $table_prefix.'sudoku_vault');  
  69. define('SUDOKU_ADMIN',  $table_prefix.'sudoku_admin');  
  70. define('SUDOKU_USERS',  $table_prefix.'sudoku_users');  
  71. define('SUDOKU_STATS',  $table_prefix.'sudoku_stats');  
  72. define('SUDOKU_SESSIONS',  $table_prefix.'sudoku_sessions');  
  73. define('SUDOKU_GENERAL',  $table_prefix.'sudoku_general');  
  74. // end sudoku mod  
  75.  
  76. #  
  77. #------------[OPEN]-----------------------------  
  78. #  
  79.  
  80. languages/lang_english/lang_admin.php  
  81. #  
  82. #------------[FIND]-----------------------------  
  83. #  
  84.  
  85. ?>  
  86.  
  87. #  
  88. #------------[ADD BEFORE]-----------------------------  
  89. #  
  90.  
  91. //Sudoku MOD  
  92. $lang['Sudoku_config_updated'] = 'General Sudoku settings updated successfully';  
  93. $lang['Sudoku_config_reset'] = 'General Sudoku settings reset successfully';  
  94. $lang['Sudoku_admin_configuration'] = 'Sudoku Administration';  
  95. $lang['Sudoku_admin_configuration_explain'] = 'Here you can edit general settings of Sudoku Reward System';  
  96. $lang['Sudoku_admin_general_settings'] = 'General Settings';  
  97. $lang['Sudoku_admin_reward_time'] = 'Time period to get results(in sec.)';  
  98. $lang['Sudoku_admin_highscores1'] = '1st place Reward';  
  99. $lang['Sudoku_admin_highscores2'] = '2nd place Reward';  
  100. $lang['Sudoku_admin_highscores3'] = '3rd place Reward';  
  101. $lang['Sudoku_admin_special'] = 'Highest Average Reward';  
  102. $lang['Sudoku_admin_played'] = 'Most Played Puzzles Reward';  
  103. $lang['Sudoku_admin_manage'] = 'Sudoku Game & Players Management';  
  104. $lang['Sudoku_admin_manage_explain'] = 'Here you can edit, reset and add players and puzzles data of the game';  
  105. $lang['Sudoku_admin_manage_settings'] = 'Game Settings';  
  106. $lang['Sudoku_admin_game_on'] = 'Sudoku is active';  
  107. $lang['Sudoku_admin_game_on_explain'] = 'Enable/disable the game on the Board';  
  108. $lang['Sudoku_admin_reset_game'] = 'Reset <b>all</b> Gamedata';  
  109. $lang['Sudoku_admin_reset_game_explain'] = 'Purge the whole gamedata off(attention! this action isn't restorable one!';  
  110. $lang['Sudoku_admin_reset_user'] = 'Reset user gamedata';  
  111. $lang['Sudoku_admin_reset_user_explain'] = 'Delete all gamedata of a user from forum tables';  
  112. $lang['Sudoku_user_reset_successfully'] = 'Sudoku data on user %s reset successfully';  
  113. $lang['Sudoku_admin_reset_user_title'] = 'Player resetting';  
  114. $lang['Sudoku_admin_reset_user_confirm'] = 'Are you sure you want to reset gamedata of this user?';  
  115. $lang['Sudoku_admin_puzzle_noexist'] = 'This puzzle isn't exist';  
  116. $lang['Sudoku_admin_rename_grid_title'] = 'Renaming Grid Title';  
  117. $lang['Sudoku_admin_rename_grid_confirm'] = 'This grid already has a title, are you sure you want to rename it?';  
  118. $lang['Sudoku_grid_rename_success'] = 'Puzzle title renamed successsfully';  
  119. $lang['Sudoku_admin_grid_title'] = 'Name or rename puzzle title';  
  120. $lang['Sudoku_admin_grid_title_explain'] = 'You can name or rename a title of any existing grid';  
  121. $lang['Sudoku_admin_game_pack'] = 'Game Pack';  
  122. $lang['Sudoku_admin_game_num'] = 'Game Num';  
  123. $lang['Sudoku_admin_game_level'] = 'Game Level';  
  124. $lang['Sudoku_admin_grid_name'] = 'Game Title';  
  125. $lang['Sudoku_admin_duplicate'] = 'You cannot install this puzzle because there is a puzzle with the same Game Pack and Game Num values<br />You must uninstall this game at first';  
  126. $lang['Sudoku_admin_noinstall'] = 'You cannot install this puzzle because somebody is playing this game at the moment<br />You must wait untill nobody is playing this game';  
  127. $lang['Sudoku_admin_new_grid_title'] = 'Install new puzzle';  
  128. $lang['Sudoku_admin_new_grid_title_explain'] = 'You can install new puzzle using free place in existing packs or starting a new Game Pack';  
  129. $lang['Sudoku_admin_starting_grid'] = 'Starting Grid';  
  130. $lang['Sudoku_admin_solution_grid'] = 'Solution Grid';  
  131. $lang['Sudoku_admin_delete_game'] = 'Uninstalling Puzzle';  
  132. $lang['Sudoku_admin_delete_game_confirm'] = 'Are you sure you want to delete this puzzle in Database?';  
  133. $lang['Sudoku_game_delete_success'] = 'Grid deleted successfully';  
  134. $lang['Sudoku_admin_delete_grid_title'] = 'Uninstall a grid';  
  135. $lang['Sudoku_admin_delete_grid_title_explain'] = 'You can delete a puzzle if nobody is playing it at this moment';  
  136. $lang['Sudoku_admin_nodelete'] = 'You can'delete this pussle because somebody is playing it';  
  137. $lang['Sudoku_admin_incorrect_level_value'] = 'Incorrect value of difficulty level';  
  138. $lang['Sudoku_level_changed_successfully'] = 'Level of difficulty changed successfully for this puzzle';  
  139. $lang['Sudoku_admin_not_numeric_value'] = 'Values must be numric';  
  140. $lang['Sudoku_admin_change_level_title'] = 'Change Difficulty Level of a puzzle';  
  141. $lang['Sudoku_admin_change_level_title_explain'] = 'You can change difficulty level of a puzzle from 1(Easy) to 4(Very hard)';  
  142. $lang['Sudoku_admin_incorrect_grid_value'] = 'You must enter only numbers from 1 to 9';  
  143. $lang['Sudoku_admin_no_fit'] = 'A nmber is starting grid doesn't fit to number in solution grid';  
  144. $lang['Sudoku_admin_invalid solution'] = 'Solution grid is invalid';  
  145. $lang['Sudoku_admin_new_success'] = 'New puzzle is installed successfully to Game Pack %s and Game Number %s !';  
  146. $lang['Sudoku_admin_reset_game_confirm_title'] = 'Resetting all Sudoku gamedata';  
  147. $lang['Sudoku_admin_reset_game_confirm_message'] = 'Are you sure you want to delete all data of Sudoku players?';  
  148. $lang['Sudoku_admin_final_reset_game_confirm_title'] = 'Final confirm';  
  149. $lang['Sudoku_admin_final_reset_game_confirm_message'] = 'Really?';  
  150. $lang['Sudoku_admin_reset_success'] = 'All gamedata of Sudoku deleted successfully';  
  151. $lang['Sudoku_admin_move_pack'] = 'Move Game Pack';  
  152. $lang['Sudoku_admin_move_pack_explain'] = 'You can move a whole Game Pack into another Pack Number place';  
  153. $lang['Sudoku_admin_new_game_pack'] = 'New Game Pack Number';  
  154. $lang['Sudoku_admin_this_pack_exists'] = 'You can't move this Pack because exists a pack with the same number';  
  155. $lang['Sudoku_admin_pack_move_success'] = 'You moved successfully this Pack into Pack Number %s';  
  156. $lang['Sudoku_admin_arrange_database'] = 'Arrange Database';  
  157. $lang['Sudoku_admin_arrange_database_explain'] = 'Arange puzzeles in Database Åôèäóû in order of Game Nums and Game Packs Ascending';  
  158. $lang['Sudoku_arrange_database_success'] = 'Database rearranged successfully';  
  159. $lang['Sudoku_admin_move_puzzle'] = 'Move a Puzzle';  
  160. $lang['Sudoku_admin_move_puzzle_explain'] = 'You can move a puzzle into another place if nobody is playing it at the moment';  
  161. $lang['Sudoku_admin_nomove_playing'] = 'You cannot move this puzzle because somebody is playing it at the moment';  
  162. $lang['Sudoku_admin_nomove_duplicate'] = 'You can't move this puzzle because there is a game already in the destination place';  
  163. $lang['Sudoku_admin_puzzle_move_success'] = 'The puzzle moved successfully';  
  164. $lang['Sudoku_admin_pack_nomove_playing'] = 'You cannot move this pack because somebody is playing it at the moment';  
  165. $lang['Sudoku_admin_copy_actions'] = 'Actions while copying';  
  166. $lang['Sudoku_admin_copy_action_0'] = 'No actions';  
  167. $lang['Sudoku_admin_copy_action_1'] = 'Rotate cw';  
  168. $lang['Sudoku_admin_copy_action_2'] = 'Rotate ccw';  
  169. $lang['Sudoku_admin_copy_action_3'] = 'Rotate upside down';  
  170. $lang['Sudoku_admin_copy_action_4'] = 'Flip';  
  171. $lang['Sudoku_admin_copy_puzzle'] = 'Copy a Puzzle';  
  172. $lang['Sudoku_admin_copy_puzzle_explain'] = 'You can copy a puzzle into another place using some actions, e.g. rotate it upside down or flip<br />(if title field is empty new puzzle will have the same name)';  
  173. $lang['Sudoku_admin_nocopy_duplicate'] = 'You cannot copy this puzzle because destination place is not free';  
  174. $lang['Sudoku_admin_copy_success'] = 'The puzzle copied successfully into Game Pack %s and Game Num %s with action "%s"';  
  175. $lang['Sudoku_admin_copy_action_5'] = 'Diagonal upside down';  
  176. $lang['Sudoku_admin_copy_action_6'] = 'Diagonal flip';  
  177. $lang['Sudoku_admin_testing_database'] = 'Testing Sudoku Database';  
  178. $lang['Sudoku_admin_testing_database_explain'] = 'You can test all puzzles if they are valid and match<br />(it may take considerable amount of time depending on your database and server resources)';  
  179. $lang['Sudoku_admin_test_invalid_solution'] = 'Invalid solution in Pack %s Game %s !!';  
  180. $lang['Sudoku_admin_test_nomatch'] = 'Starts doesn't match solution in Pack %s Game %s in line %s symbol %s !!';  
  181. $lang['Sudoku_admin_nocount'] ='Starts Table.<br />In line %s Game #%s Game Pack#%s not 17 but %s characters!';  
  182. $lang['Sudoku_admin_anocount'] = 'Starts Table.<br />In line %s Game #%s Game Pack#%s dividing character "a" reported not 8 but %s times!';  
  183. $lang['Sudoku_admin_test_success'] = 'Sudoku Database is checked up. No errors';  
  184. $lang['Sudoku_admin_save'] = 'Save Puzzle';  
  185. $lang['Sudoku_admin_purge'] = 'Purge Puzzle';  
  186. $lang['Sudoku_admin_save_success'] = 'Puzzle Saved successfully';  
  187. $lang['Sudoku_admin_purge_success'] = 'Puzzle purged successfully';  
  188. $lang['Click_return_new_manage'] = '%sReturn to manage a new puzzle%s';  
  189. $lang['Sudoku_admin_new_manage']  = 'Creating new puzzle Sudoku';  
  190. $lang['Sudoku_admin_new_manage_explain'] = 'Here you can create and install new puzzle of Sudoku Game';  
  191. $lang['Sudoku_admin_generate'] = 'Generate';  
  192. $lang['Sudoku_admin_generate_explain'] = 'If Game Level is not set the generator would generate random level';  
  193. $lang['Sudoku_admin_generate_fail'] = 'Sorry, generator failed to create a valid grid';  
  194. $lang['Sudoku_admin_generate_success'] = 'Congratulations! New puzzle is generated!';  
  195. $lang['Sudoku_admin_max_points'] = 'Maximal Winning Points In the puzzle';  
  196. $lang['Sudoku_admin_generate_submit_explain'] = 'Finally submit to install the new puzzle';  
  197. $lang['Sudoku_admin_new_pack_title'] = 'Generate a new Game Pack';  
  198. $lang['Sudoku_admin_new_pack_title_explain'] = 'You can generate a new game pack or fill empty numbers in an existing Game Pack by new puzzles.<br /><i>Beware of server resources and do not set too big amount of puzzles. 20-50 puzzles is recommended</i>';  
  199. $lang['Sudoku_admin_game_amount'] = 'Amount of puzzles';  
  200. $lang['Sudoku_admin_new_pack_generate_success'] = 'New Game Pack %s is created successfully';  
  201. $lang['Sudoku_admin_new_pack_generate_fail'] = 'Sorry, Game Pack %s already has this amount of puzzles';  
  202. $lang['Sudoku_admin_new_pack_generate_update_success'] = 'Game Pack %s is updated with new puzzles successfully';  
  203. $lang['Sudoku_admin_click_mode_enable'] = 'Click Mode Enabled';  
  204. $lang['Sudoku_admin_click_mode_enable_explain'] = 'Click Mode allows not to reload page each time to save traffic';  
  205. $lang['Sudoku_admin_helper_enable_explain'] = 'Allow players to use helper popup window with all available numbers for each empty cell';  
  206. $lang['Sudoku_admin_helper_enable'] = 'Sudoku Helper enabled';  
  207. $lang['Sudoku_admin_edit_puzzle'] = 'Edit Puzzle';  
  208. $lang['Sudoku_admin_edit_puzzle_explain'] = 'Here you can edit an existing puzzle';  
  209. $lang['Sudoku_admin_load'] = 'Load';  
  210. $lang['Sudoku_admin_load_success'] = 'Puzzle loade successfully for an edition';  
  211. $lang['Sudoku_admin_edit_list_select'] = 'Select a puzzle to edit';  
  212. $lang['Sudoku_admin_no_update_loaded'] = 'Update data is empty';  
  213. $lang['Sudoku_admin_edit_update_success'] = 'Puzzle edited successfully';  
  214. $lang['Sudoku_admin_load_vault'] = 'Load a puzzle from vault';  
  215. $lang['Sudoku_admin_load_vault_explain'] = 'Vault is a special table to keep single solution puzzles collection';  
  216. $lang['Sudoku_admin_load_vault_success'] = 'A puzzle loaded successfully from vault table';  
  217. $lang['Sudoku_admin_no_vault'] = 'Sorry, you haven't a vault table and cannot use this option';  
  218. $lang['Sudoku_admin_solve'] = 'Solve';  
  219. $lang['Sudoku_admin_solve_explain'] = 'You can try to solve any starting grid';  
  220. $lang['Sudoku_admin_iterations'] = 'Iterations';  
  221. $lang['Sudoku_admin_iterations_explain'] = 'Number of iterations while solving.<br /><i>Don't make it too big because it uses almost all server resources</i>';  
  222. $lang['Sudoku_admin_solution_fail'] = 'The solver couldn't solve this puzzle using %s iterations';  
  223. $lang['Sudoku_admin_solution_success'] = 'The solver has this puzzle solved by %s iterations!';  
  224. $lang['Sudoku_admin_incorrect_value'] = 'Unavailable values entered';  
  225. $lang['Sudoku_admin_helper_price'] ='Helper price';  
  226. $lang['Sudoku_admin_level_price'] ='Level price';  
  227. $lang['Sudoku_ninja_admin_manage'] = 'Sudoku Ninja Game & Players Management';  
  228. $lang['Sudoku_ninja_admin_manage_explain'] = 'Here you can edit data of the game Sudoku Ninja';  
  229. $lang['Sudoku_ninja_admin_testing_database'] = 'Testing Sudoku Ninja Database';  
  230. $lang['Sudoku_samurai_admin_manage'] = 'Sudoku Samurai Game & Players Management';  
  231. $lang['Sudoku_samurai_admin_manage_explain'] = 'Here you can edit data of the game Sudoku Samurai';  
  232. $lang['Sudoku_samurai_admin_testing_database'] = 'Testing Sudoku Samurai Database';  
  233. $lang['Sudoku_admin_samurai_price'] = 'Best Samurai Reward';  
  234. $lang['Sudoku_admin_ninja_price'] = 'Best Ninja Reward';  
  235. $lang['Sudoku_admin_helper_samurai_price'] = 'Helper Samurai Price';  
  236. $lang['Sudoku_admin_helper_ninja_price'] = 'Helper Ninja Price'; 


Ok, that are the changes in the normal core files but one we don't forget are the SQL actions.

In the package is a db_update.php present, upload that to your server and after launch deleted it!! NOTE: IT DELETE ALL YOUR DATA OF SUDOKU MOD, for example, the games, points and other.

USE THE FOLLOWING UPDATE AND PACKAGE ON YOUR OWN RISK!!!

So hopefully you enjoy it and maybe a suggestion for the next version of IP.

pack-sudoku250-forIP1.1.0.15.zip
Description: Sudoku Mod 2.5.0 for IP 1.1.0.15 
Download
Filename: pack-sudoku250-forIP1.1.0.15.zip
Filesize: 323.92 KB
Downloaded: 293 Time(s)

 




____________
Official translator of Icy Phoenix to Dutch
 
brandsrusSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
jajajajajajajajaja, it already comes including ¬¬
 



 
volvoxSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Hello

You must also edit this
OPEN sudoku.php
FIND
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login.$phpEx?redirect=sudoku.$phpEx", true));

REPLACE WITH
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login_ip.$phpEx?redirect=sudoku.$phpEx", true));

OPEN sudoku_ninja.php
FIND
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login.$phpEx?sudoku_ninja.$phpEx", true));

REPLACE WITH
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login_ip.$phpEx?sudoku_ninja.$phpEx", true));

OPEN sudoku_samurai.php
FIND
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login.$phpEx?sudoku_samurai.$phpEx", true));

REPLACE WITH
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login_ip.$phpEx?sudoku_samurai.$phpEx", true));

Pepi
 



 
pepiSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
pepi wrote: [View Post]
Hello

You must also edit this
OPEN sudoku.php
FIND
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login.$phpEx?redirect=sudoku.$phpEx", true));

REPLACE WITH
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login_ip.$phpEx?redirect=sudoku.$phpEx", true));


That is not the correct way to edit that...

OPEN sudoku.php
FIND
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login.$phpEx?redirect=sudoku.$phpEx", true));

REPLACE WITH
Code: [Download] [Hide] [Select]
header($header_location . append_sid(LOGIN_MG . "?redirect=sudoku.$phpEx", true));


This stands for all the other links.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Mighty Gorgon wrote: [View Post]
That is not the correct way to edit that...

OPEN sudoku.php
FIND
Code: [Download] [Hide] [Select]
header($header_location . append_sid("login.$phpEx?redirect=sudoku.$phpEx", true));

REPLACE WITH
Code: [Download] [Hide] [Select]
header($header_location . append_sid(LOGIN_MG . "?redirect=sudoku.$phpEx", true));


This stands for all the other links.


Hello

ups is ok many thanks Luca
Pepi
 



 
Edited by TheSteffen, Sat 11 Aug, 2007 15:34: Insert [quote user="Mighty Gorgon" post="18510"]
pepiSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
I can not play this sudoku pack anymore, and i can not play the version of IP 1.1.7.22 sudoku.

How can i downgrade this sudoku game pack and play the original game.

This is the error i have;

Error in retrieving Sudoku grid data

DEBUG MODE

SQL Error : 1146 Table 'secboard.sudoku_starts' doesn't exist

SELECT game_pack FROM SUDOKU_STARTS ORDER BY game_pack DESC LIMIT 1

Line : 63
File : sudoku.php
Greetzz Ron
 




____________
Gr. Ron

Team "Dutch"

?If you have accomplished all that you have planned for yourself, you have not planned enough."
 
HarimauSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Are you sure to have modified constants.php to consider the new tables used by this mod?
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Mighty Gorgon wrote: [View Post]
Are you sure to have modified constants.php to consider the new tables used by this mod?


I forgot to replace the functions_sudoku.php file     shame on me.

Now members can play the original sudoku game.

Thanks for giving me a push in the right direction.

Gr Ron
 




____________
Gr. Ron

Team "Dutch"

?If you have accomplished all that you have planned for yourself, you have not planned enough."
 
HarimauSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
You are welcome.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Is there a way to get this mod to work in Icy Phoenix 1.1.10.25 RC3?
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Chaotic wrote: [View Post]
Is there a way to get this mod to work in Icy Phoenix 1.1.10.25 RC3?
Have you tried to install it? It might work

Greets
 




____________
Gabriel Anca
 
KasLimonSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
I tried installing it but when I click the Sudoku link in the navigation menu, I get a blank template screen:

http://www.thelocclan.com/phpBB2/sudoku.php

I applied all the changes the topic starter mentioned as well as MG's changes and it still won't show up.
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
There is the Spanish translation?
 



 
jjuanoviSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
jjuanovi wrote: [View Post]
There is the Spanish translation?
I'll translate it
 




____________
Gabriel Anca
 
KasLimonSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: New Sudoku Mod (1.0.6 => 2.5.0) 
 
Here is the translation of this customization to Spanish. I hope it's useful.

 
Off Topic
:
Qué cansancio jeje. Aquí lo tienes
Spoiler: [ Show ]

 




____________
Gabriel Anca
 
KasLimonSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron