Jump to content
MakeWebGames

KyleMassacre

Members
  • Posts

    2,921
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by KyleMassacre

  1. I like sniko. Sniko and I are best buddies. We like to play in the yard together with our other bff's
  2. At least you provide a portfolio. @OP I understand exactly the service you are working on a providing. It is a market place for people to sell their layout work specified towards games. I am offended that you would call me illiterate. And you are correct, I do not know you. I just know who you are and who you are not trying to be. You are trying to hide the fact that you are not @Reecey12345, @WooCasino, or @WildHosting which all (I believe except for the latter) have been accused of fraudulant activities in one way or another. Maybe in the past week or two you have changed the way you do business but highly unlikely. Im just really worried that when people request their payouts the money will be gone or the templates will be used by people that have not actually purchased it
  3. For some strange reason I am seriously doubting your intentions here. People, if you want to do business with this guy do some homework on him
  4. So let me get something straight here, you are going to start a service selling something that you can't do yourself? Most people that start a service have knowledge of the service they are starting. This kind of makes me worry about you.
  5. Is Revolution even included somewhere? We can see that your calling that namespace but in this file your not including the file where that is found.
  6. Last I heard it's not very legal to lie to your registrar about your contact info. That's what Whois Guard is for
  7. He will need to have a license anyways.
  8. Version 2.0.5b is more secure than version 2.0.0 but I believe you would still need to go through and do some touch ups on it.
  9. I just noticed this, but the original cron file is using mysql_fetch_object() which doesnt conform to mcc standards(<- made up haha): /* * Competition System * Free Modification * DidNotCompute - http://makewebgames.io/member.php/70333-DidNotCompute */ include "config.php"; global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $set = array(); $settq = $db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } if ($set['competition'] == "Active") { if ($set['competition_type'] == "Crimes") { $type = "crimes"; } elseif ($set['competition_type'] == "Jail Busts") { $type = "jail_busts"; } $get_top3 = $db->query("SELECT userid, $type, competition_starting FROM users WHERE competition='1' ORDER BY '".$type['competition_starting']."' DESC LIMIT 3"); $n = 1; //while ($top3 = mysql_fetch_object($get_top3)) { while ($top3 = $db->fetch_row($get_top3)) { switch ($n) { case 1: $prize = $set['competition_prize_1']; break; case 2: $prize = $set['competition_prize_2']; break; case 3: $prize = $set['competition_prize_3']; break; } $db->query("UPDATE users SET money=money+$prize WHERE userid=".$top3['userid']); //for steviebe event_add($user['userid'], 'You have won '.$prize.' form the '.$type.' competition.'); $n++; } $db->query("UPDATE users SET competition='0' WHERE competition='1'"); $db->query("UPDATE settings SET conf_value='Inactive' WHERE conf_name='competition'"); $db->query("UPDATE settings SET conf_value='' WHERE conf_name='competition_type'"); $db->query("UPDATE settings SET conf_value='' WHERE conf_name='competition_prize_1'"); $db->query("UPDATE settings SET conf_value='' WHERE conf_name='competition_prize_2'"); $db->query("UPDATE settings SET conf_value='' WHERE conf_name='competition_prize_3'"); } ?>
  10. I wouldn't ask them to input a new password anyways. I would generate a password for them and yes send it as plain text to the email associated with their account. If someone happens to be able to access your email account you have bigger problems than someone getting into your game account. Or or I would do it as previously stated by using a token and emailing it to them and asking to change their password upon clicking the link. Or or another way is to set up security questions, and not security questions you would use from a bank site since those can be personal
  11. No problem. It can be used as something like a staff log that just logs notes, actions, etc about the user.
  12. I wouldn't log anything into the staff log, it is not a staff feature. If anything I would create a new log for user actions
  13. What would be the point? IPs change. Some ISPs offer dynamic IPs that change constantly or they can be mobile.
  14. What is your "BookOut"? And please use code tags with your posts when posting snippets. It makes it easier to read and easier to give you feedback
  15. Yeahhhh, lets not steal content please and not post anymore threads about Thug Paradise 1,2,3,....,100
  16. Everything is still basically the same for the most part
  17. You can always file a chargeback
  18. I think your missions may be broke or I am not understanding them. I spent 500k on an Uzi and it said that I got like 45k for completing that but my balance still shows 0
  19. I user PHPStorm
  20. +1 for using CI. I dont have have that issue when using CI but I use an IDE that loads all my files up and just FTP through the IDE so it really doesn't bother me. Now I'm not a speed test professional and if I'm right I am probably talking 1000's+ of a second but couldn't that lead to a slower load time? I thought the point of having a MVC directory was all the MVCs were in their own directory so it's not sifting around different directories to load a model or controller.
  21. I will completely disagree with point 7. If I had a game and someone posted 1 link to their game or another game then I will come back 10 fold. As [MENTION=70485]G7470[/MENTION] stated, chances are that will happen. I think every game owner should have something like that plastered into their TOS since to me it would be considered as spam. I have yet to see something good come out of posting a link on another game and game owners should also enforce their players not to do it. Doing something like that does show true character in a game owner and shows you do not care. I understand it's dog eat dog world out there in the game industry which is why I do not have one but there are other, better routes that you can take.
  22. [MENTION=53990]Richard[/MENTION] made one years ago. I have never used it and don't know how good it works if it does. I remember back in the day it was a huge hit but the forums may have messed up some of the code and probably needs to be rewritten
  23. Why don't you just have the user pick the country they are from? If they have to hide behind a proxy then your logic doesn't work. IP is one of the worst ways to get a persons location because of some strict country laws and blacklists. It's just like IP banning someone, they can easily come back to your game via proxy unless you ban all proxy servers which in turn is also a bad idea because ultimately that may lead to loss of income by big ballers living in a country that hates the country your game is hosted in. The easiest way is just to have your user pick where they are actually from, and if they lie, WGAF? Chances are you will never know either way lol For modular achievements, that can be a daunting task at hand. You would have to set something up like with Dave's ajax chat system that hooks into all columns in your table(s) so every time you create a new column it loads automatically which really isn't that daunting really now that I keep thinking about it and just create a function/method (which ever way you choose) to credit the achievement and validate they do/don't have the achievement already. You can also just serialize the requirements much like Dave does with his chat or MCC's item system
  24. Ok, so basically I have an ajax call that I am making on a timeout and I only want it to work initially when the page loads and if the browser/tab is actually active. So in other words the call does not get made if you are in another tab or you open up another program. Unfortunately I am on my phone right now and can't post any snippets worth anything but here I go with some major stuff: $([window,document]).ready(function() { //not really sure this is right either for what I want. I read it's for X-Browser myFunction();//Inital call because it displays data function myFunction() { $.ajax({ //non important }).done({ //makes the data display in the header }).success({ //this is where I want to check if the browser window/tab is in focus and there is a timeout function here that calls myFunction again }); } }); The problem I have is that by default the window/tab is not in focus on default and the only way to get it to work is if I go to another tab and switch back then it will start, and the other issue is I need it to stop if it's out of focus again. I looked online and tried pretty much everything I can find on this and nothing worked like I wanted. So if you have some tips I would greatly appreciate it. P.S. I know I'm missing some function()'s here and there so that's not the issue
  25. Inside the buy function create a for loop and loop through it x amount of times
×
×
  • Create New...