Jump to content
MakeWebGames

KyleMassacre

Members
  • Posts

    2,921
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by KyleMassacre

  1. yeah i just purchased the full version for $100 and with those options coming out would be worth keeping it
  2. Glad to see you back. There has been a lot of talk recently about GRPG. I dont "own" a copy but will tell you right now that I ended up finding a copy of it online and load it up on localhost just to check it out but didnt know what i was going at the time so didnt get very far but from what i seen i did like it quite a bit. And im sure tons of people here will be glad to see you coming back
  3. if its sent as a "gift" will they honor it? i think that is why he made him send it as a gift and not a purchase
  4. Well i have no powers to stop him lol   And yeah its a bit fast but if the shoe fits wear it. He has scammed multiple people, tried or did sell multiple paid modules from people, and last i heard he did sell wise crime so how is he selling it again??? Im surprised he still come around to be honest but i guess the more new people that come the more people he can try to scam, it gets really ridiculous
  5. nevermind im just going to dish out the $100
  6. File a chargeback
  7. if you can get back to me within an hour cause i may be away from my computer ill give you $65 on the spot
  8. Very nice work, i dig the home_special
  9. I just realized sniko has an estate mod I havent used it yet though but I purchased it a while back you can find the demo here mcc.sniko.net. @lucky Who cares release it or sell it for cheaper.
  10. Richard posted one years ago but it needs to be fixed and I dont think anyone has gotten around to completely fixing it
  11. If I were you I would run your game url through the mccodes license checker and if it returns invalid issue a charge back pronto
  12. Renting properties to others is an entirely different mod. I know Cronus has one and if im not mistaken I believe haunted dawg has one but I believe both are paid modules
  13. I asked him out of curiosity who sold him the license so take a wild guess.
  14. Im interested
  15. Great just make sure the license gets transferred to you via mccodes.com or it means nothing
  16. Whoa slow down turbo no need for anger and just because its not being inserted into the db doesnt mean it shouldt be secured. If you understand even the basics on how injections work you would know that people pass strings through the url a lot of the times and not just in <input>s. Maybe try adding in there some isset()s as well and if you dont want to trust me thats fine and dandy with me but I wouldnt advertise your game in public then
  17. I dont want to sound like a hater so dont take it that way but one thing you should think about is securing your gets and posts even if its just a little bit like using mysql_real_escape_string($_GET['action']) and even is_numeric($_GET['u']) or abs((int)$_GET ['u']). That will atleast help with basic stuff Also are you only allowing people to give 1 or 2 ratings per day on purpose? It seems more logical to give unlimited and do a check to make sure they are not rating the same user over and over
  18. Well sniko has that mod for sale. Im sure if you message him he will reply back
  19. Try this CREATE TABLE actions ( id int NOT NULL AUTO_INCREMENT, user_id int, energy int, last_updated timestamp );
  20. Well I think 99 out of 100 of us can agree on not buying this script
  21. And also what do you use for the structure, mysql, mysqli, etc, etc?
  22. The thing is we have to transfer our license so you will have to create an account at mccodes.com and then it will look like you purchased the script to staff so you will most likely get support so you will have to find someone willing to not want their license anymore
  23. Aint gonna happen. He knows he has no rights to sell this since he didnt create it. Chances are he will take your payment and sell you the flopped source for wise crime like. But like i said prove me (us) wrong skooda
  24. I am interested if you can provide samples and a working demo. Im really interested in where you got the engine from since I highly doubt you coded it yourself but if you can prove me wrong
  25. There is no need to convert it over it will work just fine. But a while ago I added this for a time travel mod I put in my game which is found on cronus' blog if($LARGERTIME < time()){ $output=”None Currently”;} else{ $time=$ir['traveltime']-time(); if($time > 86400){$days=$time/86400;$days=floor($days);$time=$time-($days*86400);}else{$days=0;} if($time > 3600){$hours=$time/3600;$hours=floor($hours);$time=$time-($hours*3600);}else{$hours=0;} if($time > 60){$minutes=$time/60;$minutes=floor($minutes);$time=$time-($minutes*60);}else{$minutes=0;} if($time > 0){$seconds=$time;$seconds=floor($seconds);$time=$time-($seconds);}else{$seconds=0;} $output=” “.$days.”d “.$hours.”h “.$minutes.”m “.$seconds.”s”; So you would just need to change the variable to what you would like to use it for. But other than that your is simple and to the point which there is nothing wrong with that.
×
×
  • Create New...