-
Posts
3,368 -
Joined
-
Last visited
-
Days Won
126
Content Type
Profiles
Forums
Events
Everything posted by Dave
-
I think there should be more pm space
Dave replied to HITMAN 17's topic in Feedback and Site Support
I deleted over 250 of my PM messages and i've still only just got 86% left... Maybe as an incentive for users have it so the different forum ranks get different mailbox space? -
Re: Runescape script Runescape and wow are both very large games... Worth millions each... Creating something from scratch even close to these games is gonna cost you alot of money!! You could start up a wow/rs private server with are perfectly legal aslong as they dont interfere with anything inside the actual game...
-
Re: why isnt my text going to the LEFT? Try <div style="text-align: left;"> Text :] </div>
-
Re: {PHP-Engine} {Free} Business is business... Completly usless and pointless.... Thats not for you to say Dave. That'd be what the mod are there for =] This forum moderator team is way to small for the mass of users... They've got about 5 and there is hardly any of them online :S... The mod team along with alot else on this forum needs a re-think...
-
Re: How to secure a few things! Nicely done faz! And +1 to karlos for helping :)
-
Re: Attack System [Paid Request] Was great at the time... Badly in need of a complete re-code now... and its probably not what your looking for.
-
Re: {PHP-Engine} {Free} Business is business... Completly usless and pointless....
-
New forum for mccodes v2 that 100% works (beta)
Dave replied to legrolls's topic in General Discussion
Re: New forum that 100% works (beta) There is a comma after the link which is giving a 404 page might wanna change that -
Re: [v2] Preventing bad words and advertsing thanks skyfuse No problemo :) Always happy to help.
-
Re: IRC Trouble Get the code from the top of the cron files (It's to late for me to get it :P) and use that :)
-
Re: A possible free job? Ironic how you purchased the template of us now we're coding it for free :P
-
Re: [v2] Preventing bad words and advertsing You should really put all the words in an array like $array1 = array("Word1", "Word2"); $array2 = array("NewWord1", "NewWord2"); $_POST['newdata'] = str_replace($array1, $array2, $_POST['newdata']);
-
Re: A possible free job? Hey, I'll be happy to do this for free contact me on MSN [email protected].
-
Re: Admin panel I like the new bots XD Well i dont but yeah :) There more intelligent there getting posts so there signatures get on loads of posts then bamm!
-
Re: How to change Id number You need to change the id on the userstats aswell i beleive.
-
Re: What are you listening to right now ? Sex Toyz - Brokencyde.
-
Re: Best Band Considering it's not there XD Bring me the horizon is intense.
-
Re: Security $1 [Mc Code V2] But it still wouldn't secure you. I think someone done something like... function blah($what) { foreach($what as $key => $value) $what[$key] = mysql_real_escape_string($value); return $what[$key]; } $_POST = blah($_POST); $_GET = blah($_GET); Or something like that. I've seen that on a few sites :) But what if you dont wanna mres the string :P...Then your stuff.
-
Re: GRPG Forum I think this is a good idea :) Cause then there wont be 2 billion mccode games all over the net it will be more spread out between the two *Prays*. If the admin team is interested i think it would also boost page views from google backlinks and people trying to find mods, support and other generally things to do with GRPG :)
-
Re: [mccodes] Advanced Pet Mod [$15] Adil Bhuta I hate you now :)
-
Re: [Web 2.0] html nav bar [$10] he posted the css and js not the php I dont read it having any PHP?
-
Re: [mccodes] Advanced Pet Mod [$15] BreakingLight I have alot more respect for you now for resolving this issue.. (Even tho it did take a while), BreakingLight if you want I can look over the codes to check there secure and in fully working condition to try and stop this incident re-occuring.
-
Re: [sHOWCASE] Avalon Well done! But 100 players is nothing if you want to be succesful, Your gonna need to put a large sum of money into advertising before you start seeing any income coming back into your pocket. I've found that AYG (http://advertiseyourgame.com/) seem to be the cheapest and get you the most signup's per a click. But pay a bit more and get a professional to make you a banner (Unless you are a graphics designer yourself) because you dont want to be spending a few hundred bucks on a banner which looks like nothing. Also im loving the concept of the game :) Something not mccode like, Its been modified from Mccodes im guessing to something which i think is great! So nice job +1
-
Re: [mccodes] Advanced Pet Mod [$15] Yes offcorse but i'd instantly request a refund and then the whole thing wouldn't end up in a silly flame war which is going to do what exactly? Give people a bad impression of you as human beings and just make you guys hate each other more! So get a refund of live with the broken mod... Or try fix it?
-
Re: user_level colours If you user a function to print out your usernames (Such as using Username($userid) instead of just using $ir['username']) this is very easy and just involves modifying the function, But if your not there are other ways you could attempt to do it globally on your game such as in the globals checking like this.... if($r['user_level'] == 2) { $r['username'] = "<span style="color:red">".$r['username']."</span>"; } else { $r['username'] = $r['username']; } No idea if this will work but i suppose its worth a try... I use $r because i beleive Mccode uses that on most pages (Viewuser and so on). Report back if it works :)