Jump to content
MakeWebGames

Isomerizer

Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Isomerizer

  1. Re: guess the 4 digit coed script   $db->query("UPDATE users SET daysold=daysold+1, gess=0");   An extra on of these in the cron, would cause your users to gain 2 days instead of one to there account.. Use... $db->query("UPDATE users SET gess=0");   Damn, this is a rare occasion, a guy who can't spell for shit but manages to code :lol:
  2. Re: [$25] Treasure Map!   Yes, I'd recommend a 350x450 image, 500x500 max. Also, for my game users have requested dubloons for crystals, So i'll be coding another small feature to crystal temple, I'll include this in the mod instructions if you wish to install, up to you.
  3. Title: Treasure Map Mod Price: $25 Includes: - 2 PHP File (One to execute once) - SQL File - Instructions - One Image Features... - Explorable Treasure Map - Automatic co ordination (cron) - 2 Admin functions (no need to access DB) - Manage Map (edit, remove & add co ords) - Credit Dubloons Description The treasure map is the main part of the mod. Users can buy dubloons with real money, once they have purchased these dubloons they can use them to explore the map, one explore = one dubloon. Default price of $0.25 per dubloon (can be changed). If a user is lucky enough to click a co ordinate where a prize is located, they will be rewarded a cash prize, randomized between prize and prize_a. If there unlucky there be rewarded a very small prize between $80-$100. The Map treasures are generated from the admin panel function, or if your lazy, an automatic 50 random generated co ords of treasure locations are inserted into your database using a daily cron. Additional co ords can be added under the admin function (removed, added & edited). This will bring in extra money for yourself (the game owner) as users must buy dubloons, or buy for others. So basically this mod should pay for itself ;). Map Preview: Buy Function Preview: Admin Function Preview: (Does not come with an IPN, but should be easy enough to add to current one) Purchasing: Contact me through here, MSN or email. Can be seen working @ www.amazon-survival.com/map.php
  4. Re: Securing Variables   Nope, I'm sure that was Deception, hes no longer active on these forums. :-(
  5. Re: [$10] Secure Password System   Are you trying to be funny? Or are you being serious... If you are then.. http://www.pixel2life.com/publish/tutor ... ncryption/
  6. Re: [$10] Secure Password System   As I've said a few times, you do not decrypt MD5, you just type it in a site that contains a massive database full of MD5 strings, it then compares them all and see if it can match any. If it can it will give you the password, is pretty rare if you use a long enough password.   How can you possibly crack it if you have no idea what the salt is?
  7. Re: any idea's If we had the ideas, we'd make them our selves :-P
  8. Re: Upload Image & Display $10   Dude.. did you even read this thread through out? Or did you just see one post and decide to stick up for killah, with some dumb ass post? If you don't want shell's just use this: http://criminalexistence.com/ceforums/h ... 385#p51385 Its free! Something you can afford! :-o
  9. Re: [mccode] Mods 4 Sale - UPDATED POST   Change font color from admin panel? Damn.... :lol: Unblock me :-)
  10. Re: Upload Image & Display $10   Yep, I've seen you posted something like this under PHP section, been using for a while now under profilepics. I'll include into the mod instructions for extra security.   # AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi Options -ExecCGI
  11. Re: Crons Guide This is what i use and it works fine..   mysql_query("UPDATE fedjail set fed_days=fed_days-1"); $q=mysql_query("SELECT * FROM fedjail WHERE fed_days=0"); $ids=array(); while($r=mysql_fetch_row($q)) { $ids[]=$r['fed_userid']; } if(count($ids) > 0) { mysql_query("UPDATE users SET fedjail=0 WHERE userid IN(".implode(",", $ids).")"); } mysql_query("DELETE FROM fedjail WHERE fed_days=0");
  12. Re: Securing Variables Thanks Floydian, updated my clean function. :-)
  13. Re: Upload Image & Display $10 Hmmm... I don't see how my mod is insecure, as... Even if you attempt to upload your shell... It doesn't matter? PHP re-creates the image using PHP, then deletes the original script uploaded, if it cannot re-write (if its a shell) it will stop the process and not upload.... I worked quite a lot on that mod, with various research in PHP, helped me discover a lot more functions. I doubt you can upload your renamed shell... :wink: Ok, so lets test this on the uploader i made (the free secure one)... Attempt to upload: sh3ll.php%%00.jpeg Result: The image you are trying to upload seems to be corrupt please try again! Back :roll:
  14. Re: [mccode] Mods 4 Sale - UPDATED POST Ohh Silver baby... Interested in purchasing your mailbox mod, contact me when your online. :-D
  15. Re: When is it time...   Don't see the logic in this? How will it speed up my server?   I've contacted them, lets see what they have to say... --------- I have a reply, i guess it was their server...  
  16. Re: When is it time... My game is a real time game. Shared server I'm currently on: http://www.galaxyvisions.com/cpanel_hosting.html Caching, do you mean something like this: http://www.ilovejackdaniels.com/php/cac ... ut-in-php/ My current game stats are not to high.. Total Users: 2801 Users Online: 20 Maximum Online: 31 Maybe it may be the code, I've re-wrote all pages to parse faster, Maybe i should go over all the queries.
  17. For a game to move from a shared server to a dedicated server? Have no idea when this should happen, and im curious... Amount of users? Amount of users active? And any other information would be appreciated.. (My games struggling to load, is it time to upgrade?)
  18. Re: [Free] [v1] Jail   Included on first post. Updated the script too. Enjoy.
  19. Re: 1st AS/CE MCCODE Modification [AutoTrainer] moyles, and all else that purchased it, contact me.. I've updated the scripts.
  20. Re: 1st AS/CE MCCODE Modification [AutoTrainer] Nice intro to the mod md. Hope we get some purchases. Nice unique idea for a mod. :)
  21. Re: [V2]Lock Down[V2] Kyle, all that extra code and column in users isnt required, I'm going with Ghetto.. Just add the admin IP so it can allow the admin to have access, use || for various ips...   $regon=TRUE; if($regon=TRUE && $_SERVER[REMOTE_ADDR]!="admin ip here" ){echo 'The game is not open yet.'; exit;}  
  22. Re: Adtoll review by Vorlen From using AdToll as an advertiser, I must say..very impressive. A lot of views & clicks when on a network ad. Sponsored ads are great too, as you can select from a wide range of various sites where you want your ad placed. Just ordered one for yuwie, and currently running 2 network ads plus 2 sponsored ads on CE.
  23. Isomerizer

    Php

    Re: Php   http://php.net/ Explains everything to do with php, in depth..
  24. Re: Looking For MedPack Fix This is the code i use in itemuse.php and it works fine..   if($r['itmtypename'] == 'Medical') { $stat="Health"; $f=mysql_query("SELECT * FROM medical WHERE item_id={$r['itmid']}",$c); $fr=mysql_fetch_array($f); mysql_query("UPDATE inventory SET inv_qty=inv_qty-1 WHERE inv_id={$_GET['ID']}",$c); mysql_query("DELETE FROM inventory WHERE inv_qty=0",$c); mysql_query("UPDATE users SET hp=hp+{$fr['health']} WHERE userid=$userid"); mysql_query("UPDATE users SET hp=maxhp WHERE hp > maxhp"); if($r['itmname'] == 'Full Restore') { mysql_query("UPDATE users SET energy=maxenergy,will=maxwill,brave=maxbrave WHERE userid=$userid",$c); $stat="Energy"; } if($r['itmname'] == 'Motivation Potion') { $stat="Motivation"; mysql_query("UPDATE users SET will=maxwill WHERE userid=$userid",$c); } if($r['itmname'] == 'Small First Aid kit') { mysql_query("UPDATE users SET hospital=hospital-50 WHERE userid=$userid",$c); } if($r['itmname'] == 'First Aid Kit') { mysql_query("UPDATE users SET hospital=hospital-75 WHERE userid=$userid",$c); } if($r['itmname'] == 'Morphine') { mysql_query("UPDATE users SET hospital=hospital-100 WHERE userid=$userid",$c); } echo 'You use a '.$r['itmname'].'. You feel a bit of '.$stat.' coming back to you.'; mysql_query("UPDATE users SET hospital=0 WHERE hospital<0", $c); }
  25. Isomerizer

    Php

    Re: Php   http://www.w3schools.com/php/default.asp Lite is free, I'd recommend v2 (if you really want dbs) Try messing with the login or header first as they are probably the most easiest.
×
×
  • Create New...