
Strats
Members-
Posts
649 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Strats
-
Re: [REVIEW REQUEST] wrestling-wars.com Update : Crimes are now Side jobs and are complete :)
-
Re: Limit Exp For Levels Will it only be attack that needs to be changed? Or attack leave ect I cannot post my attack up as It's a paid mod I will Pm you
-
Re: For auction: Login page, just the .psd I like this, good work
-
Re: Limit Exp For Levels Thanks I will look in to this
-
Re: Limit Exp For Levels It's good if it can be done. :-)
-
I know it is possible to limit the amount of Exp players get when attacking. Can it be done so that Level 1 - 20 Can only get the max amount of exp being 25% Level 21 - 100 Can only get up to 15% Level 101 - 200 Can only get 10% And then level 201 and above can only get up to 7% Exp If anyone can help me I don't mind paying for this to be done
-
Re: [REVIEW REQUEST] wrestling-wars.com Cronus Email Verification lol I will take it out until I find something that works. If you are interested in playing mail me and I will sort it out for you
-
Re: [REVIEW REQUEST] wrestling-wars.com Yea I like that, I have been working something like it
-
Re: [REVIEW REQUEST] wrestling-wars.com I am working on the crimes today :) And the streets are alot better than the free ones. Every new location gives you new chances to gain different things. Thank you for your feedback. And I am aware of some of the layout things
-
Re: [REVIEW REQUEST] wrestling-wars.com a_bertrand, Thank you for the tidy up lol And yes later I will put the description back up I was just working on some pages of the layout.
-
Title: wrestling-wars Site URL: http://wrestling-wars.com/ Site description: (AB:) description is missing, but I would suppose it's a wrestling game based on McCode. Pre-made accounts: test - test 2nd pre-made account: demo - demo I have been working on the game for a few months now, I opened it for a handful of people to join and play so I could get idea's and feedback from them. Now I am wanting to get my game out there and advertise. Before I do this I would like some feed back on it. Good or bad. Tips and ideas are very appreciated. If anyone spots a bug please mail me in game. To take a look you may use the test account or demo P.S I am aware I have no login banner. I am waiting on something.
-
Re: [mccode v2] Simple Job Specials I have asked before, can someone help me out with my jobs.php please I can't get the code in the right place whenever I do it it gets messy. Here's the code I need : $js=$db->query("SELECT * FROM jobspecials WHERE jsJOB={$ir['job']} ORDER BY jsID ASC;",$c); print "[b]Specials unlocked:[/b] <form action='specials.php' method='post'> <table width=80% cellspacing=1 class='table'> <tr> <th><font color=white>Reward</font></th> <th><font color=white>Cost</font></th> <th><font color=white>Take</font></th></tr>"; if($db->num_rows($js) == 0) { print "<tr class='row$current_row'><td colspan=3>This Job has no Speacials</td></tr>"; $current_row = 1 - $current_row; } while($sp=$db->fetch_row($js)) { print "<tr class='row$current_row'><td><font color=black>{$sp['jsNAME']}</td><td><font color=#FF0000>-{$sp['jsCOST']} Job Points</font></td><td><center><input type='radio' name='ID' value='{$sp['jsID']}' /></td></tr>"; $current_row = 1 - $current_row; } print "<tr> <td colspan=3><div align=center><input type='submit' value='Purchase'></div></td> </tr></table></form>"; And here is my jobs.php <?php $jobquery=1; include "globals.php"; $_GET['interview'] = abs((int) $_GET['interview']); if(!$ir['job']) { if(!$_GET['interview']) { print "You do not yet have a job. A list of jobs is available below. "; $q=$db->query("SELECT * FROM jobs"); while($r=$db->fetch_row($q)) { print "> {$r['jNAME']} - {$r['jDESC']} - [url='job.php?interview={$r[']Go to interview[/url] "; } } else { $q=$db->query("SELECT j.*,jr.* FROM jobs j LEFT JOIN jobranks jr ON j.jFIRST = jr.jrID WHERE j.jID={$_GET['interview']}"); $r=$db->fetch_row($q); print "{$r['jOWNER']}: So {$ir['username']}, you were looking for a job with us? {$ir['username']}: Yes please! "; if($ir['strength'] >= $r['jrSTRN'] && $ir['labour'] >= $r['jrLABOURN'] && $ir['IQ'] >= $r['jrIQN']) { $db->query("UPDATE users SET job={$_GET['interview']},jobrank={$r['jrID']} WHERE userid=$userid;"); print "{$r['jOWNER']}: Okay {$ir['username']}, we're good to go, see you tomorrow. {$ir['username']}: Thanks! [url='job.php']:)[/url]"; } else { print "{$r['jOWNER']}: Sorry {$ir['username']}, you're not far enough in the game to work in this job. You'll need:"; if($ir['strength'] < $r['jrSTRN']) { $s=$r['jrSTRN']-$ir['strength']; print " $s more strength, "; } if($ir['labour'] < $r['jrLABOURN']) { $s=$r['jrLABOURN']-$ir['labour']; print " $s more labour, "; } if($ir['IQ'] < $r['jrIQN']) { $s=$r['jrIQN']-$ir['IQ']; print " $s more IQ, "; } print "before you'll be able to work here! [url='index.php']:'([/url]"; } } } else { switch($_GET['action']) { case 'quit': quit_job(); break; case 'promote': job_promote(); break; default: job_index(); break; } } function job_index() { global $db, $ir,$c,$userid,$h; print "<h3>Your Job</h3> You currently work in the {$ir['jNAME']}! You receive \${$ir['jrPAY']} each day at 5pm! You also receive {$ir['jrIQG']} IQ, {$ir['jrSTRG']} strength, and {$ir['jrLABOURG']} labour! <table width=50% cellspacing=1 class='table'><tr><td>Strength: {$ir['strength']}</td><td>IQ: {$ir['IQ']}</td></tr><tr><td>Labour: {$ir['labour']}</td><td>Job Rank: {$ir['jrNAME']}</td></tr></table> [b]Job Ranks[/b] <table width=75% cellspacing=1 class='table'><tr style='background:gray'><th>Title</th><th>Pay</th><th>Strength Reqd</th><th>IQ Reqd</th><th>Labour Reqd</th></tr>"; $q=$db->query("SELECT * FROM jobranks WHERE jrJOB={$ir['job']} ORDER BY jrPAY ASC;"); while($r=$db->fetch_row($q)) { print "<tr><td>{$r['jrNAME']}</td><td>\${$r['jrPAY']}</td><td>{$r['jrSTRN']}</td><td>{$r['jrIQN']}</td><td>{$r['jrLABOURN']}</td></tr>"; } print "</table> [url='job.php?action=promote']> Try To Get Promoted[/url] [url='job.php?action=quit']> Quit[/url]"; } function job_promote() { global $db,$ir,$c,$userid,$h; $q=$db->query("SELECT * FROM jobranks WHERE jrPAY > {$ir['jrPAY']} AND jrSTRN <= {$ir['strength']} AND jrLABOURN <= {$ir['labour']} AND jrIQN <= {$ir['IQ']} AND jrJOB = {$ir['job']} ORDER BY jrPAY DESC LIMIT 1"); if($db->num_rows($q) == 0) { print "Sorry, you cannot be promoted at this time. [url='job.php']> Back[/url]"; } else { $r=$db->fetch_row($q); $db->query("UPDATE users SET jobrank={$r['jrID']} WHERE userid=$userid"); print "Congrats, you have been promoted to {$r['jrNAME']} [url='job.php']> Back[/url]"; } } function quit_job() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET job=0,jobrank=0 WHERE userid=$userid"); print "You have quit your job! [url='job.php']> Back[/url]"; } $h->endpage(); ?> If someone can do it can you please let me know where it was meant to go. Thanks
-
Re: [Request V2] Advanced Jobs Not come across it, Thank I will have a bit more of a look
-
Re: [v2] Explore ReCode I like it, it's different from the way other explore page are set up
-
I have only seen one moderation for jobs and It is not V2 Has anyone got any better jobs they are willing to sell?
-
Re: [v2] Explore ReCode Not a problem - you were missing <td valign=top>"; Yea I saw after
-
mccode-v1 Stock Market. Working + Secured
Strats replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured Just added this and I really like it. So +1! -
Re: [v2] Explore ReCode Thanks :)
-
Re: [mccode v2] Weather Gym [$1.00] Everything is as it should be. Blue devil can you please send me the last updated version of this? [email protected]
-
Web 2.0 Style Login/Register/Forgot password + more,
Strats replied to Mr walker's topic in Paid Modifications
Re: Web 2.0 Style Login/Register/Forgot password + more, Looks nice, good luck -
Re: [mccode v2] Weather Gym [$1.00] I put the test account to level 10 now lol
-
Re: [mccode v2] Weather Gym [$1.00] http://wrestling-wars.com You can use the test account to have a look test-test When I click check weather it no longer shows me the weather
-
Re: [v2] Explore ReCode I have tried to use this for my game but can't seem to get Mysterious section in the right place. All the other sections are fine but that sections goes to the top of the page. here is the file <?php include "globals.php"; $tresder=(int) rand(100,999); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in jail or hospital."); } $title = array('mp' => 'Market Place', /*market place*/ 'smm' => 'Serious Money Makers', /*Serious money makers*/ 'ds' => 'Dark Side', /*Dark Side*/ 's' => 'Statistics Area', /*Stats Area*/ 'm' => 'Mysterious', /*Mysterious*/ 'mm' => 'Welcome to the town', /*Main Message*/ 'lo' => 'Locker Room', /*Locker Room*/ ); print "[b]"; print $title['mm']; print ".[/b] <table width=75%><tr height=100><td valign=top>"; print $title['mp']; print " [url='shops.php']Shops[/url] [url='itemmarket.php']Item Market[/url] [url='cmarket.php']Crystal Market[/url] [url='donatorshop.php'] Donator Shop[/url] [url='playershops.php'] Player Shops[/url] [url='itemsearch.php'] Search Shops[/url] </td> <td valign=top>"; print $title['smm']; print " [url='monorail.php']Travel Agency[/url] [url='houses.php']Houses[/url] [url='bank.php']City Bank[/url] [url='crystalbank.php']Crystal Bank[/url] [url='stockmarket.php']Stock Market[/url]"; if($ir['donatordays']) { print " [url='donatorbank.php']Donator Bank[/url]"; } if($ir['location'] == 5) { print " [url='cyberbank.php']Cyber Bank[/url] "; } print "</td> <td valign=top>"; print $title['ds']; print " [url='gangcentral.php']Faction[/url] [url='gangwars.php']Faction Rivalrys[/url] [url='fedjail.php']Federal Jail[/url] [url='lucky.php']Lucky Boxes[/url]"; if($ir['donatordays']) { print " [url='ddreward.php']Daily Donator Reward[/url] "; } print "</td> </td></tr><tr height=100> <td valign=top>"; print $title['s']; print " [url='userlist.php']User List[/url] [url='stafflist.php']{$set['game_name']} Staff[/url] [url='halloffame.php']Hall of Fame[/url] [url='stats.php']Game Stats[/url] [url='usersonline.php']Users Online[/url]</td> <td valign=top>"; print $title['lo']; print " [url='gift.php'] Gift[/url] [url='polling.php'] Polls[/url] [url='workshop.php'] Study[/url] [url='swim.php'] Pool[/url] [url='blogs.php'] Blogs[/url] [url='musicplayer.php'] I-Pod[/url] [url='gallery.php'] The Gallery[/url] </td>"; print $title['m']; print " [url='crystaltemple.php']Crystal Temple[/url] [url='battletent.php']Battle Tent[/url] [url='ruby_trader.php']Ruby Trader[/url] [url='propose.php']Church[/url] [url='battletent.php']Battle Tent[/url] </td>"; print "</td></tr></table> This is your referal link: http://bla.com/register.php?REF=$userid Every signup from this link earns you two valuable crystals!"; if($ir['user_level'] == 2) { $file = $_SERVER["SCRIPT_NAME"]; $break = Explode('/', $file); $pfile = $break[count($break) - 1]; //echo $pfile; echo " [b]This file was last modified on:[/b] " .date("d/m/Y",filemtime($pfile)); } $h->endpage(); ?> I would be very happy if someone could look over it and let me know what I need to change to put it right.
-
Re: Unique Template $35 Did the person who made the layout say you could sell this?
-
Re: [mccode v2] Weather Gym [$1.00] Has there been another update? This mod no longer works for me