
Decepti0n
Members-
Posts
731 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Decepti0n
-
Re: The world mite end on Wednesday 10ths september 2008... It won't, for one the Sun is a horrible website to get information from, for two the chance that anything bad happens is so small it's pointless to worry about it, for three there's way too much feat about science that is based on absolutely nothing
-
Re: Sick & Tired RAWR man im tired
-
Re: Sick & Tired BUT ARE YOU BETTER THAN KING DECEPTI0N
-
Re: user change layout help? Because you're trying to get $ir before it's even set...... if ($ir something) // Fifty lines later $ir = ''
-
Re: [V2]Ranks Mod!!!![V2] It's still not going to work If you have them at level 4, their rank will be #0. If you have them at level 5, their rank will be #0. If you have them at level 6, their rank will be #1. Level 7? #2. 8 would be #3. In otherwords a rank per level. Also you're loading the image 'images/rank/1'
-
Re: [V2]Ranks Mod!!!![V2] Except that'll loop forever or not at all and kill the script
-
Re: v3 game engine Wahey, watch out, he uses sprintf. What a game changer
-
Re: v3 game engine i no a some more inside info and that is v3 is going to be capable of ripping holes in space and teleporting me to space thats all i can say.....
-
Quickest way to test your Crons without using cpanel
Decepti0n replied to Uridium's topic in General Discussion
Re: Quickest way to test your Crons without using cpanel You seem ... upset -
Re: Has Chedburn of TC gone nuts? Your reply was lame and I can see where he's coming from with people copying everything they make (poorly), but I doubt he'll try and/or be able to shut them down. Think of things yourself that aren't copy pasta with words changed. Maybe you'd be a bit more credible Also, what the hell would encrypting his source do?
-
Re: Mccode username ctype_alnum The one Magictallguy posted is pointless, why would you want users to have a username of *@!&$%^* anyway? Lostone's didn't work because it didn't match the entire string I think. Dork
-
A Donator Pack System all Mccoders will want....
Decepti0n replied to Uridium's topic in General Discussion
Re: A Donator Pack System all Mccoders will want.... I dont get it. So users buy DPs (like normal), get a "spot" to put an image (can make that anyway), then you send out the DP (which is normal I think). ...?? -
Re: Captca code mccodeV2 Damn, logging out, that'll stop people with bots.
-
Re: Time Stamp. if ($last_on > strtotime('-4 days')) { // do interest }
-
Re: Whats going on? Yeah, the dot is a wildcard for any character, so it'd match "sahfoashdcom" as well. Try changing it to: if (preg_match('~(www\.|http\://|\.com|\.co\.uk)~', $_POST['message']) || preg_match('~(www\.|http\://)~', $_POST['subject'])) But honestly, there's no point trying to stop links in mails, it's pretty futile and people will get around it
-
Re: Register [Free] lol what the hell, that has to be one of the worst ideas I've heard of. You're completely changing what they enter, you're changing their password even. User: (enters password "div234db001") Script: Alters password and now it's 234001 User: Logs in with original password Script: DENIED You know you can't just copy and paste things around and think they'll work right?
-
Re: ispy ( not a rip-off of apple ) taskbar
-
Re: Programs Why don't you think it's good for php?
-
Re: Register.php create user on SMF Forum It's possible but you'll need to know where to look. When they register, insert the same info into the smf database (being sure to alter it to comply with say their password hashing) That's about it. Also most forums allow you to add a table prefix, so if you prefix the forum tables with something like "smf_" you'll be able to recognize them in the same db
-
Re: [FAQ] Quotes, and heredoc I don't mean a php template sort of system like cakephp or codeigniter, I just mean a way to separate presentation and logic. In other words, calculate all your variables, and pass them through a function to display the actual html People can do ajax without a library, but there's no reason to. I use jQuery when I need it, both for ajax and effects sometimes. What library would you use for JSON? Just include this file and it's easy
-
Re: [FAQ] Quotes, and heredoc Just a few things, <?=$variable?> is valid and it's short for <?php echo $variable; ?>. You don't need the ; at the end because it's implied by the ?> bit, and the equals sign just means echo apparently. Also, heredoc syntax can be any length of characters you want, it doesn't have to just be 3 characters Overall, your best bet in the long run is to use a templating system
-
Re: Ill code anything for anyone... You could at least make it slightly believable and not put you own 5.1 PB of storage space, which would run you about several million dollars to set up
-
Re: v3 game engine Unless this "magical version 3" is DRASTICALLY better, it won't be worth the storage space it takes up on your compute.r You'd be better off learning how to build a game/site from scratch rather than shelling out money on a pointless piece of software
-
Staff Function - Edit User - V2 - Enhanced Version
Decepti0n replied to HarryB's topic in Free Modifications
Re: Staff Function - Edit User - V2 - Enhanced Version @Harry: What? @Nyna: It's ok, I think I made it to be used anyway, it's just funny that it hasn't even been changed except I think adding that logging bit in Edit: link Still don't mind, I only posted it to see if people would perhaps learn switch rather than 2-3 separate functions for one result (and even by (my) today's standards it's horrible)