Jump to content
MakeWebGames

NonStopCoding

Members
  • Posts

    572
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by NonStopCoding

  1. hope you get it back soon
  2. cant you bring them indoors now ? just to be on the safe side and yep £50 for a kitten people are just greedy but the thing is people actually pay it
  3. set up some kind of camera or spot light that will go off when someone approaches your shed. here in the UK iv seen kittens going for around £50-70 if someone was to steal kittens it could be profitable but if its just the kids they probz took it home kids are mad when it comes to puppy's or kittens
  4. Google some good video editors or something along them lines you will be bound to find something Google is your friend
  5. just saying if you cant get anyone :P
  6. if you want a hand give is a shout ill help contribute to it when i got spare time
  7. if you cant find someone to do it for you why not use some sort of screen recorder to record your screen then use windows movie maker to edit and make it looks good
  8. got to say you have done a very good job with this i like it and i am a fussy guy :P
  9. its a nice website nice and clean and i am not surprised that it has grown so quick who does not like this kind of stuff.
  10. sounds like a good idea there is a pets module out there for grpg that basically does the same as your talking accept you cant equip it you just train its levels and energy and stats etc then you can fight other pets Me personally don't like pets in a game but as a player i guess it would give me something extra to do and spend more time on the game
  11. You might need something like $res = $db->query("SELECT COUNT(`userId`) FROM `raffle_tickets` ORDER BY `ticketNo` RAND() DESC LIMIT 3");
  12. EDIT: haha never mind i am blind
  13. you can edit it into the daily cron or link a new cron job but i don't see it doing much harm linking it to a separate cron job
  14. looks good from screenshot how about some more screenshots of outcomes ? or live demo
  15. $res = $db->query(SELECT * FROM `tablename` WHERE tickets > 0 ORDER BY RAND() DESC LIMIT 3); $i = 0; while($row = $db->fetch_row($res)) { $i++; if($i == 1) { #1st } else if($i == 2) { #2nd } else if($i == 3) { #3rd } }
  16. Djkanna has been here for long time and his work is always great goto say i have never hired him myself but i have seen plenty of his free mods on the forum and code is always great
  17. [MENTION=65100]W3Theory || Peter[/MENTION] does good design work but his prices are a bit more expensive for a budget of $100 only person i seen doing work as cheap as that is [MENTION=69001]Zettieee[/MENTION]
  18. no its defiantly not free grant owns full ownership so to get a official license you would be best to contact him but last time i spoke to grant (last year) he said he would have the site set up by January this year its now may so dunno what happened but if you contact him directly he might issue you a license last time i spoke to him he said it would be around $50
  19. i started out with a game called Mob something it was kinda like thecrims.com but then it closed down so i moved all my time to thecrims.com followed by torn then i got interested in creating games
  20. sad to say things like this never stops. since you have noticed that its on the marketplace he will properly try sell it someplace else.
  21. looks much better than stranded crimes
  22. ah you found my old module yep its pretty basic if my memory serves me correctly someone did a recoded version of it
  23. Yep haha stupid me yes your avatars are very confusing hehe but owell comment tag can be edited :P
  24. well i am glad its useful for someone i did find it pretty handy. Myself i have never used vps before i got a months free vps from hosting24.com before for putting up a good review but i did not have a clue how it worked or what i even had to do with it so it went to waste.
  25. sounds like you need something like a hourly rewards module. I don't really see why you would want houses to drop random crystals   # In case you want to set a different type of prices for houses if($ir['house'] > 1 && $ir['house'] < 10) { # Lets set a chance so the user doesn't always get crystals $chance = rand(1,1000); if($chance == 1) { # As kyle says sets a random amount of crystals from 5-10 $amount = rand(5,10); $db->query("UPDATE `users` SET `crystals` = `crystals` + '$amount' WHERE `userid` = '$userid'"); } else if($chance == 25) { $amount = rand(1,2) { $db->query("UPDATE `users` SET `crystals` = `crystals` + '$amount' WHERE `userid` = '$userid'"); } else if($chance > 800) { $amount = rand(7,6) { $db->query("UPDATE `users` SET `crystals` = `crystals` + '$amount' WHERE `userid` = '$userid'"); } } else if($ir['house'] > 9) { # code goes here }
×
×
  • Create New...