Jump to content
MakeWebGames

microsocket

Members
  • Posts

    82
  • Joined

  • Last visited

Everything posted by microsocket

  1. Guest PLEASE change your name to columbo with matching avatar haha
  2. LOL nuffsaid
  3. take a look here : build a codeigniter mafia game its a basic mafia themed game building tutorial if i remember correctly..which will give you an idea of the hows, whys and whats etc
  4. Given that the image of the gangster is from google... The 'cityscape' is one click of a brush in photoshop.. The fade is all f$%&D up on his legs allowing buildings to show through... A seagull/eagle....plus a few boxes on a black background....   I dont think you will have to worry about chargebacks/payment up front etc as , personally, no one will be ordering work based on that example :) Sorry if brutal ...but its true
  5. RRRUUUUNNNNN...FOREST RUUUUUUUUUUUUUUUUNNNNNNNNNNNNN   That is all :)
  6. is it called mafiastruggle or central city syndicate ? game name is one and the browser title is the other(on login and register)....
  7. well aside from the screenshot of DB showing the spam.... or the fact he actually admitted it ??   would you , perhaps, like me to post the email and ip address's associated with the account he used ? Oh thats right that would be unethical and quite possible illegal so i shall refrain from doing that... Anyone that can read can see quite clearly he admitted doing it with his 'free advertising' response. So i find this post of 'Show proof' not only futile but also quite ridiculous for a moderator to post. kthnxbai.
  8. A new name for your game filters : limitedlives It seems Razor42 is yet another game owning/spamming tosser that would rather link out in your games instead of actually doing some work and advertising properly. proof : Razor42 February 12, 2013 1:09:08am Hi there! Feel free to come check limitedlives.com out ! Brand new game been open a few days and growing quickly with constant upgrades, a small community and helpful active staff!! Add limitedlives to your filter now to stop this game spamming wanker in his tracks :)
  9. When registering : Warning: Cannot modify header information - headers already sent by (output started at /homepages/43/d452893359/htdocs/register.php:33) in /homepages/43/d452893359/htdocs/register.php on line 34 home/index page : Warning: Division by zero in /homepages/43/d452893359/htdocs/includes/functions.php on line 172 Warning: Division by zero in /homepages/43/d452893359/htdocs/includes/functions.php on line 173 Warning: Division by zero in /homepages/43/d452893359/htdocs/includes/functions.php on line 174   :)
  10. I heard skooda also sells rocking horse poop , chicken lips, left handed hammers and the blue pills from the matrix.... All you need to do is give him your paypal details and password and he will send them all in plain packaging 1-2 years after purchase :)
  11. mafia kings, mafia death, mafia warfare, wize-guyz, mafiaduel, streetgangstas .......to name but a few great games built on grpg engine :) All heavily modified but started on grpg no doubt :)
  12. Edit : just noticed you need the complete rank system , i assumed you had that already and just needed a way to give 'default' ranks. 'shoulda gone to specsavers'
  13.   You have forgotten to mention here if you are offering your partner 50% of the money you scam from unsuspecting n00bs via paypal as well for your 'services' lol. Who in their right mind would work with you :) Please have a look around forums for his name before you agree to do/sell or partner up with this cheeky young scamp people...as , I am sorry to say, he is a knobjockey with lower morals and ethics than a cheap hookers knickers on a sailors payday :)
  14. Would anyone know where to find a company or designer that makes custom sets of smileys ? Thanks
  15. Afternoon, wondering if anyone can help me solve this. I need to loop inside a loop and create an output from this below...   $result = $DBO->query("SELECT * FROM `stocks` ORDER BY `id` ASC"); while($line = $DBO->fetch_array($result, MYSQL_ASSOC)) { $id = $line['id']; $resulta = $DBO->query("SELECT * FROM `shares` WHERE `userid`='".$User->id."' AND `companyid`='".$id."'"); while($linea = $DBO->fetch_array($resulta, MYSQL_ASSOC)) { $fluc = $linea['cost']; } }   the first part needs to select all the id's from one table The second part needs to then select a field 'cost' from another table that matches the user id and the stock id (pulled from first table) if that makes sense. Anyone care to point me in the right direction please ? Thanks
  16. no sorry its on local. All i need to figure out is how to stop the inital 5 sec delay before it shows first text. the feed page selects from a DB table randomly (there is around 20 entries in there of lines of text) and then displays that inside a <div></div> on another page. That aspect all works perfectly no issues at all. The problem is the 'first load' so to speak...when you go to the page that shows it it take 5 seconds delay before it shows the first line of text and i need to make that instant and then 5 seconds delay between changing. So the only thing i need to solve is how to make the first time it loads up not to have the 5 sec delay if that makes sense...
  17.   I think you misunderstand what i am saying...I am aware the 5000 equals 5 seconds that is the delay time I want. What I am saying is the page I call the <div> on to refresh takes 5 seconds to load the first <div> content instead of instantly. The 5 sec delay is correct for changing the content as I want it...but I need to figure how to not have the 5 sec delay on first load. thanks
  18. Hi i have an ajax question and wondered if anyone could help...? I am using this below to call one line of text DB and refresh it as needed which all works fine ..   <script> var auto_refresh = setInterval( function() { $('#loaddiv').fadeOut('fast').load('feed.php').fadeIn("slow"); }, 5000); </script>   The problem is that t takes 5 seconds to call the first text so its blank for 5 seconds instead of starting instantly and having the 5 second delay between changing text... Does anyone know how to make it show instantly on first load without the 5 sec delay before it shows first text ?... Thanks
×
×
  • Create New...