Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. 1. power() is a function, created by the modification creator, maybe they put it in global_func.php file. 2. global $db;
  2. It will be emailed. For those who have already received the modification - before the update - I've sent it to you. (Version 1.1 - In zipped folder)
  3. Version 1.1 Released! View Details Addons + Able to choose no course + Able to make the craft location specific
  4. @Danny696 - I hope you're not trying to imply anything here. Can you PM me a link to your version? [On screen query bug has been fixed] @Dominion - Thanks for linking to the collaboration board
  5. I installed the main files of mccodes for testing, and forgot to upload 'sglobals.php', that's all. It'll be corrected as I get home @Replies; Thanks for the kind replies @CavellA; Although I agree people need to know about scammers, you can't say it, without evidence. @Bio; Good News! Thank you
  6. sniko

    Phone Scam

    Haha, was he being difficult for a reason? :P
  7. Future Patch Information Brief Description This crafting system allows your users to craft items by using other items. It allows ease of functionality to the staff, who add the process of crafting, and allows these constraints to be put into place; - Minimum level - Money needed - Crystals needed - Minimum days old - Course to be completed (Ver 1.1 - You can choose to not have a course to complete) - Location specific, or all locations (Ver 1.1) - Need to be donator? The system allows you to have a maximum of 5 items to craft the 1 item, and a minimum of 1 item to craft the 1 item. (See screen-shots or demo below) The system shows the user what they need to do/have before they can craft a specific item - all set by staff. (See screen-shots or demo below) Try, before you buy Demo - www.mcc.sniko.net Screenshots - www.imgur.com/a/Mg0LH/embed (Gallery) Features + No columns in the `users` table + Secure + Easy to use + Documentation/Instructions Payment ! PayPal only The cost of this system is (USD)$25 and payments will only be accepted through PayPal. Please send $25 USD to my PayPal, and in the comments, please specify the e-mail address you would like it sent to, and your sites URL. License Once purchased, your license only exists on the URL you specified in the PayPal comment transaction. Note If you're using the demo, you are welcome to add courses/crafts and test to your content. Thank you for your time. - sniko
  8. Ah yes, Thank you Octarine!
  9. I see, thanks for pointing that out Octarine. Just a question - kind off a tangent from the topic - but, when you would you advise 'archiving' then?
  10. Why not create a new table, and archive the deleted mails to that new table?
  11. Ah, I was testing in Chrome. No worries at all. I have msn, but I prefer skype. I'll send you my details in a PM
  12. All I can say is, my Playstation was killed by the infamous yellow light.
  13. @SRB - Edit 2 was pretty good :) @DJK - What's this about? :P
  14. * Auto-Login upon register, maybe ? * "Choose your theme", Images work * Although it's on a free server, it's quite slow. Try optimizing queries. * Grrrr, Hate marquees. * Forums > Main forum. Is there a need for that iFrame ? * Your Misc > Personal Stats. Blue text on dark grey background, hard to read. * It may just be my end, but, I hover over the menu, put my mouse in the iFrame and scroll. This happens * A tutorial ? * A story-line ? * You use an iFrame to display the pages. So when I go here it mucks up. Try This (For those not loggedin, it is http://www.thm.x10.mx/race.php) * Crimes. I have a 0% of succeeding all of them. Great.
  15. Try something along the lines of;
  16. - Finish my final exams, in June, & get good results - Launch a couple of projects before the year ends - Become successful in what I do this year - Release v2 of my McCodes gang system
  17. (I assume you're using cPanel, with phpmyadmin and mysql databases - Go to Mysql Databases in your cPanel * Follow the instructions * Add the user to the database - Go to phpmyadmin - Click your database name, that you create in mysql database - Scroll down, you should see the following form - Fill it out - Press "Go" - & fill in the column names
  18. Ah yea, I see that now! Thanks, the both of you
  19. Nice Article! I'm a little confused, mind clearing something up for me? You've used macrotime(true) in your encryption algorithm, which returns the current unix timestamp in microseconds. 1327681158.0721 You've then only used the last 8 characters 158.0721 Ok, cool. You now store it, I assume, as the encryption method has been run. (Ignoring the rest of it, separated by "$". So, Let's run the passcode "traintrack123" using your function, a few seconds apart. sha1$2a1badb5$01571144934a9fb2b55a15659ca592e9352f19eb ...Waits a few seconds, and runs the same thing again.... sha1$a344fe7a$9e4b77bc97ca1258439a271b295cc17e19897118 The bold part is also encrypted using, default, sha1. They are two completely different strings. Now I've said that. How would you look-up the stored passcode and match it with the one they just entered, as the mircotime(true) would return a different string.
  20. $db->query("INSERT INTO mail VALUES ('',0,1,$i,unix_timestamp(),'Welcome','Welcome {$ir[\'username\']}.to gang land killers! Please Read the Tutorial,<a href = \'helptutorial.php\'>Tutorial</a> To receive your Welcome Starter Pack mail admin,Enjoy the game If you Need any help just mail me or use the chat box')",$c); $db->query("UPDATE users SET new_mail = new_mail + 1 WHERE userid = $i"); if($_POST['ref']) {
  21. $db->query("INSERT INTO mail VALUES ('',0,1,$i,unix_timestamp(),'Welcome','Welcome {$ir["username"]}.to gang land killers! Please Read the Tutorial,<a href = "helptutorial.php">Tutorial</a> To receive your Welcome Starter Pack mail admin,Enjoy the game If you Need any help just mail me or use the chat box')",$c); $db->query("UPDATE users SET new_mail = new_mail + 1 WHERE userid = $i"); if($_POST['ref']) {
  22. I'm with H4x0r666 on this one, very good job!
  23. $get = $db->query("SELECT users.userid,inventory.inv_itemid FROM users LEFT JOIN inventory ON users.userid=inventory.inv_userid WHERE inventory.inv_itemid=622 AND inventory.inv_qty>0 AND users.cybermoneyba>0"); $fourperc = array(); #Create an array for later while($r = $db->fetch_row($get)) /* Populate the array */ { array_push($fourperc, $r['userid']); #Add to the array of people who have 4% increase } while($r = $db->fetch_row($get)) { $db->query("UPDATE users SET cybermoneyba=cybermoneyba+((cybermoneyba/100)*4) WHERE userid IN ($fourperc) AND cybermoneyba>0 AND cybermoneyba<10000000"); #Add 4% interest $db->query("UPDATE users SET cybermoneyba=cybermoneyba+((cybermoneyba/100)*1) WHERE userid NOT IN ($fourperc) AND cybermoneyba >0 AND cybermoneyba<10000000"); #Add 1% interest }   Try that
  24. If the forum software is messing with the script, upload to pastebin.
×
×
  • Create New...