Jump to content
MakeWebGames

Agon

Members
  • Posts

    120
  • Joined

  • Last visited

Everything posted by Agon

  1. got the hospital query working
  2. debug 1 for lite Debugging to work for lite. find and replace: Bomb.php with bomb.php Working pretty smooth. My problem, getting my hospital query to work. I've replaced the existing with the one I use on attackwon.php.   mysql_query("UPDATE users SET hosp=hosp+12+(rand()*10), hospreason='Hospitalized by <a href=\'viewuser.php?u={$userid}\'>{$ir['username']}</a>' WHERE userid={$r['userid']}",$c);   Not exactly sure what I'm doing wrong here. Other small bug, I'm not sure how to fix. Keeps the "defuse" and "confirm" button after the event has taken place. Also, Wonder if this:   $Rand = mt_rand(1,4); if($Rand === 4) { echo ('You\'ve cut the wrong wire!, The bomb exploded and you\'re now in hospital!'); could be changed to a menu with four color choices? Input, ideas, suggestions?
  3. I am soooo busy I am really busy this evening. I'll have to test this out tomorrow. My apologies for the delay.
  4. So, I'm watching a movie here about bomb squad cops... I'm thinking of a "cut the wire" mod. 1. Link on viewuser.php to send someone a bomb. 2. Bomb arrives to the target... and there is a timer on the bomb. 3. Results.... a. Bomb blows up when timer reaches 0. b. Player has option to defuse the bomb by cutting a wire. 1. One in four chance of cutting the correct wire, thus defusing the bomb. 2. Cut the wrong wire, bomb goes off, double the damage. Idea that just jumped in my mind. Not sure if this has been done before. Thanks!
  5. Update I would like to encourage everyone to find the way to the chat channel to discuss business. Server: irc.taphouse.org Channel: #slacktime I think we can put together a very talented team here. Let's all get together, and make this happen.
  6. Greetings. I have a few different projects going on. I realize my skills are best used for marketing, beta testing, and graphical layouts. I do however have a small understanding of .php and .sql. Here's what I have going on: One existing game. Coded in Mccodes LITE. Another Website. Sitting Idle. Has a money theme. Could be made into a money making game of some sort. Another Website. Sitting Idle. Has a space theme. Could be made into a space type game of some sort. What I am looking for: A small development team. A group of like minded individuals who want to attempt to make a full time living making/developing games. 1. Investor. Looking for an investor with a small amount to invest into the company. 2. Coders/Developers Looking for 2-3 game coders willing to invest 30-60 hours a week into coding some things. Wanting to sit down with a team of folks like this, and negotiate a business deal, with each of us having a percentage share of the company. Our goal is to meet specs of large scale games. 100k plus users per website. Also implementing the games to be compatible with social networking sites such as Myspace and Facebook. This will be a long term project with more than one game to work on. Serious Inquiries only.
  7. simple marriage mod for lite I'd like to see a marriage/shared housing mod for LITE, that actually works. If you're up for the challenge! Thanks for your time!
  8. simple character class mod for LITE Choose between 1 of 4 character classes at registration.php Each class gets a special attack on viewuser.php Each class gets access to a certain city, where no other classes can go. If you're up for it! Thank you for your time!
  9. Ok, here's another hint. (WHATEVER/X) Whatever = whatever / = Divided by X = variable LOL/X
  10. (lol/X)
  11. Are your images in the correct directory?
  12. You'd put it somewhere around line 256. With attackwon, attacktake, etc. Hope this helps.
  13. lolz HAHAHAHAHAHA
  14. LOLZ. You two flirt so much, you should just go out on a date already. Bwahahahazorz!
  15. free site design General General, I can build a site for you. No problem.
  16. Agon

    How to...

    NO GOOGLE.LOL YAHOO.LOL!!
  17. I have an interest in this. I'm at the level where I'd like to work on an game engine and contribute my knowledge. This is an opportunity to learn some useful stuff. I'm in if you want any help. I have the free time to do this. Thanks!
  18. Maybe check you index.html for instructions on CURL
  19. Google OS reminds me of the many lite flavors of linux that have been released. Really nothing to special or interesting about it.
  20. Thanks for the input.
  21. And why is there not an in depth security thread sticky? Why not make a well written post explaining the proper ways to secure mccodes? Why aren't people using daily backups? I think these solutions are much better options than a witch hunt.
  22. This is a nice little script if you have a LINUX server and SSH access. SSH to your server. Here's the script. Self explanatory.   mysqldump --opt -h 127.0.0.1 -u db_username -pdb_password db_name | gzip -c > gzip_filename.gz mutt -a gzip_filename.gz -s "Subject line of email with $DATESTAMP" [email][email protected][/email] < text_file_with_text_to_send_in_email_body   Now FTP the file over and make it executable as in chmod 744 or 644. In the bash shell, you can test it by using the "dot filename" invocation as in # . backup_script.bash No errors? Check your email? Did it work? Create a cron job. And DONE! Enjoy.
  23. Find:   if(rand(1,100) <= $sucrate) { print str_replace("{money}",$r['crimeSUCCESSMUNY'],$r['crimeSTEXT']); $ir['money']+=$r['crimeSUCCESSMUNY']; $ir['exp']+=(int) ($r['crimeSUCCESSMUNY']/8); mysql_query("UPDATE users SET money={$ir['money']},exp={$ir['exp']} WHERE userid=$userid",$c); }   Replace with: if(rand(1,100) <= $sucrate) { if ( $r['crimeSUCCESSMUNY'] ) { $crime_income = mt_rand('5', $r['crimeSUCCESSMUNY']); print str_replace("{money}",($crime_income),$r['crimeSTEXT']); $ir['money']+=($crime_income); $ir['exp']+=(int) ($r['crimeSUCCESSMUNY']/8); mysql_query("UPDATE users SET money={$ir['money']},exp={$ir['exp']} WHERE userid=$userid",$c); }   Have fun!
  24. RTFM right? Might as well just close the entire board and replace it with a link to Google search.
×
×
  • Create New...