-
Posts
2,210 -
Joined
-
Last visited
-
Days Won
47
Content Type
Profiles
Forums
Events
Everything posted by sniko
-
Due to my current affiliation with McCodes, I'll take this :) Post the code, plus all relevant details regarding to it not working.
-
Google Chrome
-
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......
-
Have you used this? Using it (with a fresh install of SMF) will 'mirror' your games table to the SMF table.
-
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 :)
-
Free Web Host - Zpanel Control Panel + 1 Minute Cron Jobs
sniko replied to KyleH112's topic in Web hosting
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. -
Free Web Host - Zpanel Control Panel + 1 Minute Cron Jobs
sniko replied to KyleH112's topic in Web hosting
Awkward.... (Top left, above "ZPanelCP") -
Could you post your game link (or a mirror of your game) so we can test for the flaws?
-
:) -somehow, too short-
-
Awesome! Great work, and a great modification :) You must spread some Reputation around before giving it to KyleMassacre again.
-
I was trying to get that across, haha. The idea of having a button you click/press and more links show ;)
-
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.
-
I'm a little rusty on regex, however, try this :? [http://]+([www.])+[a-zA-Z0-9-]*+.+(a-z)*
-
What kind do you deem valid for purpose, then? Tell us your rule set, and we'll regex that
-
How much more would it cost from a bid, to include coding?
-
Are you currently developing any kind of game?
sniko replied to Dominion's topic in Question of the day
Developing, using Panther -
$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` }
-
It's pretty interesting indeed, however, it was a little weird on the eyes/brain whilst changing direction, if you understand?
-
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 :)
-
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); :)
-
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
-
Ah, nice! I wish you luck with your venture :) Possibly list these changes on the site, so players know what's different?
-
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.