Jump to content
MakeWebGames

Strats

Members
  • Posts

    649
  • Joined

  • Last visited

    Never

Everything posted by Strats

  1. Re: Hacked :( I know, He don't come on here any more. I have back up's but from the other day, yesterday I had made new houses and items all day so they had not been saved :@ But it's ok I guess I like making items any way lol But I still want to report this chump and haven't found any where to do so yet. :x
  2. Re: Hacked :(     Are you a retard? LMAO!! Maybe he should post his game I'll have someone hack his, wonder if he will still be laughing then lol
  3. Re: Hacked :(     Are you a retard?
  4. Re: Hacked :( Host : 5adb5288.bb.sky.com
  5. Re: Hacked :( Yea well I hope I can get my game more secure. I will have a busy day 2moz re making the items. Lucky I made notes on most things
  6. Re: Hacked :( Is there somewhere I can report this person online for hacking?
  7. Some little twat messed up my whole game in like 5 mins He gave everyone loads of crystals and money and made himself admin After I redo my game is there someone here I can pay to secure it as much as it can be done? His name is : Jameo I think and his Ip : 90.219.82.136 Ban it!
  8. Re: [mccode v2] Simple Job Specials I have just had a go at installing this. I new I would make a mistake lol Would someone fix my jobs.php I know I did not put the code in the right place, I will post up my normal job.php If anyone could help that would be so great :)   <?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(); ?>
  9. Re: Will Modification Thought so, Just like to be sure lol Thank you so much for your help. Not many people on here seem to be as nice.
  10. Re: Help   Is it for V1 or V2?
  11. Re: Help Wow Never seen an error like that lol
  12. Re: Will Modification I did that but for some reason the first try it chose not too work lol It works perfect now :) One more question lol If I want to make another drink do I add the same thing to item use again, just different item number ect? I don't need to put a new Sql in do I?
  13. Re: Will Modification +1! for now another one if you can make it so it works for 5 mins lol I tried to but after about 2 mins it all went.
  14. Re: Will Modification   If someone makes something for me I would never sell it.
  15. Re: Will Modification Shrek I get an error for the gym now Parse error: syntax error, unexpected '[' in /home/*****/public_html/gym.php on line 47 Which is : $db->query("UPDATE `users` SET `will` = {$ir['will']}, energy = energy - {$_POST['amnt']} WHERE `userid` = $userid");[/   Is it something to do with : $userid");[/ ? maybe [/] ?
  16. Re: Will Modification Just the basic one V2 I have not made any edit to it
  17. Re: Will Modification I like it, And made one lol Go me, but the will does not last as soon as you train it goes I'd like to make it stay at 150% for the whole 5 mins even when training
  18. Re: Will Modification     You posted just before me lol I will try this out, wish me luck. Oh would there be a way to make it so that only one drink could be used at a time?
  19. Re: Will Modification   It won't go to 150 % it would just refill it until the use it. We need an item that is added through a Sql I believe. Like the Taser mod, it's an item and it works for a set amount of mins. Normal will is 100% Say you make the item a drink. A user drinks a drink and instead of 100% will they get 150% will for 10 mins. drink 1 - 150% drink 2 - 200% drink 3 - 300% If someone is thinking about making it, you need to make it so only one drink can be drank at a time.
  20. Re: [mccodes v2] sendcash.php / Same IP Stop Thanks, I will have a try at this. I think it's a really good idea, people wont bother making so many Ip's if they cant send money ect to and from them.   +1
  21. Re: [mccode v2] Gift.php [edited] This works, but the cron does not. What should it be?
  22. Re: [mccodes v2] sendcash.php / Same IP Stop Thanks for that reply. With my other files : send.php sendbank.php sendcash.php sendcrys.php sendcyber.php Can I place the code at the end of each file?
  23. I have not seen this around, but If I am wrong go ahead and link me to the page... Would anyone be able to make a mod that : Gives you maybe 3-5 items Which give you a 10% or 20% of extra will for 5 or 10 mins Something that can improve a users training. If this can be made and is not hard to do, go crazy :P If this is a good idea and worth making some money from making it, mail me with a price.
  24. Re: [mccodes v2] sendcash.php / Same IP Stop Where about's should I put this? Or will it be ok pretty much anywhere
  25. Re: [mccodes v2] Crafting System Mod - players can craft items! ($65) Ok, Just wanted to make sure It's not something stolen
×
×
  • Create New...