Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. Due to my current affiliation with McCodes, I'll take this :) Post the code, plus all relevant details regarding to it not working.
  2. Slight visual error   View Image   Slight grammar issues   Hello and welcome to the all new Post2Host.co.uk. We have been working on the site for some time now, to make it more easy for new customers to get there site setup. So, if you are new to making websites, then don't worry were here to help you out. You can contact us directly for help with setting up and designing your site, and we will be happy to help. Feel free to join our friendly forums for......
  3. Have you used this? Using it (with a fresh install of SMF) will 'mirror' your games table to the SMF table.
  4. I've not actually done this. However, you will have to edit the forums source - I've not got access to the forums source at the moment, but it will be the same workaround; Connect to your game database Encrypt the passcode with the same encryption method used in vanilla signup Update the passcode field in your game database close database connection   :)
  5. Indeed.   Sec. 43.03. PROMOTION OF PROSTITUTION. (a) A person commits an offense if, acting other than as a prostitute receiving compensation for personally rendered prostitution services, he or she knowingly: (1) receives money or other property pursuant to an agreement to participate in the proceeds of prostitution; or (2) solicits another to engage in sexual conduct with another person for compensation. Reference.
  6. Awkward.... (Top left, above "ZPanelCP")
  7. sniko

    game suggestions

    Could you post your game link (or a mirror of your game) so we can test for the flaws?
  8.   :) -somehow, too short-
  9. Awesome! Great work, and a great modification :) You must spread some Reputation around before giving it to KyleMassacre again.
  10. sniko

    Mobile Layout

    I was trying to get that across, haha. The idea of having a button you click/press and more links show ;)
  11. sniko

    Mobile Layout

    Pretty awesome! Perhaps, to overcome the links problem, do what Twitter Bootstrap do; Go here, then re-size the browser to a small frame 10/10.
  12. sniko

    Validate URL

    I'm a little rusty on regex, however, try this :? [http://]+([www.])+[a-zA-Z0-9-]*+.+(a-z)*
  13. sniko

    Validate URL

    What kind do you deem valid for purpose, then? Tell us your rule set, and we'll regex that
  14. How much more would it cost from a bid, to include coding?
  15. Developing, using Panther
  16. $ids = array(1,2,3,4,5,6); //Specific ID's that you want to change the price of foreach($ids as $id) { $chance = mt_rand(50,100); $db->query("UPDATE `drugs` SET `itmsellprice`={$chance} WHERE `itmid`=$id"); //I assume the column id `itmid`, as you've adopted the column names from `items` }
  17. It's pretty interesting indeed, however, it was a little weird on the eyes/brain whilst changing direction, if you understand?
  18.   Nope, It looks like that bennyh is stating something, rather than asking. I'll break it down for you; Hmm I'm afraid it is no where near worth what you're asking - opinionated statement It has no users so one would assume no income - factual statement (Quote: It's not "launched") It looks like its just mccodes dumped onto it and the colours changed - opinionated statement Guys, stop arguing. OP set a price that he feels comfortable at parting with his project. If you don't like it, simply haggle (if you're actually interested in purchasing), or leave. It's not rocket science. @OP: Good luck with the sale :)
  19. Sorry to update such an old thread, however, here's an addon to update the amount of players, and the latest members name (displayed in the statistics center, and info center) define('__DB_USER__', 'root'); //Edit this define('__DB_PASS__',''); //Edit this define('__DB_NAME__','smf_forum'); //Edit this function forum_update_total_members() { $forum = new mysqli("localhost", __DB_USER__, __DB_PASS__, __DB_NAME__); $get = $forum->query("UPDATE `smf_settings` SET `value`=`value`+1 WHERE `variable`='totalMembers'"); $forum->close(); } function forum_update_latest_member($name) { $forum = new mysqli("localhost", __DB_USER__, __DB_PASS__, __DB_NAME__); $get = $forum->query("UPDATE `smf_settings` SET `value`='{$name}' WHERE `variable`='latestRealName'"); $forum->close(); }   Then just call those functions as soon as someone signs up; forum_update_total_members(); forum_update_latest_member($username);   :)
  20. sniko

    new here

    Welcome, bashful. I hope you have a 'bashful' time here :p
  21. I think he's trying to say that trialplay doesn't exist, but trialpay does. Edit I thought you typed trialplay in your opening post, my bad Edit 2 Actually, I have no idea what he's saying
  22. Ah, nice! I wish you luck with your venture :) Possibly list these changes on the site, so players know what's different?
  23. Heavy graphical welcome page   sets the scene, although some text is hard to read. perhaps add some sort of story? Captcha on login after x failed attempts, perhaps?     Also, may I ask; what's different from crimelordsreborn to crimelords2? Apart from client-side design.
×
×
  • Create New...