[Release] Premium Mutoolz 4-5
http://i.imgur.com/r6pMc.png
How to config database?
backend/Config.php
Code:
// Character database
$config['db_host'] = '127.0.0.1';
$config['db_name'] = 'MuOnline'; // keep empty if ODBC
$config['db_user'] = 'sa';
$config['db_pass'] = 'xxxxx';
$config['db_type'] = 'mssql';
How yo add admins in website ?
Config.php
Code:
$_config['admins'] = array('a','Caviar');
how install it? ?
host/backend/muactions.php?install=1
host/backend/install2/
if you want to use it for Season6 Version you must edit :
backend\1Database\scfdefine.php
Code:
code rf => array('Fist Master','BS', '_bs.png', 'sub'=>'1851', 'bonus'=>'350', 'str'=>'25', 'agi'=>'25', 'vit'=>'25', 'eng'=>'25', 'lvluppoint'=>7),
ex: 81 => array('Bloody Summoner','BS', '_bs.png', 'sub'=>'1851', 'bonus'=>'350', 'str'=>'25', 'agi'=>'25', 'vit'=>'25', 'eng'=>'25', 'lvluppoint'=>7),
#Features :
- Rankings
- Guilds
- Characters
- View Character Stats
- View Character Items Used
- Online
- Devil Square
- Register
- Statitics
- Downloads
- WebShop (No Socket)
- MUPimb
- Vote Reward
- User CP
- Forgot Password
#Downlaods
Link
re: [Release] Premium Mutoolz 4-5
my stolen template, it is 5 years old. I have official psd and coded skin, http://scr.hu/0r7w/lpbu6
re: [Release] Premium Mutoolz 4-5
sorry to hear that , i have it since 3 years i think !
re: [Release] Premium Mutoolz 4-5
no work .. i habe thease error mssql): Select * from MU_Action order by id desc
re: [Release] Premium Mutoolz 4-5
u made something wrong !
post here error + location
1 Attachment(s)
re: [Release] Premium Mutoolz 4-5
re: [Release] Premium Mutoolz 4-5
Quote:
Originally Posted by
S1lvik
you not edited in php.ini extension ; for php_mssql.dll
;extension=php_mssql.dll must be extension=php_mssql.dll
@ScriptKid is his work ... from his server was stolen , The-Ien.com ... i think it was located in C:/
re: [Release] Premium Mutoolz 4-5
what is the code number of RF?
re: [Release] Premium Mutoolz 4-5
Quote:
Originally Posted by
daezugun
what is the code number of RF?
look inside of your mssql , i think
96=>Rage Fighter
98=>Fist Fighter
re: [Release] Premium Mutoolz 4-5
96=>Rage Fighter
97=>Fist Fighter not 98
1 Attachment(s)
re: [Release] Premium Mutoolz 4-5
no work this web... only errors Attachment 116801:thumpdown::thumpdown::thumpdown:
re: [Release] Premium Mutoolz 4-5
Quote:
Originally Posted by
S1lvik
it work good...
xampp have 2 php.ini... in windows folder installation and in xampp/php/ folder... you should edit xampp/php/php.ini too...
http://i297.photobucket.com/albums/m...olzwebsite.jpg
webshop do not work properly in Chrome ... only show number of items in each category...
update: oops... work pretty good in Firefox...
http://i297.photobucket.com/albums/m...zwebsiteff.jpg
re: [Release] Premium Mutoolz 4-5
This version you have is partly bugged.. it wasn't the final :P
re: [Release] Premium Mutoolz 4-5
I don't think this version of MuToolz was ever finished (if it's the one I think). I paid JohnD for it and never finished it in 2 months :D (long long time ago)
re: [Release] Premium Mutoolz 4-5
I think -Jumong- have the complete Mu Toolz. But Graveyard Network MU is dead as far as i know :(
re: [Release] Premium Mutoolz 4-5
help!
reset button is inactive, or unclickable, how to fix it to activate the reset?
http://i1167.photobucket.com/albums/...s/Untitled.jpg
vote reward voting problem, when you click on vote it says processing and took long time nothing happens...
http://i1167.photobucket.com/albums/.../Untitled2.jpg
re: [Release] Premium Mutoolz 4-5
i think this only works in Google Chrome and I.E
re: [Release] Premium Mutoolz 4-5
vote system is completely f..cked up... missing table toolz_vote...
Code:
case 'vote':
$day = (3600*24);
$vote['id']= $_GET['id'];
foreach($_config['vote_sites'] as $v =>$v1) {
if (in_array($vote['id'], $v1)) {
$vote['key'] = $v1; $vote['keyid'] = $v;
}
$vote['code_generic'][$v1[0]] = array('date'=>time()-$day,'votes'=>0);
}
$vote['code_generic_serial'] = serialize($vote['code_generic']);
//generate user vote db
$rs = $db->Execute('select * from toolz_vote where userid = ?', array($user_auth->username));
$rs = $rs->FetchRow();
if (!$rs) $db->Execute('insert into toolz_vote values (?,\''.$vote['code_generic_serial'].'\')',array($user_auth->username));
else $vote['code_generic_serial'] = $rs['votedata'];
$vote['code'] = unserialize($vote['code_generic_serial']);
//end user vote db
if ($vote['id']) {
if ($vote['key']) {
$date = $vote['code'][$vote['id']]['date'];
$diff = round((time()-$date)/$day,0);
$diffH = round((($date+$day)-time())/(3200),0);
$diffH = date_formats(time(),$date+$day);
if ($diff > 0) {
if ($vote['code'][$vote['id']]['votes'] < $vote['key'][2]) {
//generate vote code
$vote['code'][$vote['id']]['votes']++;
$msg = 'Vote Accepted!!! You have been awarded '.$vote['key'][1] .' MU CASH';
if ($vote['code'][$vote['id']]['votes'] == $vote['key'][2]) {
$vote['code'][$vote['id']]['date'] = time();
$vote['code'][$vote['id']]['votes'] = 0;
} else $msg .= ' You have '.($vote['key'][2]-$vote['code'][$vote['id']]['votes'] ).' more votes for this Vote Rewards.';
$vote['code_serial'] = serialize($vote['code']);
$db->Execute('update toolz_vote set votedata = \''.$vote['code_serial'].'\' where userid = ?',array($user_auth->username));
//print_r($vote['code']);
$go = $vote['key'][3];
} else $msg = 'Vote Limit Reached. Please try again Later. Next vote in '. $diffH; ;
} else $msg = 'You already voted today! Next vote in '. $diffH;
} else $msg = 'Vote is Invalid! Please try Again!';
}
echo 'VoteScript(';
//print_r($vote);
foreach($_config['vote_sites'] as $v =>$v1) {
$_config['vote_sites'][$v][2] = $vote['code'][$v1[0]]['votes'].'/'.$_config['vote_sites'][$v][2];
}
$result = array('data'=>$_config['vote_sites']);
if ($msg) $result = array('msg'=>$msg,'data'=>$_config['vote_sites']);
if ($go) $result = array('go'=>$go,'msg'=>$msg,'data'=>$_config['vote_sites']);
echo array2json($result);
echo " )";
break;
about reset function... is not implemented (LOL)
re: [Release] Premium Mutoolz 4-5
re: [Release] Premium Mutoolz 4-5
It has quite a few bugs,but the website is amazing.
re: [Release] Premium Mutoolz 4-5
The only problem is because we don't we have the query's for this website,i know that because i bought the Full Cabal Toolz v4 for my cabal server from john_d and yeah he toked him time like 2 months to finish my website even if he got the full files,he was forced to create again the query's for database,that's was the only problem,he didn't saved the query's for a new possible customer. Maybe the files are full, and we just need the query's for database, Maybe the files still need some codes modified, some new to add...only a good coder can solve this problem.