Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: [request] Land/Drug Mod Already Created ;)
  2. Re: No Topic   I already told you what i tend to do :P Is this that neat unique thing? or the domain thing xD The domain one :)
  3. Re: No Topic   I already told you what i tend to do :P
  4. Well, i am unfortunate to say, but this time it is definate. I am leaving CE. I will be found on phpfreaks.com forum and on msn is anyone need's me. Tommorow i will be requesting for my account's to be deleted that is, this one and the "Kyle" one i created ages ago. Hope all are happy i am leaving because i know some of you do hate me. Yes, i know who majority of you are. So have fun and good bye.
  5. Haunted Dawg

    template engine

    Re: template engine $page = (file_exists($page) && ctype_alnum($page)) ? $page : FALSE; if(!$page) { echo 'Invalid Page.'; }
  6. Re: Looking for a one click attack system that works with V2 It's like.   $attacking = FALSE; while($attacking == FALSE) { echo 'Attack Script'; //When done set attacking to TRUE; $attacking = FALSE; }
  7. Re: [mccode] Crimes give random money Karlos, people aint very familiar with these thing's :/
  8. Re: [V2] Current Status - What's going on? As far as i can see in his code, it is working perfectly.
  9. Re: [Review] - Killah-City.net - Please Review But zero, thing is. At the time i owned it. I was a newbie coder and just learnt to space my coding out. I owned KC for like 4 months or so.
  10. Re: [Review] - Killah-City.net - Please Review Funny how it "sucked" when i owned it compare to now. Because according to my calculations. Mine still had more hits and more users online daily than today.
  11. Re: [V2] Will Refill! In the done screenshot, it gave you 57.5 will. Shoudlnt it give you 5% will?
  12. Re: What would be better to use? Asigning which is which is very good. For example: UPDATE `users` `u`, `userstats` `us` Is something similar to SELECT u.blah,us.blah FROM `users` `u`, `userstats` `us
  13. Re: What would be better to use? I ran a test on those. My one: UPDATE `users` `u`,`userstats` `us` SET `money` = (`money` + 1),`crystals` = (`crystals` + 1), `IQ` = (`IQ` + 1) WHERE `u`.`userid` = 3 AND `us`.`userid` = 3 Result: Rows Affected: 2 (Took 0.0009 seconds) Your first one: UPDATE users u LEFT JOIN userstats us ON u.userid = us.userid SET u.money = u.money + 1, u.crystals = u.crystals + 1, us.IQ = us.IQ + 1 WHERE u.userid = 3 Result: Rows Affected: 2 (Took 0.0011 seconds) Your Second One: UPDATE users, userstats SET users.money = users.money + 1, users.crystals = users.crystals +1, userstats.IQ = userstats.IQ + 1 WHERE users.userid = 3 AND userstats.userid = 3 Result: Rows Affected: 2 (Took 0.0010 seconds) Seems like each one has got different speeds to them. Then again ran a test on all 3 again and results ended up as follows: 1st => Mine. 5 Seconds 2nd => Yours First. 7 Seconds 3rd => Yours Second. 9 Seconds
  14. Re: [V2]Updated Header[V2] That script i believe is part of my header code which i gave out here quite awhile ago. What it does is. strip the / & .(and after) from the $_SERVER['PHP_SELF']. Then check if it is in the $table array if it is. Declare page like "Exploring", if not display " ". HAPPY!
  15. Re: [Review] Hitmans-Legacy [Review] Maybe because you scammed? How could u sell your game www.hitmanslegacy.com and then call all the members to www.hitmanslegacy.co.uk?
  16. Re: [any version] Removal of 1 minute crons Pog1 leave him. Let him be.
  17. Re: fields misssing It is probly about that. Add me on my msn. My msn you can find by viewing my profile.
  18. Re: fields misssing place some tags around that without the space :/
  19. Re: [any version] Removal of 1 minute crons I would also like to know the exact same question as dementor. If you don't reply leave my thread alone ;)
  20. Re: fields misssing uknown column "userid" in the "field list" Post the SQL here, i am sure it's missing a u. or us. or something infront of it
  21. Re: [any version] Removal of 1 minute crons A cron running every minute uses way much resource of your CPU usage.
  22. Re: Phishing site problem! Ehm, so called runing a dedicated server. If so, how come use free host's? If you can pay $30+ for a dedicated server, don't you think you would purchase a domain first?
  23. Re: [any version] Removal of 1 minute crons Got a better way? Post it then!
  24. Re: [McCodes][v2] Mailbox Layout Mod * NOT STARTING A FIGHT * But if you have finished exam's and got a A in english, either your teacher is stupid or something.
  25. Re: [V2] Very Simple Help Needed Ehm i made a mistake with the will & energy when it's brave. WOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOP FOR YOU!
×
×
  • Create New...