
wivers
Members-
Posts
30 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by wivers
-
Re: v1 or v2 Lite = Free V1 = $75 V2 = $200 Pfft, v2 = $300 f00' ;) ya i know i wanted 2 know waht i needed from v2 to make v1 look like like it but nvm
-
If you dont have a licence then dont use mccode v2!!!
wivers replied to wivers's topic in General Discussion
Re: If you dont have a licence then dont use mccode v2!!! err no but u see all the big games they have licences little games cant get big because they will get found out that they done have a licence -
Re: v1 or v2 ok can any 1 good help me what out of that do i take to put in my v1 then What part of the rules did you not understand? Posting entire scripts -- especially scripts which are copyright is AGAINST the rules. and what part of my v1 header do i replace for it ?
-
its almost thieving from dabonstew ok so maybe there are quite a few things in v2 that need fixing and its not safe easy to hack all that stuff but he took his time to make it so u not buying a licence and using v2 is immoral and stupid so people just use v1 its easy to use and is free !!!!! sorry dabonstew if i spelt your name wrong but i just sticking up for your gaming engine and you
-
Re: v1 or v2 cheers m8 and i wanted to do this because there are to many people using mccodes v2 without licence which i now believe is wrong so i want to transform a free v1 version into a amazing game but i dont like the basic layout of v1 it ir borin so il add the css and html and edit it to my own style cheers again
-
i was thinking if u added a css script to a v1 header and u made it similar to the css script in v2 could u make v1 look like v2 ?
-
Re: another sql protection to help i didnt say i did but i dnt know ho did so i didnt say i found it on ej.am
-
add this 2 your header /*+++++++++++++++++++++++++++++++++++++*/ /* SQL Protection Start */ /*+++++++++++++++++++++++++++++++++++++*/ //check if incomingData is not empty and of the expected length function checkIncomingData($idata, $minsize, $maxsize) { if ( strlen($idata)<$minsize or strlen($idata)>$maxsize ) { return false; } else { return true; } } //make sure that nothing bad can be entered by the user (-->sql injection attack) function cleanIncomingData($idata) { $cleaned = trim($idata); $cleaned = mysql_real_escape_string($cleaned); return $cleaned; } /*+++++++++++++++++++++++++++++++++++++*/ /* SQL Protection Ended */ /*+++++++++++++++++++++++++++++++++++++*/
-
if you have a game or have a game in the maiking read on
wivers posted a topic in General Discussion
ok... i just got back into coding made a new account on ej.am other 1 was messed up...i made that game luuuuusssshhh it really was alot different from normal mccode design it looked class but now i got banned from ej.am they say i multi accounting and they wouldnt help me before clean my other account up....so i was wonderini dnt wanna b using ej.am really so i wondered any 1 got a game want me 2 code for be a half owner with them and code and deign da game with them if u got ya own domain or wether u use ej.am it dnt matter i just want a new project if u intrested or jus curios add my email [email protected] -
Re: Advanced RentASpy[V2]
-
Re: [mccode] My forgot password I think people that cant typetalk correctly should be ignored, especially when they are after help yh wateva cos im the only 1 wat does it on ce and soz killah i was doin it rong it does work i think i havnt cheacked my emailyet but i think it worked
-
Re: [mccode] My forgot password ite killah well sumink rong wiv de code sumwhere every time i try i get No user's with this email. and there is a user with that email so sumink rong
-
Re: [both] Easy cPanel Login if u didnt do one of the above then any 1 that hacks your game could get on reason -they might not know it but if they hack your account then they could see the link and easily use it come on if u could ahck ang u get get id 1 then thats better than id 2 or sumink so i would go for id 1 then get in 2 find a lunk 2 cpanel and obviously try it then find out i can get straight into the cpanel of wateva game it aint worth the risk any 1 got a decent smenu.php login plz i need 1
-
Re: [mccode v2] Secure Bank! about the bank test.php thing ya wanna do do this 1st change the name on file manager from bank.php to test.php den put this in it should work <?php include (DIRNAME(__FILE__) . "/globals.php"); print "<h3>Bank</h3>"; if($ir['bankmoney']>-1) { $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : ""; switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index(); break; } } else { if(isset($_GET['buy'])) { if($ir['money']>4999) { print "Congratulations, you bought a bank account for \$5,000! [url='test.php']Start using my account[/url]"; $sql = sprintf("UPDATE users SET money = money - %u, bankmoney = bankmoney = %u WHERE (userid = %u)", 5000, 0, $userid); $db->query($sql); } else { print "You do not have enough money to open an account. [url='explore.php']Back to town...[/url]"; } } else { print "Open a bank account today, just \$5,000! [url='test.php?buy']> Yes, sign me up![/url]"; } } function index() { global $db, $ir, $c, $userid, $h; echo sprintf("[b]You currently have \$%s in the bank.[/b] ", number_format($ir['bankmoney'])); echo ("<table width='85%' cellspacing=1 class='table'>"); echo ("<tr>"); echo ("<td width='50%'>[b]Deposit money[/b] "); echo ("It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$3,000.<form action='test.php?action=deposit' method='post'>"); echo sprintf("Amount: <input type='text' name='deposit' value='%s' /> ", $ir['money']); echo ("<input type='submit' value='Deposit' /></form></td>"); echo ("<td width='50%'>[b]Withdraw money[/b] "); echo ("There is no fee on withdrawals.<form action='bank.php?action=withdraw' method='post'>"); echo sprintf("Amount: <input type='text' name='withdraw' value='%s' /> ", $ir['bankmoney']); echo ("<input type='submit' value='Withdraw' /></form></td>"); echo ("</tr>"); echo ("</table>"); } function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit'] = (float) $_POST['deposit']; if($_POST['deposit'] > $ir['money']) { print "You do not have enough money to deposit this amount."; } else { $fee=ceil($_POST['deposit']*15/100); if($fee > 3000) { $fee=3000; } $gain=$_POST['deposit']-$fee; $ir['money']+=$gain; $sql = sprintf("UPDATE users SET bankmoney = bankmoney + %u, money = money - %u WHERE (userid = %u)", @intval($gain), $_POST['deposit'], $userid); $db->query($sql); echo sprintf("You hand over \$%s to be deposited, after the fee is taken (\$%s), \$%s is added to your account. [b]You now have \$%s in the bank.[/b] [url='test.php']> Back[/url]", number_format($_POST['deposit']), number_format($fee), number_format($gain), number_format($ir['bankmoney'])); } } function withdraw() { global $db,$ir,$c,$userid,$h; $_POST['withdraw'] = (float) $_POST['withdraw']; if($_POST['withdraw'] > $ir['bankmoney']) { print "You do not have enough banked money to withdraw this amount."; } else { $_POST['withdraw'] = (float) $_POST['withdraw']; $gain=$_POST['withdraw']; $ir['bankmoney']-=$gain; $sql = sprintf("UPDATE users SET bankmoney = bankmoney - %u, money = money + %u WHERE (userid = %u)", $gain, $gain, $userid); $db->query($sql); echo sprintf("You ask to withdraw %s, the banking lady grudgingly hands it over. [b]You now have \$%s in the bank.[/b] [url='test.php']> Back[/url]", number_format($gain), number_format($ir['bankmoney'])); } } $h->endpage(); ?> that is tested and works on my site if not workin add my msn [email protected] Please use [code]...[/code] tags.
-
Re: [V2] Upgraded Brothel ite sniko i think there still a bug wen u goon brothel.php try clikin on anything it jus stays on brothel.php il have a look ova it but i dnt think i know what 2 do if ya do then tell me on msn i need a chat anyways
-
Re: Advanced RentASpy[V2] ite zero u know me from kc im wondering how 2 change it 2 a normal user feature
-
Re: A quick hello and a quick question :) so i got mccodes lite i got a game on it u dont want v2 it dont have many mods just stay with lite for nowi can help u give u some mmods and stuff add me on msn [email protected] and we will talk there i also have a game in v2 and a custom game