-
Posts
783 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Paul Evans
-
No problem MC support aim to please their customers anymore issues please report them it helps you and other customers when we update. It's alot better all round if people assist us with reporting bugs thank you.
-
I have sent you a reply with fixes.
-
Hey, Could you report this via the support feature on mccodes Support thanks
-
please go here for v2 or for redux here for Login Bonus script
-
Link: here (buy from here) Demo: here Price: $5.00 USD Description: A simple voting script which allows admins to easily add votes (via staff panel) with set rewards in (money/crystals). Admins also see total votes/votes today in the main vote file. -Easy install -Need basic PHP/MySQL knowledge -2 PHP file (staff_vote.php/vote.php) -1 txt file (install.txt) -1 png file (info.png)
-
Looks good mate.
-
Link: here (buy from here) Demo: V2 - here & Redux - here Price: $10.00 USD Description: This module gives the user a bonus each day for 5 days and on the 5th day it simply re-gives the 5th day reward. The addictive part is that if the user doesn't login on for example the 3rd day they go back to the first reward. -Easy install -Need basic PHP/MySQL knowledge -1 PHP file (staff_loginbonus.php) -1 txt file (install.txt) Also available on MC Redux here
-
I just produced a module for redux and am planning on doing some more in the future. Mine Shaft: http://mccodes.com/viewmod.php?id=49
-
Link: here (buy from here) Demo: here Price: $15.00 USD Description: This mod allows players to mine minerals from 3 mines then convert the minerals into game currency. It works like a mini game using it's own power stat to limit usage, which gains when they reach the next level which is also separate to normal level. -Easy install -Need basic PHP/MySQL knowledge -1 PHP file (mine.php) -1 txt file (install.txt) Also available on MC v2 here
-
JohnWest2 that was my idea behind Redux.
-
All issues should be fixed on Redux Sample although if you do find a issue please report it here. Thanks for your time much appreciated.
-
I'm way too big for my rock these days, although i have to apologise i assumed this was a new thread since people were posting on it.
-
If it's on his website should it matter if he didn't backup?
-
Sorry you may have misunderstood what i said (happens alot these days). YOU took a screenshot of YOUR website with YOUR mod installed on it, SO where the hell is YOUR site? Download it back... ALTERNATIVELY: if you was using local server you would of emailed the attached mod to people check the sent box... or ask a customer for it back Seriously what happened to MWG community shall i spoon feed you too?
-
Actually i do LOL You have a screenshot of it on a website your telling me you lost your site also?
-
Link: here (buy from here) Demo: V2 - here & Redux - here Price: $15.00 USD Description: This mod allows players to mine minerals from 3 mines then convert the minerals into game currency. It works like a mini game using it's own power stat to limit usage, which gains when they reach the next level which is also separate to normal level. -Easy install -Need basic PHP/MySQL knowledge -1 PHP file (mine.php) -1 txt file (install.txt) Also available on MC Redux here
-
How can you lose your own script ??
-
I've been here since 2010 again another situation where you didn't pay attention. Back to subject please Troll.
-
Like kieran said there is more features included not just the signature.
-
You could if you use this http://makewebgames.io/showthread.php/39502-Tutorial-v2-0-3-v2-5-convertion?highlight=redux+convert
-
although would this work ;) testicle', user_level ='2 the query would be UPDATE `users` SET `signature` = 'tesicle', user_level = '2' WHERE `userid` = {$ir['userid']} LOL would be a little more fun IMO. The moral of the story is learn how to sanitise your script or you'll end up like SRB bitter he got hacked (joke).
-
item_give($userid,$_GET['ID'],$_POST['qty']);
-
Sounds like a good deal even if im bias due to relation lol
-
ALTER TABLE users ADD `signature` text NOT NULL default ''
-
<?php $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); if($ir['exp'] >= $ir['exp_needed'] && $ir['level']!=$set['max_level']) { $expu=$ir['exp']-$ir['exp_needed']; $ir['exp']=$expu; if ($set['level_gain']>0) { $gain='You received $'.(($ir['level']+1)*$set['level_gain']); $gainsql=' `money`=`money`+'.(($ir['level']+1)*$set['level_gain']).','; } $db->query("UPDATE `users` SET".$gainsql." `level`=`level`+1, `exp`=$expu, `energy`=`energy`+".$set['energy_gain'].", `brave`=`brave`+".$set['brave_gain'].", `maxenergy`=`maxenergy`+".$set['energy_gain'].", `maxbrave`=`maxbrave`+".$set['brave_gain'].", `hp`=`hp`+".$set['hp_gain'].", `maxhp`=`maxhp`+".$set['hp_gain']." WHERE `userid`=".$ir['userid']); event_add($ir['userid'], 'You have leveled up you are now level <strong>'.($ir['level']+1).'</strong>'.$gain, $c); $unlocks='<em>None</em>'; $q=mysql_query("SELECT `cityname` FROM `cities` WHERE `cityminlevel`=".($ir['level']+1)); if (mysql_num_rows($q)>0) { $unlocks='<strong>You can travel to:</strong><ul>'; while ($c=mysql_fetch_array($q)) { $unlocks=$unlocks.'<li>'.$c['cityname'].'</li>'; } $unlocks=$unlocks.'</ul>'; } echo ' <div align="center"> <table width="50%"> <tr> <td> <strong>You have leveled up!</strong> </td> </tr> <tr> <td> You are now level: '.($ir['level']+1).' </hr> <br /> <strong>Unlocks:</strong> '.$unlocks.' </td> </tr> </table> </div>'; }