Jump to content
MakeWebGames

Aqua

Members
  • Posts

    264
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Aqua's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Aqua

    My own Game Engine.

    Re: My own Game Engine.   It would if you were intending to make a proffesional script with proffesional programmers. However this to me seems like a few amateurs hoping and dreaming of creating an engine, so in this case i would have to agree with him ^^ Then again each and every one of us have our own style of coding, so it will be hard to 'secure' each others work.
  2. Re: Game themes   From what i understand he just wants some themes, to base his game on. Fantasy/Wizards Medieval ages Pre-hestoric ages Futuristic/Sci-Fi Detective/Army/Police Modern Life/Work Mafia based Pirate There are thousands....
  3. Aqua

    My own Game Engine.

    Re: My own Game Engine.   Why not something simple like Security Management, instead of 'Master Securers' straight away it suggests this wont work out. Dont tell me what to do, also this is a topic not just a post. Now if you did not think about my post then you are an idiot simple as. It is obvious you have made this very 'typical' shall i say, so take in the critism and actually improve, for your own sake, and good luck on your engine... But whatever floats your boat ;)
  4. Re: My first Login Simplicity is best. The lad had his first shot, and to actually succeed at it is a great achievement. :)
  5. Re: when i import data files Am i right in thinking that the info being enetered into the database is already there in it? Or atleast a part of it... A duplicate error i recall is that there's a column in your database that has a unique key defined on it, so any time it see's that data is being entered into that column that is identical to data already in the column, you get that error.
  6. Re: [mmcode] Major Live Support Attachment [$15-$750] You made this yourself? If so you are much better than i thought :)
  7. Re: [MCcode V2] Ranks     I must be psychic :)
  8. Aqua

    My own Game Engine.

    Re: My own Game Engine. Very cheesy... So Epic Fail :)
  9. Re: [MCcode V2] Ranks Oh typical, more people with characteristics and mental age of children. :) And the person im talking to will probably post below me :)
  10. Re: [mccode] Login It is an internet forum, why do you care what someone thinks of you. Clearly the majority of the people trust you and placed faith in you aswell as rewarded you with praise. If one or two people disagree let it be, re-assure them and let it be.
  11. Re: [mccode] Login Seems CE's atmosphere has not changed at all, just as bad in some areas as it used to be. Really cannot understand the point in arguing, if someone says the work is not yours bursh it off. You tell thems its yours and then ignore, which for me personally is the best proof, you being paranoid about it will make people even more suspicious which equals more arguments. Also its a free speech forum i believe so if someone feels it may be ripped they can have their say... ~LK
  12. I think i found an area that could be exploited; The query would be; SELECT u.*,g.* FROM table_one u LEFT JOIN table_two g ON u.id=g.id ORDER BY $by $ord LIMIT $st,100   The variables contains these data: $by = id ($_GET['by']) $ord = ASC/DESC ($_GET['ord']) $st = 0/100/200/etc.(increases on no of pages.) ($_GET['st']) The fix to this would be; if($_GET['ord'] == 'ASC'){ $ord = 'ASC'; } else { $ord = 'DESC'; } switch ($_GET['by']) { case 'field1': $by = 'field1'; break; case 'field2': $by = 'field2'; break; default: $by = 'field3'; break; } $limit = intval($_GET['st']);
  13. Re: whore house You did not make any changes to it :evil:
  14. Re: A few notes about KK I really think this script is a great one. I managed to finally set this up, but i had other projects on the go so i could not propally develop this one, i do hope to returning to developing KK as i do believe in its potentiol.
  15. Aqua

    Hide n Seek

    Re: Hide n Seek Noone told me it was a 'test game' so i was not aware not i acknoledged it. And just to clarify, Stupid Pointless Annoying Messages, well those immature kids that i pity, posting stuff like Banananaphone i would consider every point mentioned in the SPAM part :)
×
×
  • Create New...