Jump to content
MakeWebGames

Zettieee

Members
  • Posts

    790
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Zettieee

  1. Zettieee

    Layout Design

    Any chance of getting a view with a less aggressive watermark?
  2. Sniko is a great coder! It's worth the money. :)
  3. If I need something coded fast I go to MTG. Always great support, as he put in his signature.
  4. As lucky said, MTG has been around this forums for longer than some of the admins.
  5. A hacker... You mean an exploiter.
  6. Great work as always! He converted 100+ files from mysql to mysqli with incredible speed! Recommended. :)
  7. Great work! Not tested but looks good from here! :)
  8. Hey guys. How many of you use GRPG and would like some free mods? I've not coded much for GRPG over the past year but looking to get back into coding for GRPG. If enough requests come in I'll see what I can do to make our own version of GRPG.
  9. My email at the time was a custom domain email ([email protected]). I no longer have access and haven't for over 5 years.
  10. I've been trying to get a hold of brandon for some time, no reply. If Grant has the list of purchases then I hope he can provide proof for me.
  11. Hey guys. I cant seem to find my original GRPG files. Only edited versions. Anyone here willing to upload an un edited version?
  12. Add me on skype: Scruffy.Gamer
  13. Do you have the cron files?
  14. How do you plan to bring the thrill of racing games from consoles to a browser?
  15. They is a site that secures things for £0. It's php.net. Go and read about the functions they have.
  16. Off Topic: Glad it's all sorted.
  17. Sold him a template (PSD, CSS, HTML). Paypal was acting up but transaction still went smooth. He sent payment first. Recommended - trusted.
  18. That's a very good point! You sir just inspired me to get off my back side and code a nice tutorial for new players. Thank you!
  19. I've not sold a game but sold an account on a game in the x,xxx range. I took payment via bank transfer. Money first and then info was sent (with screenshots and video proof using teamviewer). Make sure to cover your end. Use bank transfer to make sure your bank will cover you. (paypal mostly take the side of the buyer).
  20. You know if you did sell it then a DMCA notice can be sent and will be taken down by your host? I've had alot of my templates stolen over the years and they all have been taken down... Just watch your back when it comes DMCA's :)
  21. $select = mysql_query("SELECT * FROM business LEFT JOIN business_classes ON (classId = busClass) ORDER BY busId ASC"); This is the problem. You are missing a mysql table.
  22. Post the errors I'll have a try :) Try this: <?php require_once(dirname(__FILE__) . "/../mysql.php"); require_once(dirname(__FILE__) . "/../global_func.php"); $cron_code = '****OFF'; if ($argc == 2) { if ($argv[1] != $cron_code) { exit; } } else if (!isset($_GET['code']) || $_GET['code'] !== $cron_code) { exit; } $select = mysql_query("SELECT * FROM business LEFT JOIN business_classes ON (classId = busClass) ORDER BY busId ASC"); while($business= mysql_fetch_assoc($select)) { $amount=mysql_num_rows(mysql_query("SELECT * FROM businesses_members WHERE `bmembBusiness` = '".$business['busId']."'")); $new_costumer = ($business['classCost'] / 5000) * ($amount + 1) + rand(-12, 18)) / 2); $new_profit = (($new_customers + rand(-4, 8)) * ((($business['classCost'] / 2500) * rand(2, 8)) / 10) * ($amount + 1)); $profit = $new_profit - $business['busCash']; mysql_query("UPDATE businesses SET busYCust = busCust, busYProfit = busProfit, busCust = '".$new_customers."', busProfit = '".$new_profit."', busCash = busCash + '".$profit."' WHERE busId = '".$business['busId']."'"); $fetch_members = mysql_query("SELECT * FROM businesses_members LEFT JOIN users ON (userid = bmembMember) LEFT JOIN businesses_ranks ON (rankId = bmembRank) WHERE bmembBusiness = '".$business['busId']."'"); while($member = mysql_fetch_assoc($fetch_members)) { $fetch_stat = array( 'strength' => 'Strength', 'iq' => 'IQ', 'labour' => 'Labour '); mysql_query("UPDATE users SET money = money + '".$member['bmembCash']."' WHERE userid = '".$member['userid']."'"); mysql_query("UPDATE userstats SET '".$fetch_stat[$member['rankPrim']]."' = '".$fetch_stat[$member['rankPrim']]."' + '".$member['rankPGain']."', '".$fetch_stat[$member['rankSec']]."' = '".$fetch_stat[$member['rankSec']]."' + '".$member['rankSGain']."' WHERE userid = '".$member['userid']."'"); if($business['busCash'] < $member['bmembCash']) { $text = "". username($member['bmembMember']) ." was not paid \$" . number_format($fm['bmembCash']) . " due to lack of funds."; mysql_query("INSERT INTO businesses_alerts (alertId, alertBusiness, alertText, alertTime) VALUES ('NULL', {$business['busId']}, $text,unix_timestamp()"); mysql_query("UPDATE businesses SET busDebt = busDebt + {$member['bmembCash']} WHERE busId = {$business['busId']}"); } else { mysql_query("UPDATE businesses SET busCash = busCash - {$member['bmembCash']} WHERE busId = {$business['busId']}"); } } if($business['busDebt'] > $business['classCost']) { $send_event = mysql_query(sprintf("SELECT `bmembMember` FROM WHERE `bmembBusiness` = '%u' ORDER BY `bmembId` DESC", $bs['busId'])); while($se = mysql_fetch_assoc($send_event)) { $text = "The {$business['busName']} business went bankrupt\, all members have been discharged."; event_add($se['bmembMember'], "$text"); } mysql_query("DELETE FROM businesses_members WHERE bmembBusiness = '".$business['busId']."'"); mysql_query("DELETE FROM businesses WHERE busId = '".$business['busId']."'"); } } ?>
  23. Decided the get rid of the tabs for the content area and add a top nav bar as a menu. Finally coded it, this is what it looks like coded:
  24. Thanks sniko!
  25. It's not complete no. It's a work in progress, The main content area is in need of a grain effect that's repeatable. It also needs a full UI kit. Thanks for your comment.
×
×
  • Create New...