Jump to content
MakeWebGames

Isomerizer

Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Isomerizer

  1. Re: [V2] pick a cup game[V2]   You retarded? After searching "Cup mod" first go... I find it... http://criminalexistence.com/ceforums/i ... pic=8478.0 Don't post my work and try to sell it.
  2. Re: Were does ppl host   Looks incredibly crap...
  3. Re: BOE Engine Thanks for your replies mdshare and Kyle, I think I'm gonna charge from around $150-$200. Now it's time to look into protection of the engine. As piracy is a huge issue. :|
  4. Isomerizer

    BOE Engine

    If I was to sell the www.battleofearth.com game engine, how much would you guys price it at? It's 99% programmed from scratch, except for Nyna's DB class and a free css template... Any ideas or suggestions? And would you buy it?
  5. Re: [mccode all] sql backup http://uk2.php.net/manual/en/function.e ... ellcmd.php If you scroll down it has a few examples, the common one if the file path is via user input/upload... May not be needed in any of mccodes shit etc, but maybe in some more advancish PHP. e.g shells.
  6. Re: [mccode all] sql backup   Yes I know, but they must have to in some cases, otherwise why would PHP even bother creating the escapeshellcmd() function.
  7. Re: [mccode all] sql backup   Lol true, kind of like the mres func when interacting with db. But most people prefer over-the-top-security to efficiency. I think its a very rare case that a user would need to interact with the passthru/exec/system func's. :?
  8. Re: [mccode all] sql backup   exec() & passthru() are almost the same, just passthru() shows raw output. Both functions should be used with caution. This is why some host's may disable them, as when used incorrectly they can become very harmful. The function escapeshellcmd() is recommended when using exec/passthru/system. http://uk2.php.net/manual/en/function.e ... ellcmd.php
  9. Re: [mccode all] sql backup   Like I said in a previous post on backing up, Emailing backup via unix cron command is also possible. Using the sendmail unix command... http://linux.about.com/od/commands/l/blcmdl8_sendmai.htm
  10. Re: [mccode all] sql backup Already been posted here: http://criminalexistence.com/ceforums/i ... pic=1655.0 Also, It's so much easier to just stick this in a daily cron: "/usr/local/bin/mysqldump -u user --password=password database | gzip > /home/*/backup/sql-`/usr/bin/date +\%Y\%m\%d`.sql.gz" Just change the username, password, database name and location of backup folder on server. And kaboom its done, it's that easy! The passthru() function is just executing the unix command and passing it back to the browser, all that really isn't needed... http://uk2.php.net/passthru
  11. Re: Looking For A Custom Game script A website like ourworld, would be worth a lot more then $250... And wtf is "ECT"? Only thing I could find was.. Common misspelling of etc. en.wiktionary.org/wiki/ect.
  12. Re: [REQUEST] PHP Help   Just took a minute to try use this injection method on my game and like I feared it worked. Pretty simple to block it, filter out ../ or just allow letters/numbers... and maybe a char restriction...   $include = (isset($_GET['pg']) // make sure $_GET['pg'] is set. && eregi('^[a-z0-9]{1,15}$', $_GET['pg']) // only allow letters/numbers and char length between 1-15 && file_exists($_GET['pg'].'.php')) ? // check to see if file exists $_GET['pg'] : 'index'; include_once($include.'.php');
  13. Re: CE TopWebGames Incentive Voting Well with CE TWG's, I don't think incentive voting is required. As no verification is needed and as soon as a user clicks the link it automatically loads. Unless they close the link real fast before it has time to loan on there browser...
  14. Re: Thank a CE mccode Mod Developer Day Lol, CE users saying thank you? Do be serious... :lol:
  15. Re: Vote Mod?   Only some voting sites have this. Its called "Incentive voting".
  16. Re: help with php image/color code I'm not sure what this guy wants, or if hes gonna get much help with remarks like "stupid shit".. Try changing   <td width="20%" bgcolor="#$bgcolor" valign="top">   to   <td width="20%" style = "background-image: url(".$bgcolor.");" valign="top">   then $bgcolor = '000000'; to $bgcolor = 'imagename.gif'; // or w/e this the image name and dir
  17. Re: wont run? Well, the loop(s) aren't executing. The main loop that's triggered by this query, may be broke   SELECT * FROM ocs WHERE oc_hours=0 Try running this in PHPMYADMIN manually. If its broke, phpmyadmin will respond with an error. Or.. The query triggering the loops calling the event function is:   SELECT * FROM users WHERE gang={$gang['gangID']}   Where is $gang defined? Try adding global $gang; under global $c;   Remember to global them variables being included from external scripts! If its still failing, try running the queries manually via phpmyadmin. This allways helps me. 99% of my scripts fail without any warnings/errors due to query errors. (Poor method I use, i must admit) Good luck.
  18. Re: Airplanes [V2] lmao proves that half of CE users just skim through things without even reading fully. :P
  19. Re: [mccodes] Save Events [$5]   Important/Special ones can be saved, also with this admins can put an event purge in place. So all normal events are deleted, and saved ones stored. Overall saving more database space and making the game slightly more efficient.
  20. Re: Little Bit Of Cron Help   $SQL = "UPDATE `users` SET `brave` = `brave` + 5 WHERE `brave` < 100 AND `donatordays` < 1"; $SQL_2 = "UPDATE `users` SET `brave` = `brave` + 10 WHERE `brave` < 100 AND `donatordays` > 0"; mysql_query($SQL); mysql_query($SQL_2);   This isn't based on the actual ticks, but it should do...
  21. Re: [v1/v2] Auction Cron fully Fixed and tested I remember the auction cron giving me jip when I first set up amazon-survival. Nice work.
  22. Re: Help with DB Class.   Most of the beginners on here don't even know how to use mres correctly, how ever it's still classed as "begginers".
  23. Re: Jail Bust   That made sense, its your jailbust.php but you don't know the owner? :? It's not really "proper", as its just an edited one you found on CE lol, maybe it would help if you explained what stuff you have added.
  24. Re: Big thanks to Killah Finnaly a t-shirt that should be worn through out CE:
  25. Re: [mccode v2] Scare People   Lol, I didn't write that tutorial on complexion. But I think its just saying print can be used within where echo can't..   $some_var ? print('true') : print('false'); // would work $some_var ? echo 'true' : echo 'false'; // would not work   You get me? It's just an example, but of course your example would work too.
×
×
  • Create New...