Jump to content
MakeWebGames

norwayzone

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

norwayzone's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello, I am seeking a mod that will allow rounds on the server. Game ending with a massive war, all players vs all. Last standing man wins the following round. Any code who can make it or have this mod, msg me with a fair price please. :D
  2. Need some design for game, simple and cheap work. Want a nice header for site and nice loggin as well as userfriendly user design. Payment is 50-175 USD depending on quality of the work :) :D
  3. How do I raise the work out limits from 9.9 mill per stat to 99.9 mill? And how do I fix crimes, ((WILL*0.8)/2.5)+(LEVEL/4) ? What else can I use in the crime code???
  4. Hello, I can not understand the stupied sucess rate totally. I never get it to add up, are their any moded versions to make crimes much easier, or can any one show me some egs. of how to make proper crimes ? :)
  5. Re: Freelancer, expert on website design ect. True thats why I am having lots of other things done, rewriting it totally! PS. where do I go on the mccV2 to modify the maximum gym stats?
  6. I plan on spending around 2-4 k USD on unique design for my webpage. I allready annownced on a coder hired in 1-2 months with 5000 $ paycheck for his work on my website as I want big changes on my game. I plan on spending insane amounts and hopefully keep below 10 000 USD. If you got any ideas of a mod just tell me i will see if its good for my game ^^ Ty just email me or mail me here: [email protected] Ps. jobbs are not open til 1-2 months time as i only got 4 k right now for the work :)
  7. Re: City Error, Can not add cities on mccV2!!!! HELP no because i never saw the sign lmaol.. i was looking for a and an if that was missing LOL til i saw that ' was missing on the script ^^ any way ty guys
  8. Re: City Error, Can not add cities on mccV2!!!! HELP Never mind guys I went thro the script my self and found the error at last.... it was missing this : ' thats why it was hard to find!!!!!! xD
  9. Re: City Error, Can not add cities on mccV2!!!! HELP Well I am hoping that I will get the game the way I want it lol.. I need lots done, I want the game turned in to at Networth game and not just simple stats.. :)
  10. Re: City Error, Can not add cities on mccV2!!!! HELP <?php include "sglobals.php"; if($ir['user_level'] > 2) { die("403"); } //This contains city stuffs switch($_GET['action']) { case "addcity": addcity(); break; case "editcity": editcity(); break; case "delcity": delcity(); break; default: print "Error: This script requires an action."; break; } function addcity() { global $db, $ir, $c, $h, $userid; $minlevel=abs((int) $_POST['minlevel']); $name=$_POST['name']; $desc=$_POST['desc']; if($minlevel and $desc and $name) { $q=$db->query("SELECT * FROM cities WHERE cityname='{$name}'"); if($db->num_rows($q)) { print "Sorry, you cannot have two cities with the same name."; $h->endpage(); exit; } $db->query("INSERT INTO cities VALUES(NULL, '$name', '$desc', '$minlevel')"); print "City {$name} added to the game."; stafflog_add("Created City $name"); } else { print "<h3>Add City</h3><hr /> <form action='staff_cities.php?action=addcity' method='post'> Name: <input type='text' name='name' /> Description: <input type='text' name='desc' /> Minimum Level: <input type='text' name=minlevel' />   <input type='submit' value='Add City' /></form>"; } } function editcity() { global $db, $ir, $c, $h, $userid; switch($_POST['step']) { case "2": $minlevel=abs((int) $_POST['minlevel']); $name=$_POST['name']; $desc=$_POST['desc']; $q=$db->query("SELECT * FROM cities WHERE cityname='{$name}' AND cityid!={$_POST['id']}"); if($db->num_rows($q)) { print "Sorry, you cannot have two cities with the same name."; $h->endpage(); exit; } $name=$_POST['name']; $q=$db->query("SELECT * FROM cities WHERE cityid={$_POST['id']}"); $old=$db->fetch_row($q); $db->query("UPDATE cities SET cityminlevel=$minlevel, citydesc='$desc', cityname='$name' WHERE cityid={$_POST['id']}"); print "City $name was edited successfully."; stafflog_add("Edited city $name"); break; case "1": $q=$db->query("SELECT * FROM cities WHERE cityid={$_POST['city']}"); $old=$db->fetch_row($q); print "<h3>Editing a City</h3><hr /> <form action='staff_cities.php?action=editcity' method='post'> <input type='hidden' name='step' value='2' /> <input type='hidden' name='id' value='{$_POST['city']}' /> Name: <input type='text' name='name' value='{$old['cityname']}' /> Description: <input type='text' name='desc' value='{$old['citydesc']}' /> Minimum Level: <input type='text' name='minlevel' value='{$old['cityminlevel']}' /> <input type='submit' value='Edit City' /></form>"; break; default: print "<h3>Editing a City</h3><hr /> <form action='staff_cities.php?action=editcity' method='post'> <input type='hidden' name='step' value='1' /> City: ".location_dropdown($c, "city")." <input type='submit' value='Edit City' /></form>"; break; } } function delcity() { global $db,$ir,$c,$h,$userid; if($_POST['city']) { $q=$db->query("SELECT * FROM cities WHERE cityid={$_POST['city']}"); $old=$db->fetch_row($q); if($old['cityid']==1) { die("This city cannot be deleted."); } $db->query("UPDATE users SET location=1 WHERE location={$old['cityid']}"); $db->query("UPDATE shops SET shopLOCATION=1 WHERE shopLOCATION={$old['cityid']}"); $db->query("DELETE FROM cities WHERE cityid={$old['cityid']}"); print "City {$old['cityname']} deleted."; stafflog_add("Deleted city {$old['cityname']}"); } else { print "<h3>Delete City</h3><hr /> Deleting a city is permanent - be sure. Any users and shops that are currently in the city you delete will be moved to the default city (ID 1).<form action='staff_cities.php?action=delcity' method='post'> City: ".location_dropdown($c, "city")." <input type='submit' value='Delete City' /></form>"; } } function report_clear() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] > 3) { die("403"); } $_GET['ID'] = abs((int) $_GET['ID']); stafflog_add("Cleared player report ID {$_GET['ID']}"); $db->query("DELETE FROM preports WHERE prID={$_GET['ID']}"); print "Report cleared and deleted! > Back"; } $h->endpage(); ?>
  11. Re: City Error, Can not add cities on mccV2!!!! HELP LOL NO I mean cities! /staff_cities.php?action=addcity
  12. Re: City Error, Can not add cities on mccV2!!!! HELP Please tell me where I need to edit on staff_shops.php ??
  13. Re: City Error, Can not add cities on mccV2!!!! HELP And I am also looking for a freelancer, a profesional coder who can secure and edit my site later on. I plan on spending 5 000 $ .
  14. I just reinstalled to find out that its the game theirs something wrong with not the instalation! And no their is no code missing, I want money back or some one to come and look at it. I click add city and the page flashes as if i pressed F5 refresh!
  15. Re: Help V2 Crime error Yes I got that, every thing works beside add cities I do not understand it.. coding looks fine!
×
×
  • Create New...