Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 4
Goto page 1, 2, 3, 4  Next
 
Reply with quote Download Post 
Post NUKE LADDER 
 
I have been searching the internet trying to find a Gaming Ladder Script. I finally found one called Nuke Ladder found HERE . Before i even got started on this i was wondering if anyone has tryed to adapt this to the newest version of IP? Since it was a mod for PHPBB Does anyone think this is possible and if so where would i start..
 



 
redrumm101Send private message  
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: NUKE LADDER 
 
should be possible.

have a look at the HOW TO section.

There´s a sticky from MG telling us what code to change to convert from PHPBB3 to ICY

I think the code changes aply to other CMS aswell.

Well anyway there´s a guide that might be aplyable
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
Ty bro i will look into that. If i can get it to work i will post it back. Im sure some gamers will be interested in having this for there site as well. If anyone else knows of any free ladder scripts Let me know thanks.,..
 



 
redrumm101Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
Apparently the Nuke Ladder comes as a Free Demo, but the Full version is licensed.

h**p://***.needscripts.com/Resource/23651.html

To convert any of it to Icy Phoenix IMHO would be Piracy.  
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
Quote:
Hey everybody, things have been busy for us over the past while and havent had time to take care of a bunch of the sites that were running.

Nukeladder is now free, click the downloads button to go download the packages. Sorry we cannot offer any support or modifications at this time.Have fun with the code, do as you wish with it besides reselling it.

Beta registration for our latest project is about to go live soon. so stay tuned for more information and your chance to get in on the early action.


I don't think converting it to Icy Phoenix will be a problem.
 




____________
| 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: NUKE LADDER 
 
Yeh its now a free version. I started by adding the nukeladder.php to the cms pages.i have commented this code out in the nukeladder.php original file
Code: [Download] [Hide] [Select]
//define('IN_PHPBB', true);  
//$phpbb_root_path = './';
//include($phpbb_root_path . 'extension.inc');  
//include($phpbb_root_path . 'common.'.$phpEx);


And replaced it with the index_empty.php

Looks like this now

Code: [Download] [Hide] [Select]
define('X1plugin_include', true);
# PHPBB StartUp
define('IN_CMS_PAGE', true);
define('IN_ICYPHOENIX', true);
if (!defined('IP_ROOT_PATH')) define('IP_ROOT_PATH', './');
if (!defined('PHP_EXT')) define('PHP_EXT', substr(strrchr(__FILE__, '.'), 1));
include(IP_ROOT_PATH . 'common.' . PHP_EXT);
include(IP_ROOT_PATH . 'includes/new_page_common.' . PHP_EXT);
//define('IN_PHPBB', true);  
//$phpbb_root_path = './';
//include($phpbb_root_path . 'extension.inc');  
//include($phpbb_root_path . 'common.'.$phpEx);  
$userdata = session_pagestart($user_ip, 0);  
init_userprefs($userdata);    
$page_title = 'NukeLadder';


So far i just get an emtpy page when i go there. kinda like when you add an index_emtpy.php file.

Here is the original file code to the nukeladder.php

Code: [Download] [Hide] [Select]
<?php
###############################################################
# X1plugin Competition Management
# File::index.php
# File Version::2.5.5
# Homepage::http://www.projectxnetwork.com
# Copyright:: Shane Andrusiak
###############################################################
define('X1plugin_include', true);
# PHPBB StartUp
define('IN_PHPBB', true);  
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');  
include($phpbb_root_path . 'common.'.$phpEx);  
$userdata = session_pagestart($user_ip, 0);  
init_userprefs($userdata);    
$page_title = 'NukeLadder';

# Load X1 Config
require_once("NukeLadder/config.php");

# Load AdodbLite if Requested
if(X1_useadodblite) require_once(X1_plugpath.'/adodb/adodb.inc.php');

# Load  Language Definitions
require_once(X1_langpath."/".X1_adminlang."/admin_lang.php");
require_once(X1_langpath."/".X1_corelang."/core_lang.php");

# Load Integration Functions
require_once(X1_plugpath."/integrate.php");

# Load System Functions
require_once(X1_plugpath."/core/system/system_selectboxes.php");
require_once(X1_plugpath."/core/system/system_functions.php");
require_once(X1_plugpath."/core/system/system_paginate.php");

# Load Admin Functions
function X1_require_admin(){
    if(check_admin()){
        require_once(X1_plugpath."/core/admin/admin_disputes.php");
        require_once(X1_plugpath."/core/admin/admin_config.php");
        require_once(X1_plugpath."/core/admin/admin_index.php");
        require_once(X1_plugpath."/core/admin/admin_games.php");
        require_once(X1_plugpath."/core/admin/admin_events.php");
        require_once(X1_plugpath."/core/admin/admin_matches.php");
        require_once(X1_plugpath."/core/admin/admin_teams.php");
        require_once(X1_plugpath."/core/admin/admin_maps.php");
        require_once(X1_plugpath."/core/admin/admin_mapgroups.php");
        require_once(X1_plugpath."/core/admin/admin_config.php");
        require_once(X1_plugpath."/core/admin/admin_challenges.php");
    }else{
        die("Go Away");
    }
}

#pseudo cron
expire_challenges();
$op = $_REQUEST[X1_actionoperator];
if(!defined('X1_cookiename'))define('X1_cookiename', "team");
# Header
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
opentable();
# Menu
# Custom Menu
if(X1_custommenu)require_once(X1_plugpath."/core/system/".X1_custommenu_inc);
# Load Switch
require_once(X1_plugpath."/core/system/system_cases.php");
closetable();
# LinkBack
echo X1plugin_linkback();
# Footer
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>


I also have changed all the ($phpp_root_path) to (IP_ROOT_PATH)
 



 
redrumm101Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
OK now you´ve got to define the X!_root_path out aswell
like the IP_ROOT_PATH.

another thing

find $phpEX

replace with PHP_EXT

and here you do this

require_once(X1_plugpath."/core/admin/admin_disputes.php");

replace with

require_once(X1_plugpath.'/core/admin/admin_disputes.' . PHP_EXT);

and delete include php extensions.inc

that file is no longer requiered in IP 1.3
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
Are you two planning to port this to Icy Phoenix here?  If so, let's move this topic to the Customizations And MODS Discussion forum.

What say you?  
 




____________
| 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: NUKE LADDER 
 
Yes CHAOTIC Could you please move it.  Thank you


Code: [Download] [Hide] [Select]
<?php
###############################################################
# X1plugin Competition Management
# File::index.php
# File Version::2.5.5
# Homepage::http://www.projectxnetwork.com
# Copyright:: Shane Andrusiak
###############################################################
define('X1plugin_include', true);
# PHPBB StartUp
define('IN_CMS_PAGE', true);
define('IN_ICYPHOENIX', true);
if (!defined('IP_ROOT_PATH')) define('IP_ROOT_PATH', './');
if (!defined('PHP_EXT')) define('PHP_EXT', substr(strrchr(__FILE__, '.'), 1));
include(IP_ROOT_PATH . 'common.' . PHP_EXT);
include(IP_ROOT_PATH . 'includes/new_page_common.' . PHP_EXT);
//define('IN_PHPBB', true);  
//IP_ROOT_PATH = './';
//include(IP_ROOT_PATH . 'common.'.PHP_EXT );  
    // Start session management
$userdata = session_pagestart($user_ip, 0);  
init_userprefs($userdata);
    // End session management  
$cms_page_id = 'NukeLadder';
$page_title = 'NukeLadder';

# Load X1 Config
require_once("NukeLadder/config.php");

# Load AdodbLite if Requested
if(X1_useadodblite) require_once(X1_plugpath.'/adodb/adodb.inc.php');

# Load  Language Definitions
require_once(X1_langpath."/".X1_adminlang."/admin_lang.php");
require_once(X1_langpath."/".X1_corelang."/core_lang.php");

# Load Integration Functions
require_once(X1_plugpath."/integrate.php");

# Load System Functions
require_once(X1_plugpath."/core/system/system_selectboxes.php");
require_once(X1_plugpath."/core/system/system_functions.php");
require_once(X1_plugpath."/core/system/system_paginate.php");

# Load Admin Functions
function X1_require_admin(){
    if(check_admin()){
        require_once(X1_plugpath.'/core/admin/admin_disputes.' . PHP_EXT); require_once(X1_plugpath."/core/admin/admin_config.php");
        require_once(X1_plugpath."/core/admin/admin_index.php    ");
        require_once(X1_plugpath."/core/admin/admin_games.php");
        require_once(X1_plugpath."/core/admin/admin_events.php");
        require_once(X1_plugpath."/core/admin/admin_matches.php");
        require_once(X1_plugpath."/core/admin/admin_teams.php");
        require_once(X1_plugpath."/core/admin/admin_maps.php");
        require_once(X1_plugpath."/core/admin/admin_mapgroups.php");
        require_once(X1_plugpath."/core/admin/admin_config.php");
        require_once(X1_plugpath."/core/admin/admin_challenges.php");
    }else{
        die("Go Away");
    }
}

#pseudo cron
expire_challenges();
$op = $_REQUEST[X1_actionoperator];
if(!defined('X1_cookiename'))define('X1_cookiename', "team");
# Header
include(IP_ROOT_PATH . 'includes/page_header.'.PHP_EXT );
opentable();
# Menu
# Custom Menu
if(X1_custommenu)require_once(X1_plugpath."/core/system/".X1_custommenu_inc);
# Load Switch
require_once(X1_plugpath."/core/system/system_cases.php");
closetable();
# LinkBack
echo X1plugin_linkback();
# Footer
include(IP_ROOT_PATH . 'includes/page_tail.'.PHP_EXT );
?>


I Made these changes i think there is something possibly wrong with the page id. Can anyone help with that. Still showing a blank page. Thank you for all your guys help
 



 
redrumm101Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
all these line s there you call up core got """  try to put ' instaed of

and finish the line s like i indicated with the exampole ones
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
So it's free!  

From what I found out: The bridging file and the core files assumes that the default Db prefix is phpbb_ (Because that's what it was written for) and it doesn't appear to auto-detect the prefix.

If you install IP with that Db prefix, you'll probably find that things may become a little easier to start with.

Dunno' but I've got an opening screen up - And that's as far as I want go with this.
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
ot

Quote:
Don't PM or eMail me questions about Icy Phoenix code, mods or themes unless I ask you to - Because Your answer will be "Post it in the forums".


Is this meant for me?? Like somethnig like a wing with a mast of a sailing boat???
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
It's not for anyone in particular. It's because I made PM's available while someone else and I are discussing something.

When we finish - The sig will be changed, and PM's no longer accepted.
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
ot

No Prob.

havent thought of disturbing you anyway.

Got enough on my to do list.
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: NUKE LADDER 
 
So if i change my database from ip_ to phpbb_ and fix my config files to show that. Will that help out with this problem. If you got this to run on your site. What changes did you make if any.

This is what i have done thus far. I have changed all my lines from

Code: [Download] [Hide] [Select]
"/********.php");


And replaced it with

[code linenumbers=false]'/********.' . PHP_EXT);

And did all the other things spidie listed above. Sorry spidie I was unclear about doing
them all I just thought you meant the ones you posted. Sorry still a little new at this..

I created a page in cms file name nukeladder.php than uploaded the file nukeladder.php to
my site here www.cisclan.com/nukeladder.php  And all i get is a blank IP page. I am going
to create a duplicate database with phpbb_ and try that to see if I can get an opening page. If you dont mind posting the code you used i would be greatly appreciative. thank you
 



 
redrumm101Send private message  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 4
Goto page 1, 2, 3, 4  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