
Criminal
Members-
Posts
208 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Criminal
-
Re: Mood $30 Sounds like a good mod well done killah
-
Re: Help With level cap vr1 Did it work
-
Re: Help With level cap vr1 yes thats for v2
-
Re: Help With level cap vr1 v2 go to file manager find staff_users.php and replace this <?php include "sglobals.php"; //This contains user stuffs switch($_GET['action']) { case 'newuser': new_user_form(); break; case 'newusersub': new_user_submit(); break; case 'edituser': edit_user_begin(); break; case 'edituserform': edit_user_form(); break; case 'editusersub': edit_user_sub(); break; case 'invbeg': inv_user_begin(); break; case 'invuser': inv_user_view(); break; case 'deleinv': inv_delete(); break; case 'creditform': credit_user_form(); break; case 'creditsub': credit_user_submit(); break; case 'masscredit': mcredit_user_form(); break; case 'masscreditsub': mcredit_user_submit(); break; case 'reportsview': reports_view(); break; case 'repclear': report_clear(); break; case 'deluser': deluser(); break; case 'forcelogout': forcelogout(); break; default: print "Error: This script requires an action."; break; } function htmlspcl($in) { return str_replace("'", "'", htmlspecialchars($in)); } function new_user_form() { global $db,$ir, $c; if($ir['user_level'] != 2) { die("403"); } print "Adding a new user. <form action='staff_users.php?action=newusersub' method='post'> Username: <input type='text' name='username' /> Login Name: <input type='text' name='login_name' /> Email: <input type='text' name='email' /> Password: <input type='text' name='userpass' /> Type: <input type='radio' name='user_level' value='0' />NPC <input type='radio' name='user_level' value='1' checked='checked' />Regular Member Level: <input type='text' name='level' value='1' /> Money: <input type='text' name='money' value='100' /> Crystals: <input type='text' name='crystals' value='0' /> Donator Days: <input type='text' name='donatordays' value='0' /> Gender: <select name='gender' type='dropdown'><option>Male</option><option>Female</option></select> [b]Stats[/b] Strength: <input type='text' name='strength' value='10' /> Agility: <input type='text' name='agility' value='10' /> Guard: <input type='text' name='guard' value='10' /> Labour: <input type='text' name='labour' value='10' /> IQ: <input type='text' name='labour' value='10' /> <input type='submit' value='Create User' /></form>"; } function new_user_submit() { global $db,$ir,$c,$userid; if($ir['user_level'] != 2) { die("403"); } if(!isset($_POST['username']) || !isset($_POST['login_name']) || !isset($_POST['userpass'])) { print "You missed one or more of the required fields. Please go back and try again. [url='admin.php?action=newuser']> Back[/url]"; $h->endpage(); exit; } $level=abs((float) $_POST['level']); $money=abs((float) $_POST['money']); $crystals=abs((float) $_POST['crystals']); $donator=abs((float) $_POST['donatordays']); $ulevel=abs((float) $_POST['user_level']); $strength=abs((float) $_POST['strength']); $agility=abs((float) $_POST['agility']); $guard=abs((float) $_POST['guard']); $labour=abs((float) $_POST['labour']); $iq=abs((float) $_POST['iq']); $energy=10+$level*2; $brave=3+$level*2; $hp=50+$level*50; $db->query("INSERT INTO users (username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney) VALUES( '{$_POST['username']}', '{$_POST['login_name']}', md5('{$_POST['userpass']}'), $level, $money, $crystals, $donator, $ulevel, $energy, $energy, 100, 100, $brave, $brave, $hp, $hp, 1, '{$_POST['gender']}', unix_timestamp(), '{$_POST['email']}', -1)"); $i=mysql_insert_id($c); $db->query("INSERT INTO userstats VALUES($i, $strength, $agility, $guard, $labour, $iq)"); print "User created!"; stafflog_add("Created user {$_POST['username']} [$i]"); } function edit_user_begin() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("403"); } print "<h3>Editing User</h3> You can edit any aspect of this user. <form action='staff_users.php?action=edituserform' method='post'> User: ".user_dropdown($c,'user')." <input type='submit' value='Edit User' /></form> OR enter a user ID to edit: <form action='staff_users.php?action=edituserform' method='post'> User: <input type='text' name='user' value='0' /> <input type='submit' value='Edit User' /></form>"; } function edit_user_form() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("403"); } $d=$db->query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us on u.userid=us.userid WHERE u.userid={$_POST['user']}"); $itemi=$db->fetch_row($d); $itemi['hospreason']=htmlspcl($itemi['hospreason']); $itemi['jail_reason']=htmlspcl($itemi['jail_reason']); print "<h3>Editing User</h3> <form action='staff_users.php?action=editusersub' method='post'> <input type='hidden' name='userid' value='{$_POST['user']}' /> Username: <input type='text' name='username' value='{$itemi['username']}' /> Login Name: <input type='text' name='login_name' value='{$itemi['login_name']}' /> Duties: <input type='text' name='duties' value='{$itemi['duties']}' /> Staff Notes: <input type='text' name='staffnotes' value='{$itemi['staffnotes']}' /> Level: <input type='text' name='level' value='{$itemi['level']}' /> Money: \$<input type='text' name='money' value='{$itemi['money']}' /> Bank: \$<input type='text' name='bankmoney' value='{$itemi['bankmoney']}' /> Cyber Bank: \$<input type='text' name='cybermoney' value='{$itemi['cybermoney']}' /> Crystals: <input type='text' name='crystals' value='{$itemi['crystals']}' /> Mail Ban: <input type='text' name='mailban' value='{$itemi['mailban']}' /> Mail Ban Reason: <input type='text' name='mb_reason' value='{$itemi['mb_reason']}' /> Forum Ban: <input type='text' name='forumban' value='{$itemi['forumban']}' /> Forum Ban Reason: <input type='text' name='fb_reason' value='{$itemi['fb_reason']}' /> Hospital time: <input type='text' name='hospital' value='{$itemi['hospital']}' /> Hospital reason: <input type='text' name='hospreason' value='{$itemi['hospreason']}' /> Jail time: <input type='text' name='jail' value='{$itemi['jail']}' /> Jail reason: <input type='text' name='jail_reason' value='{$itemi['jail_reason']}' /> House: ".house2_dropdown($c, "maxwill", $itemi['maxwill'])." <h4>Stats</h4> Strength: <input type='text' name='strength' value='{$itemi['strength']}' /> Agility: <input type='text' name='agility' value='{$itemi['agility']}' /> Guard: <input type='text' name='guard' value='{$itemi['guard']}' /> Labour: <input type='text' name='labour' value='{$itemi['labour']}' /> IQ: <input type='text' name='IQ' value='{$itemi['IQ']}' /> <input type='submit' value='Edit User' /></form>"; } function edit_user_sub() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("403"); } $go=0; if(!isset($_POST['level'])) { $go=1; } if(!isset($_POST['money'])) { $go=1; } if(!isset($_POST['bankmoney'])) { $go=1; } if(!isset($_POST['crystals'])) { $go=1; } if(!isset($_POST['strength'])) { $go=1; } if(!isset($_POST['agility'])) { $go=1; } if(!isset($_POST['guard'])) { $go=1; } if(!isset($_POST['labour'])) { $go=1; } if(!isset($_POST['IQ'])) { $go=1; } if(!isset($_POST['username'])) { $go=1; } if(!isset($_POST['login_name'])) { $go=1; } if($go) { print "You did not fully fill out the form."; $_POST['user']=$_POST['userid']; edit_user_form(); } else { $_POST['level']=(float) $_POST['level']; $_POST['strength']=abs((float) $_POST['strength']); $_POST['agility']=abs((float) $_POST['agility']); $_POST['guard']=abs((float) $_POST['guard']); $_POST['labour']=abs((float) $_POST['labour']); $_POST['IQ']=abs((float) $_POST['IQ']); $_POST['money']=(float) $_POST['money']; $_POST['bankmoney']=(float) $_POST['bankmoney']; $_POST['cybermoney']=(float) $_POST['cybermoney']; $_POST['crystals']=(float) $_POST['crystals']; $_POST['mailban']=(float) $_POST['mailban']; $_POST['forumban']=(float) $_POST['forumban']; $maxwill=abs((float) $_POST['maxwill']); //check for username usage $u=$db->query("SELECT * FROM users WHERE username='{$_POST['username']}' and userid != {$_POST['userid']}"); if($db->num_rows($u) != 0) { print "That username is in use, choose another."; print " [url='admin.php?action=edituser']> Back[/url]"; $h->endpage(); exit; } $oq=$db->query("SELECT * FROM users WHERE userid={$_POST['userid']}"); $rm=$db->fetch_row($oq); $will=($rm['will'] > $maxwill) ? $maxwill: $rm['will']; $energy=10+$_POST['level']*2; $nerve=3+$_POST['level']*2; $hp=50+$_POST['level']*50; $db->query("UPDATE users SET username='{$_POST['username']}', level={$_POST['level']}, money={$_POST['money']}, crystals={$_POST['crystals']}, energy=$energy, brave=$nerve, maxbrave=$nerve, maxenergy=$energy, hp=$hp, maxhp=$hp, hospital={$_POST['hospital']}, jail={$_POST['jail']}, duties='{$_POST['duties']}', staffnotes='{$_POST['staffnotes']}', mailban={$_POST['mailban']}, mb_reason='{$_POST['mb_reason']}', forumban={$_POST['forumban']}, fb_reason='{$_POST['fb_reason']}', hospreason='{$_POST['hospreason']}', jail_reason='{$_POST['jail_reason']}', login_name='{$_POST['login_name']}', will=$will, maxwill=$maxwill WHERE userid={$_POST['userid']}"); $db->query("UPDATE userstats SET strength={$_POST['strength']}, agility={$_POST['agility']}, guard={$_POST['guard']}, labour={$_POST['labour']}, IQ={$_POST['IQ']} WHERE userid={$_POST['userid']}"); stafflog_add("Edited user {$_POST['username']} [{$_POST['userid']}]"); print "User edited...."; } } function deluser() { global $ir,$c,$h,$userid,$db; if($ir['user_level'] != 2) { die("403"); } $undeletable = array('1','2'); // add more IDs here, such as NPCs switch ($_GET['step']) { default: echo "<h3>Deleteing User</h3> Here you can delete a user. <form action='staff_users.php?action=deluser&step=2' method='post'> User: ".user_dropdown($c,'user')." <input type='submit' value='Delete User' /></form> OR enter a user ID to Delete: <form action='staff_users.php?action=deluser&step=2' method='post'> User: <input type='text' name='user' value='0' /> <input type='submit' value='Delete User' /></form>"; break; case 2: $target = $_POST['user']; if (!is_numeric($target)) exit; if (in_array($target,$undeletable)) { die('You cannot delete this person.'); } $d=$db->query("SELECT username FROM users WHERE userid='$target'"); $itemi=$db->fetch_row($d); print "<h3>Confirm</h3> Delete user ".$itemi["username"]."? <form action='staff_users.php?action=deluser&step=3' method='post'> <input type='hidden' name='userid' value='$target' /> <input type='submit' name='yesorno' value='Yes' /> <input type='submit' name='yesorno' value='No' onclick=\"window.location='staff_users.php?action=deluser';\" /></form>"; break; case 3: $target = $_POST['userid']; if (!is_numeric($target)) exit; if (in_array($target,$undeletable)) { die('You cannot delete this person.'); } if($_POST['yesorno']=='No') { die("User not deleted. [url='staff_users.php?action=deluser']>Back to main Delete Users page.[/url]"); } if ($_POST['yesorno'] != ("No" || "Yes")) die('Eh'); $d=$db->query("SELECT username FROM users WHERE userid='$target'"); $itemi=$db->fetch_row($d); $db->query("DELETE FROM users WHERE userid='$target'"); $db->query("DELETE FROM userstats WHERE userid='$target'"); $db->query("DELETE FROM inventory WHERE inv_userid='$target'"); $db->query("DELETE FROM fedjail WHERE fed_userid='$target'"); echo "User {$itemi['username']} Deleted. [url='staff_users.php?action=deluser']>Back to main Delete Users page.[/url]"; stafflog_add("Deleted User {$itemi['username']} [{$_POST['userid']}]"); break; } } function inv_user_begin() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } print "<h3>Viewing User Inventory</h3> You may browse this user's inventory. <form action='staff_users.php?action=invuser' method='post'> User: ".user_dropdown($c,'user')." <input type='submit' value='View Inventory' /></form>"; } function inv_user_view() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } $d=$db->query("SELECT username FROM users WHERE userid='{$_POST['user']}'"); $un=$db->fetch_single($d); $inv=$db->query("SELECT iv.*,i.*,it.* FROM inventory iv LEFT JOIN items i ON iv.inv_itemid=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE iv.inv_userid={$_POST['user']}"); if ($db->num_rows($inv) == 0) { print "[b]This person has no items![/b]"; } else { print "[b]Their items are listed below.[/b] <table width=100%><tr style='background-color:gray;'><th>Item</th><th>Sell Value</th><th>Total Sell Value</th><th>Links</th></tr>"; while($i=$db->fetch_row($inv)) { print "<tr><td>{$i['itmname']}"; if ($i['inv_qty'] > 1) { print " x{$i['inv_qty']}"; } print "</td><td>\${$i['itmsellprice']}</td><td>"; print "$".($i['itmsellprice']*$i['inv_qty']); print "</td><td>[[url='staff_users.php?action=deleinv&ID={$i[']Delete[/url]]"; print "</td></tr>"; } print "</table>"; } stafflog_add("Viewed user {$un} [{$_POST['user']}] inventory"); } function inv_delete() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } $db->query("DELETE FROM inventory WHERE inv_id={$_GET['ID']}"); print "Item deleted from inventory."; stafflog_add("Deleted inventory ID {$_GET['ID']}"); } function credit_user_form() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } print "<h3>Crediting User</h3> You can give a user money/crystals. <form action='staff_users.php?action=creditsub' method='post'> User: ".user_dropdown($c,'user')." Money: <input type='text' name='money' /> Crystals: <input type='text' name='crystals' /> <input type='submit' value='Credit User' /></form>"; } function credit_user_submit() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } $_POST['money'] = (float) $_POST['money']; $_POST['crystals'] = (float) $_POST['crystals']; $db->query("UPDATE users u SET money=money+{$_POST['money']}, crystals=crystals+{$_POST['crystals']} WHERE u.userid={$_POST['user']}"); print "User credited."; $d=$db->query("SELECT username FROM users WHERE userid='{$_POST['user']}'"); $un=$db->fetch_single($d); stafflog_add("Credited $un [{$_POST['user']}] \${$_POST['money']} and/or {$_POST['crystals']} crystals."); } function mcredit_user_form() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 2) { die("403"); } print "<h3>Mass Payment</h3> You can give all users money/crystals. <form action='staff_users.php?action=masscreditsub' method='post'> Money: <input type='text' name='money' /> Crystals: <input type='text' name='crystals' /> <input type='submit' value='Credit User' /></form>"; } function mcredit_user_submit() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 2) { die("403"); } $_POST['money'] = (float) $_POST['money']; $_POST['crystals'] = (float) $_POST['crystals']; $db->query("UPDATE users u SET money=money+{$_POST['money']}, crystals=crystals+{$_POST['crystals']}"); print "All Users credited. Click [url='staff.php?action=announce']here to add an announcement[/url] or [url='staff_special.php?action=massmailer']here to send a mass mail[/url] explaining why."; stafflog_add("Credited all users \${$_POST['money']} and/or {$_POST['crystals']} crystals."); } function reports_view() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } print "<h3>Player Reports</h3> <table width=80%><tr style='background:gray'><th>Reporter</th> <th>Offender</th> <th>What they did</th> <th> </th> </tr>"; $q=$db->query("SELECT pr.*,u1.username as reporter, u2.username as offender FROM preports pr LEFT JOIN users u1 ON u1.userid=pr.prREPORTER LEFT JOIN users u2 ON u2.userid=pr.prREPORTED ORDER BY pr.prID DESC"); while($r=$db->fetch_row($q)) { print "\n<tr> <td>[url='viewuser.php?u={$r[']{$r['reporter']}[/url] [{$r['prREPORTER']}]</td> <td>[url='viewuser.php?u={$r[']{$r['offender']}[/url] [{$r['prREPORTED']}]</td> <td>{$r['prTEXT']}</td> <td>[url='staff_users.php?action=repclear&ID={$r[']Clear[/url]</td> </tr>"; } print "</table>"; } function forcelogout() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 2) { die("403"); } $_POST['userid'] = abs((float) $_POST['userid']); if($_POST['userid']) { $db->query("UPDATE users SET force_logout=1 WHERE userid={$_POST['userid']}"); print "User ID {$_POST['userid']} successfully forced to logout."; stafflog_add("Forced User ID {$_POST['userid']} to logout"); } else { print "<h3>Force User Logout</h3><hr /> The user will be automatically logged out next time he/she makes a hit to the site.<form action='staff_users.php?action=forcelogout' method='post'> User: ".user_dropdown($c, 'userid')." <input type='submit' value='Force User to Logout' /></form>"; } } function report_clear() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } $_GET['ID'] = abs((float) $_GET['ID']); stafflog_add("Cleared player report ID {$_GET['ID']}"); $db->query("DELETE FROM preports WHERE prID={$_GET['ID']}"); print "Report cleared and deleted! [url='staff_users.php?action=reportsview']> Back[/url]"; } $h->endpage(); ?> Then go to Phpmyadmin users table go on money then chnage it from int to BIGINT Thanks hope it works
-
Re: honourexchange.php
-
Re: honourexchange.php Nope still not working
-
Hey i have a error on honourexchange.php v2 file thnx <?php include "globals.php"; if(!$_GET['spend']) { print "Welcome to the Honor Award Exchange Center! You have {$ir['honor']} Honor Awards. What would you like to spend your Honor Awards on? IQ - 100 IQ per Honor Award Trade for Labour Points - 3,000 Labour Points per Honor Award Trade for Defense - 3,000 Defense per Honor Award Trade for Agility - 3,000 Speed per Honor Award Trade for Strength - 3,000 strength per Honor Award Money - \$2,000,000 per Honor Award "; } else if($_GET['spend'] == 'IQ') { print "Type in the amount of Honor Awards you want to swap for IQ. You have {$ir['honor']} Honor Awards. One Honor Award = 100 IQ.<form action='HonorExchange.php?spend=IQ2' method='post'><input type='text' name='honor' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'IQ2') { $_POST['honor']=(int) $_POST['honor']; if($_POST['honor'] <= 0 || $_POST['honor'] > $ir['honor']) { print "Error, you either do not have enough Honor Awards or did not fill out the form. Back"; } else { $iqgain=$_POST['honor']*100; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=abs((int)($_POST['honor'])); mysql_query("UPDATE users SET honor=honor-{$_POST['honor']} WHERE userid=$userid",$c); mysql_query("UPDATE userstats SET IQ=IQ+$iqgain WHERE userid=$userid",$c); print "You traded {$_POST['honor']} Honor Awards for $iqgain IQ."; } } else if($_GET['spend'] == 'labour3') { print "Type in the amount of Honor Awards you want to swap for labour points. You have {$ir['honor']} Honor Awards. One Honor Award = 300,000 labour points.<form action='HonorExchange.php?spend=labour4' method='post'><input type='text' name='honor' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'labour4') { $_POST['honor']=(int) $_POST['honor']; if($_POST['honor'] <= 0 || $_POST['honor'] > $ir['honor']) { print "Error, you either do not have enough Honor Awards or did not fill out the form. Back"; } else { $labourgain=$_POST['honor']*3000; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=abs((int)($_POST['honor'])); mysql_query("UPDATE users SET honor=honor-{$_POST['honor']} WHERE userid=$userid",$c); mysql_query("UPDATE userstats SET labour=labour+$labourgain WHERE userid=$userid",$c); print "You traded {$_POST['honor']} Honor Awards for $labourgain labour points."; } } else if($_GET['spend'] == 'guard3') { print "Type in the amount of Honor Awards you want to swap for Defense. You have {$ir['honor']} Honor Awards. One Honor Award = 3,000 Defense.<form action='HonorExchange.php?spend=guard4' method='post'><input type='text' name='honor' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'guard4') { $_POST['honor']=(int) $_POST['honor']; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=mny_stripfmt($_POST['honor'], ENT_QUOTES); $_POST['honor']=abs((int)($_POST['honor'])); if($_POST['honor'] <= 0 || $_POST['honor'] > $ir['honor']) { print "Error, you either do not have enough Honor Awards or did not fill out the form. Back"; } else { $guardgain=$_POST['honor']*3000; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=abs((int)($_POST['honor'])); mysql_query("UPDATE users SET honor=honor-{$_POST['honor']} WHERE userid=$userid",$c); mysql_query("UPDATE userstats SET guard=guard+$guardgain WHERE userid=$userid",$c); print "You traded {$_POST['honor']} Honor Awards for $guardgain Defense."; } } else if($_GET['spend'] == 'agility3') { print "Type in the amount of Honor Awards you want to swap for Agility. You have {$ir['honor']} Honor Awards. One Honor Award = 3,000 Agility.<form action='HonorExchange.php?spend=agility4' method='post'><input type='text' name='honor' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'agility4') { $_POST['honor']=(int) $_POST['honor']; if($_POST['honor'] <= 0 || $_POST['honor'] > $ir['honor']) { print "Error, you either do not have enough Honor Awards or did not fill out the form. Back"; } else { $agilitygain=$_POST['honor']*3000; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=abs((int)($_POST['honor'])); mysql_query("UPDATE users SET honor=honor-{$_POST['honor']} WHERE userid=$userid",$c); mysql_query("UPDATE userstats SET agility=agility+$agilitygain WHERE userid=$userid",$c); print "You traded {$_POST['honor']} Honor Awards for $agilitygain Agility."; } } else if($_GET['spend'] == 'strength3') { print "Type in the amount of Honor Awards you want to swap for Strength. You have {$ir['honor']} Honor Awards. One Honor Award = 3,000 Strength.<form action='HonorExchange.php?spend=strength4' method='post'><input type='text' name='honor' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'strength4') { $_POST['honor']=(int) $_POST['honor']; if($_POST['honor'] <= 0 || $_POST['honor'] > $ir['honor']) { print "Error, you either do not have enough Honor Awards or did not fill out the form. Back"; } else { $strengthgain=$_POST['honor']*3000; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=abs((int)($_POST['honor'])); mysql_query("UPDATE users SET honor=honor-{$_POST['honor']} WHERE userid=$userid",$c); mysql_query("UPDATE userstats SET strength=strength+$strengthgain WHERE userid=$userid",$c); print "You traded {$_POST['honor']} Honor Awards for $strengthgain Strength."; } } else if($_GET['spend'] == 'money') { print "Type in the amount of Honor Awards you want to swap for \$\$\$. You have {$ir['honor']} Honor Awards. One Honor Award = \$2,000,000.<form action='HonorExchange.php?spend=money2' method='post'><input type='text' name='honor' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'money2') { $_POST['honor']=(int) $_POST['honor']; if($_POST['honor'] <= 0 || $_POST['honor'] > $ir['honor']) { print "Error, you either do not have enough Honor Awards or did not fill out the form. Back"; } else { $iqgain=$_POST['honor']*2000000; $_POST['honor']=strip_tags($_POST['honor']); $_POST['honor']=abs((int)($_POST['honor'])); $_POST['money']=strip_tags($_POST['money']); $_POST['money']=abs($_POST['money']); mysql_query("UPDATE users SET honor=honor-{$_POST['honor']},money=money+$iqgain WHERE userid=$userid",$c); print "You traded {$_POST['honor']} Honor Awards for \$$iqgain."; } } $h->endpage(); ?> error Fatal error: Call to undefined function mny_stripfmt() in /home/lilblow/public_html/HonorExchange.php on line 35 error Fatal error: Call to undefined function mny_stripfmt() in /home/lilblow/public_html/HonorExchange.php on line 60 error Fatal error: Call to undefined function mny_stripfmt() in /home/lilblow/public_html/HonorExchange.php on line 78 Fatal error: Call to undefined function mny_stripfmt() in /home/lilblow/public_html/HonorExchange.php on line 116 Fatal error: Call to undefined function mny_stripfmt() in /home/lilblow/public_html/HonorExchange.php on line 143 Fatal error: Call to undefined function mny_stripfmt() in /home/lilblow/public_html/HonorExchange.php on line 170 sorry its gt all them errors
-
Hey when i try to delete business from manage-business.php owner panel of my business i click delete yes then nothing happens it just stays on that page it doesht load oh anytihng thnx <?php include "globals.php"; $bq=mysql_query("SELECT * FROM businesses WHERE bID={$ir['business']}",$c); $bdata=mysql_fetch_array($bq); if($ir['business']== 0) { die("You are not in a business."); } if($bdata['bOWNER'] != $userid) { die("You dont own this business!"); } switch($_GET['change']) { case "name": name(); break; case "bank": bank(); break; case "msgs": msgs(); break; case "pday": pday(); break; case "mmail": mmail(); break; case "logo": logo(); break; case "flm": flm(); break; case "elm": elm(); break; case "prov": prov(); break; case "apps": member_apps(); break; case "kick": kick(); break; case "members": members_list(); break; case "delete": delete(); break; default: index(); break; } function index() { global $ir,$c,$userid,$h,$bdata; print "<center><font color='green'><h2>[b]Welcome to your managers panel for {$bdata['bNAME']}.[/b]</h2></font></center> <center><table width=75% border=1><tr background='header.jpg'><th>Part of business</th><th>Manage?</th></tr> <tr><td>Name</td><td>[url='manage-business.php?change=name']Change[/url]</td></tr> <tr><td>Applications</td><td>[url='manage-business.php?change=apps']Change[/url]</td></tr> <tr><td>Members</td><td>[url='manage-business.php?change=members']Change[/url]</td></tr> <tr><td>Bank</td><td>[url='manage-business.php?change=bank']Manage[/url]</td></tr> <tr><td>Messages</td><td>[url='manage-business.php?change=msgs']Change[/url]</td></tr> <tr><td>Payment Day</td><td>[url='manage-business.php?change=pday']Change[/url]</td></tr> <tr><td>Mass Mail</td><td>[url='manage-business.php?change=mmail']Do[/url]</td></tr> <tr><td>Logo</td><td>[url='manage-business.php?change=logo']Change[/url]</td></tr> <tr><td>Friends</td><td>[url='manage-business.php?change=flm']Manage[/url]</td></tr> <tr><td>Enemies</td><td>[url='manage-business.php?change=elm']Manage[/url]</td></tr> <tr><td>Profit</td><td>[url='manage-business.php?change=prov']View[/url]</td></tr> <tr><td>Delete Business</td><td>[url='manage-business.php?change=delete']Delete[/url]</td></tr> </table></center>"; } function name() { global $ir,$c,$userid,$h,$bdata; if($_POST['newname']) { mysql_query("UPDATE businesses SET bNAME='{$_POST['newname']}',bDESCRIPTION='{$_POST['description']}' WHERE bID={$bdata['bID']}",$c); print "Name and Description Changed [url='manage-business.php']>Back[/url] "; exit; } else { print "[b]Enter your new business name / description[/b] <form action='manage-business.php?change=name' method='post'> Name: <input type='text' name='newname'> Description : <textarea name='description' cols=30 rows=8>{$bdata['bDESCRIPTION']}</textarea> <input type='submit' value='Change'></form>"; } } function bank() { global $ir,$c,$userid,$h,$bdata; if($_POST['user']) { $ck=mysql_query("SELECT * FROM users WHERE business={$ir['business']} AND userid={$_POST['user']}",$c); if(mysql_num_rows($ck)== 0) { print "ERROR! Either this user does not exist or they are not in your business."; exit; } $user=(int) $_POST['user']; $cash=(int) $_POST['cash']; $crys=(int) $_POST['crystals']; mysql_query("UPDATE users SET money=money+$cash, crystals=crystals+$crys WHERE userid=$user",$c); mysql_query("UPDATE businesses SET bBANKMONEY=bBANKMONEY-$cash, bBANKCRYSTALS=bBANKCRYSTALS-$crys WHERE bID={$bdata['bID']}",$c); print "\$$cash and $crys Crystals Given to User : $user. [url='manage-business.php']>Back[/url] "; } else { print "<center>Your Business bank currently has... [b]\${$bdata['bBANKMONEY']}[/b] Cash, [b]{$bdata['bBANKCRYSTALS']}[/b] Crystals. <hr /> <form action='manage-business.php?change=bank' method='post'> [b]Give Cash/Crystals to Userid :[/b] <input type='text' name='user' value='$userid'> <table width=75% border=0> <tr><td height=10 width=50% align=center valign=top background='header.jpg'> Bank Money: <input type='text' name='cash' value='{$bdata['bBANKMONEY']}'> </td><td height=10 width=50% align=center valign=top background='header.jpg'> Bank Crystals: <input type='text' name='crystals' value='{$bdata['bBANKCRYSTALS']}'> </td></tr></table> </form> </center> "; } } function msgs() { global $ir,$c,$userid,$h,$bdata; if($_POST['newmsg']) { mysql_query("UPDATE businesses SET bMESSAGES='{$_POST['newmsg']}' WHERE bID='{$bdata['bID']}'",$c); } else { print "Here You May Change Your Business Message. <form action='manage-business.php?change=msgs' method='post'> Message :<textarea name='newmsg' cols=30 rows=8>{$bdata['bMESSAGES']}</textarea> <input type='submit' value='Change!'> </form>"; } } function pday() { global $ir,$c,$userid,$h,$bdata; if($_POST['submq']) { if($_POST['monday']== 'Yes') { $monday="<font color=green>[b]Yes[/b]</font>"; } else { $monday="<font color=red>[b]No[/b]</font>"; } if($_POST['tuesday']== 'Yes') { $tuesday="<font color=green>[b]Yes[/b]</font>"; } else { $tuesday="<font color=red>[b]No[/b]</font>"; } if($_POST['wednesday']== 'Yes') { $wednesday="<font color=green>[b]Yes[/b]</font>"; } else { $wednesday="<font color=red>[b]No[/b]</font>"; } if($_POST['thursday']== 'Yes') { $thursday="<font color=green>[b]Yes[/b]</font>"; } else { $thursday="<font color=red>[b]No[/b]</font>"; } if($_POST['friday']== 'Yes') { $friday="<font color=green>[b]Yes[/b]</font>"; } else { $friday="<font color=red>[b]No[/b]</font>"; } if($_POST['saturday']== 'Yes') { $saturday="<font color=green>[b]Yes[/b]</font>"; } else { $saturday="<font color=red>[b]No[/b]</font>"; } if($_POST['sunday']== 'Yes') { $sunday="<font color=green>[b]Yes[/b]</font>"; } else { $sunday="<font color=red>[b]No[/b]</font>"; } $totaltext="[b]Days of Payments[/b] Monday : $monday Tuesday : $tuesday Wednesday : $wednesday Thursday : $thursday Friday : $friday Saturday : $saturday Sunday : $sunday "; mysql_query("UPDATE businesses SET bPDAY='$totaltext' WHERE bID='{$bdata['bID']}'",$c); print "Days Of Payments is now as follows <hr /> [b]Days of Payments[/b] Monday : $monday Tuesday : $tuesday Wednesday : $wednesday Thursday : $thursday Friday : $friday Saturday : $saturday Sunday : $sunday <hr />"; } else { print "Please tick the days which you want your Payments to be. <form action='manage-business.php?change=pday' method='post'> <input type='hidden' name='submq' value='abc123'> Monday :<input type='checkbox' name='monday' value='Yes'> Tuesday :<input type='checkbox' name='tuesday' value='Yes'> Wednesday :<input type='checkbox' name='wednesday' value='Yes'> Thursday :<input type='checkbox' name='thursday' value='Yes'> Friday :<input type='checkbox' name='friday' value='Yes'> Saturday :<input type='checkbox' name='saturday' value='Yes'> Sunday :<input type='checkbox' name='sunday' value='Yes'> <input type='submit' value='Change'> </form> "; } } function mmail() { global $ir,$c,$userid,$h,$bdata; if($_POST['message']) { $subj="This is a Mass Mail from Your Business..."; $mmq=mysql_query("SELECT * FROM users WHERE business='{$ir['business']}'",$c); while($o=mysql_fetch_array($mmq)) { mysql_query("INSERT INTO mail VALUES('', 0, {$ir['userid']}, {$o['userid']}, unix_timestamp(),'$subj','{$_POST['message']}')",$c); print "Mass mail sent to {$o['username']}. "; } print "Mass Mail Sent!"; } else { $tmq=mysql_query("SELECT * FROM businesses WHERE bID='{$ir['business']}'",$c); $tm=mysql_num_rows($tmq); print "[b]Here you may send a mass mail to your Business.[/b] You have a total of [b]$tm[/b] Members in this Business. <form action='manage-business.php?change=mmail' method='post'> Message :<textarea name='message' cols='30' rows='8'>Dear Members Of The Business, </textarea> <input type='submit' value='Submit'> </form>"; } } function logo() { global $ir,$c,$userid,$h,$bdata; if($_POST['newlogo']) { mysql_query("UPDATE businesses SET bLOGO='{$_POST['newlogo']}' WHERE bID='{$ir['business']}'",$c); print "Logo Successfully Changed! "; } else { print "Please Paste Your Picture URL for Your New Business Logo <form action='manage-business.php?change=logo' method='post'> New Logo: <input type='text' name='newlogo' value='{$bdata['bLOGO']}'> <input type='submit' value='Change Pic'> </form>"; } } function flm() { global $ir,$c,$userid,$h,$bdata; if($_POST['business']) { if($_POST['business'] == $bdata['bID']) { print "You cannot add your own business...Haha!"; exit; } $cq=mysql_query("SELECT * FROM bf WHERE bfFROM={$ir['business']} AND bfTO={$_POST['business']}",$c); if(mysql_num_rows($cq)) { print "You have already added this business."; exit; } mysql_query("INSERT INTO bf VALUES ('{$ir['business']}','{$_POST['business']}')",$c); mysql_query("UPDATE businesses SET bPOPULATION=bPOPULATION+50 WHERE bID={$_POST['business']}",$c); print "You have added a business as your friend.. "; } else { $sb=mysql_query("SELECT * FROM businesses",$c); $rem=mysql_query("SELECT * FROM bf WHERE bfFROM={$ir['business']}",$c); print "Remove an friend <form action='friendremove.php' method='post> Friend (By Business ID) :<select name='fri'>"; while($fo=mysql_fetch_array($rem)) { print "<option value='{$fo['bfTO']}'>{$fo['bfTO']}</option>"; } print "</select> <input type='submit' value='Remove!'> </form> "; print "Add a friend: <form action='manage-business.php?change=flm' method='post'> Business : <select name='business'>"; while($b=mysql_fetch_array($sb)) { print "<option value='{$b['bID']}'>{$b['bNAME']}</option>"; } print "</select> <input type='submit' value='Add'></form> "; } } function elm() { global $ir,$c,$userid,$h,$bdata; if($_POST['business']) { if($_POST['business'] == $bdata['bID']) { print "You cannot add your own business as a Enemy!!"; exit; } $cq=mysql_query("SELECT * FROM be WHERE beFROM={$ir['business']} AND beTO={$_POST['business']}",$c); if(mysql_num_rows($cq)) { print "You have already added this business as a enemy."; exit; } mysql_query("INSERT INTO be VALUES ('{$ir['business']}','{$_POST['business']}')",$c); mysql_query("UPDATE businesses SET bPOPULATION=bPOPULATION-50 WHERE bID={$_POST['business']}",$c); print "You have added a business as your enemy.. "; } else { $sb=mysql_query("SELECT * FROM businesses",$c); $rem=mysql_query("SELECT * FROM be WHERE beFROM={$ir['business']}",$c); print "Remove an enemy <form action='enemyremove.php' method='post> Enemy (By Business ID) :<select name='eny'>"; while($mo=mysql_fetch_array($rem)) { print "<option value='{$mo['beTO']}'>{$mo['beTO']}</option>"; } print "</select> <input type='submit' value='Remove!'> </form> "; print "Add a enemy: <form action='manage-business.php?change=elm' method='post'> Business : <select name='business'>"; while($b=mysql_fetch_array($sb)) { print "<option value='{$b['bID']}'>{$b['bNAME']}</option>"; } print "</select> <input type='submit' value='Add'></form> "; } } function prov() { global $ir,$c,$userid,$h,$bdata; if($_GET['insert']== 'bank') { $profit=(float) $bdata['bPROFIT']; mysql_query("UPDATE businesses SET bBANKMONEY=bBANKMONEY-$profit,bPROFIT='0' WHERE bID='{$ir['business']}'",$c); event_add($ir['userid'],"You emptied the Businesses Profit to the Banks Cash.",$c); } else { $profit=number_format($bdata['bPROFIT']); print "Your business has \$$profit Cash. [url='manage-business.php?change=prov&insert=bank']Add Profit to Business Cash Bank[/url] [url='manage-business.php']>Back[/url] "; } } function members_list() { global $ir,$c,$userid,$bdata; print " <center>[b]<u>[url='manage-business.php?change=add']<font color='red'>Check Applications</font>[/url]</u>[/b]</center> <center><table border=1 width=75%><tr background='header.jpg'><th>User</th><th>Level</th><th>Days In Business</th><th>Action</th></tr>"; $q=mysql_query("SELECT * FROM users WHERE business={$bdata['bID']}",$c); while($r=mysql_fetch_array($q)) { print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']}[/url]</td><td>{$r['level']}</td> <td>{$ir['dib']}</td><td>"; if($bdata['bOWNER'] == $userid || $userid==1) { print "[url='manage-business.php?action=kick&ID={$r[']Kick[/url]"; } else { print " "; } print "</td></tr>"; } print "</table></center> [url='manage-business.php']> Back to your business home[/url]"; } function member_apps() { global $ir,$c,$userid,$bdata,$h; $_GET['bapp'] = abs((int) $_GET['bapp']); if($_GET['bapp']) { $aq=mysql_query("SELECT b.*,u.* FROM bapps b LEFT JOIN users u ON b.bappFROM=u.userid WHERE b.bappID={$_GET['bapp']} AND b.bappBUSINESS={$bdata['bID']}",$c); if (mysql_num_rows($aq)) { $bappdata=mysql_fetch_array($aq); if($_GET['what'] == 'decline') { mysql_query("DELETE FROM bapps WHERE bappID={$_GET['bapp']}",$c); event_add($bappdata['bappFROM'],"Your application to join the {$bdata['bNAME']} Business was declined",$c,'business'); mysql_query("INSERT INTO busevents VALUES ('',{$bdata['bID']},unix_timestamp(),\"[url='viewuser.php?u=$userid']{$ir['username']}[/url] has declined [url='viewuser.php?u={$bappdata[']{$bappdata['username']}[/url]'s application to join the Business.\");",$c); print "You have declined the application by {$bappdata['username']}. [url='manage-business.php?action=apps']> Back[/url]"; } else if ($bappdata['business'] != 0) { print "That person is already in a Business."; $h->endpage(); exit; } mysql_query("DELETE FROM bapps WHERE bappID={$_GET['bapp']}",$c); event_add($bappdata['bappFROM'],"Your application to join the {$bdata['bNAME']} Business was accepted, Congrats!",$c,'business'); mysql_query("INSERT INTO busevents VALUES ('',{$bdata['bID']},unix_timestamp(),\"[url='viewuser.php?u=$userid']{$ir['username']}[/url] has accepted [url='viewuser.php?u={$bappdata[']{$bappdata['username']}[/url]'s application to join the Business.\");",$c); mysql_query("UPDATE users SET business={$bdata['bID']},dib=0 WHERE userid={$bappdata['userid']}",$c); print "You have accepted the application by {$bappdata['username']}. [url='manage-business.php?action=apps']> Back[/url]"; } } print "[b]Applications[/b] <table width=85% border=2><tr background='header.jpg'><th>User</th><th>Level</th><th>Money</th><th>Reason</th> <th>Action</th></tr>"; $q=mysql_query("SELECT b.*,u.* FROM bapps b LEFT JOIN users u ON b.bappFROM=u.userid WHERE b.bappBUSINESS={$bdata['bID']}",$c); while($r=mysql_fetch_array($q)) { print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']} [{$r['userid']}][/url]</td><td>{$r['level']}</td><td>\${$r['money']}</td> <td>{$r['bappTEXT']}</td><td><a href='bapplications.php?action=apps&app={$r['bappID']}&what=accept'> Accept</a> | <a href='bapplications.php?action=apps&app={$r['bappID']}&what=decline'> Decline</a></td></tr>"; } print "</table>"; } function delete() { global $ir,$c,$userid,$h,$bdata; if($_POST['yesorno']== 'yes') { mysql_query("UPDATE users SET business=0 WHERE business={$bdata['bID']}",$c); mysql_query("DELETE FROM businesses WHERE bID={$bdata['bID']}",$c); print "Business deleted. [url='index.php']Home[/url] "; exit; } else { print "Are you 100% sure you want to delete this business <form action='manage-business.php?change=delete' method='post'> <input type='submit' name='yesorno' value='Yes'> </form> <form action='index.php' method='link'><input type='submit' value='No'></form>"; } } $h->endpage(); ?>
-
Re: Crystal bank intrest Hey thanks Killah
-
Hey sorry for my english on my game crystalbank.php mod v2 doest give me 2% intrest the file is <?php include "globals.php"; print "<h3>Crystal Reserve</h3>"; if($ir['cbank']>-1) { switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index(); break; } } else { if(isset($_GET['buy'])) { if($ir['money']>4999999) { print "Congratulations, you bought a crystal reserve account for \$5,000,000! Start using my account"; $db->query("UPDATE users SET money=money-5000000,cbank=0 WHERE userid=$userid"); } else { print "You do not have enough money to open an account. Back to town..."; } } else { print "Open a crystal reserve account today, just \$5,000,000! > Yes, sign me up!"; } } function index() { global $db, $ir,$c,$userid,$h; print "\nYou currently have {$ir['cbank']} in the crystal reserve. At the end of each day, your crystal reserve balance will go up by 2%. <table width='75%' cellspacing=1 class='table'> <tr> <td width='50%'>Deposit Crystals It will cost you 15% of the crystals you deposit, rounded up. The maximum fee is \$3,000.<form action='cbank.php?action=deposit' method='post'> Amount: <input type='text' name='deposit' value='{$ir['crystals']}' /> <input type='submit' value='Deposit' /></form></td> <td> Withdraw Crystals There is no fee on withdrawals.<form action='cbank.php?action=withdraw' method='post'> Amount: <input type='text' name='withdraw' value='{$ir['cbank']}' /> <input type='submit' value='Withdraw' /></form></td> </tr> </table>"; } function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit']=abs((int) $_POST['deposit']); if($_POST['deposit'] > $ir['crystals']) { print "You do not have enough crystals to deposit this amount."; } else { $fee=ceil($_POST['deposit']*15/100); if($fee > 3000) { $fee=3000; } $gain=$_POST['deposit']-$fee; $ir['cbank']+=$gain; $db->query("UPDATE users SET cbank=cbank+$gain, crystals=crystals-{$_POST['deposit']} where userid=$userid"); print "You hand over {$_POST['deposit']} to be deposited, after the fee is taken ($fee), $gain crystals is added to your crystal reserve account. You now have {$ir['cbank']} in the crystal reserve. > Back"; } } function withdraw() { global $db,$ir,$c,$userid,$h; $_POST['withdraw']=abs((int) $_POST['withdraw']); if($_POST['withdraw'] > $ir['cbank']) { print "You do not have enough reserved crystals to withdraw this amount."; } else { $gain=$_POST['withdraw']; $ir['cbank']-=$gain; $db->query("UPDATE users SET cbank=cbank-$gain, crystals=crystals+$gain where userid=$userid"); print "You ask to withdraw $gain, the crystal reserve automated teller spits out your crystals into a little satchel. A robotic arm then picks up the satchel and drops it into your hand. You there hear a robotic voice chime - Have a nice day {$ir['username']} - You now have {$ir['cbank']} crystals in the crystal reserve. > Back"; } } $h->endpage(); ?> Please fix it and put it here thnx
-
Can anyone please tell me how to learn php is lite codes better to start of with for mccode Games wot file is easier to start of with in lite codes thank you
-
Re: [mccode] Advanced Warning System Just f*****g learn how to convert people have posted a tread how to convert if you cant do a simple think that how will you code games
-
If you see this person hawk on your game please ip ban him he cheated on my game and got 9200000000000000000000000 crystals so ip ban him his ip is 90.208.77.75
-
Re: Hospital bug Its ok ghetto fixed it for me thnx to him
-
I Think this is a v2 hospital bug i attacked some one on my game i hospitalized them and i put in hospital too for 500 mins ran out of fight when i hospitalized the, i dident go back oh some thing file <?php include "globals.php"; print "<h3>Hospital</h3> <table width='75%' class=\"table\" border=\"0\" cellspacing=\"1\"><tr bgcolor=gray><th>Name</th> <th>Level</th> <th>Time</th><th>Reason</th></tr>"; $q=$db->query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.hospital > 0 ORDER BY u.hospital DESC",$c); while($r=$db->fetch_row($q)) { print "\n<tr><td>{$r['gangPREFIX']} [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td><td> {$r['level']}</td><td>{$r['hospital']} minutes</td><td>{$r['hospreason']}</td></tr>"; } print "</table>"; $h->endpage(); ?>
-
Re: [v1] New criminal.php layout (FREE) This is for v2 enjoy it <?php include "globals.php"; if($ir['jail']) { print"You cannot do crimes while youre in jail."; $h->endpage(); exit; } if($ir['hospital']) { print"You cannot do crimes while youre in the hospital."; $h->endpage(); exit; }$q=mysql_query("SELECT * FROM crimegroups ORDER by cgORDER ASC",$c); print "[b]Do Crimes[/b] <table width='75%'><tr><th>Crime</th><th>Cost</th><th>Payout</th><th>Do</th></tr>"; while($r=mysql_fetch_array($q)) { print "<tr style='background-color:gray'><td colspan='4'>{$r['cgNAME']}</td></tr>"; $q2=mysql_query("SELECT * FROM crimes WHERE crimeGROUP={$r['cgID']}",$c); while ($r2=mysql_fetch_array($q2)) { print "<tr><td>{$r2['crimeNAME']}</td><td><center>{$r2['crimeBRAVE']} Brave</td><td><center>\${$r2['crimeSUCCESSMUNY']}</center></td><td><center>[url='docrime.php?c={$r2[']Do[/url]</center></td></tr>"; } } $h->endpage(); ?>
-
Re: Php program Wot can i do on wampserver
-
Re: Php program Am learning english
-
Re: Delete :|Why would it be iligel m8 You cant just say iligel stright a way and that doest mean if you use v2 codes on free hosting go on other sites too people wid v2 free host i dont give a shit am not wasting my time buying a proper cpanel and proper domain if i cant code a normal v2 game only so wots the point :|
-
Re: Delete Godhand thnx for ur reply i will try lite to start of my php coding
-
Re: Delete You tell me Why buy a cpanel if you not a fully coder and cant do some stuff once i learn php coding then i will buy .com but now am starting of wid free host to start gettings use to the codes and by testing them on free host instead buying a proper domain happy!!!!!!!!!!!!1 :wink:
-
Re: Delete My site http://gangsta-city.890m.com/login.php
-
Re: Help? pg i cant pm u again till a hour 5 ppmes exseeded wts the lnik to download imageready trial