Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    Mshine67's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    1,038
    Reputation
    51
    Thanks
    71
    My Mood
    Devilish
    Don't even bother yourself with it, unless you plan on doing coding in the future.
    Last edited by Mshine67; 09-03-2012 at 04:47 PM.
    This is my first photoshop creation, please let me know in PM what you think, pros and cons, how It could be improved and things of that manner. Or skype gsjackson413

    Successful Trades 23

    Scams 0

    Vouches Uncountable Amount

  2. #17
    Psychotic's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    13,825
    Reputation
    4234
    Thanks
    6,055
    Quote Originally Posted by Whiskey. View Post
    I think it's != , not =!.
    Yeah this.






    Super User since 02.02.2020
    Global Moderator since 09.23.2017
    Moderator since 09.01.2016
    Minion+ since 07.22.2016

    Marketplace Minion since 06.09.2016
    Trove Minion since 06.06.2016
    Middleman since 04.21.2016
    Social Engineering Minion since 02.03.2016
    News FO Freelancer From 11.08.2015 to 07.23.2016
    News FO Head Editor From 08.23.2015 to 11.08.2015
    News FO Head Editor From 07.19.2012 to 08.11.2014
    MPGH News and News FO Founder
    Programming Minion From Unknown to 04.23.2013
    Minecraft Minion From 09.19.2012 to 04.23.2013
    Member since 05.13.2012



  3. #18
    Paul's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    6,296
    Reputation
    473
    Thanks
    1,061
    My Mood
    Sleepy
    Quote Originally Posted by Psychotic View Post


    Yeah this.
    No, not this


  4. #19
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    DEAR MOTHER OF FUCKING GOD GUYS.

    != is the valid expression. != is not equal to.

    a=!b is the assignment operator then the negation operator. If you seperate the tokens, it becomes a lot cleaer (a = !b).
    So

    if(y=!false) {}
    will always execute, no matter what y is equal to. You assign 'y' to !x, !(false), is evauluted as true.

    if( (y=!false) ) {} is if(y = true){}, which, as an expression is always true.

    Sure y=!false compiles, but it doesn't do anything like what you think it does. Seriously, slap yourselfs in the face for having this large of a discussion over this nonsense.

    ---------- Post added at 01:47 AM ---------- Previous post was at 01:36 AM ----------

    Quote Originally Posted by comando2056 View Post


    Both are the same for everything that it applies to I believe.

    No :S Your tests weren't done properly. In the second bit, you assign y to !NULL, or !(0) or !false, which is true.

    Test=!NULL is
    Test=!(0) is
    Test=!false is
    Test=true

    is if(Test = true) {this will always execute, because you are evauluating the expression (Test = true), which is evaluated as an expression as true.

    (y in my debugger is initally true (it wasn't initilized by the first picture), but after the assignment operation at the breakpoint, it was assigned to false.)


    Read my explanation above.
    Last edited by radnomguywfq3; 09-04-2012 at 01:54 AM.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  5. The Following User Says Thank You to radnomguywfq3 For This Useful Post:

    [MPGH]Flengo (09-04-2012)

  6. #20
    Psychotic's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    13,825
    Reputation
    4234
    Thanks
    6,055
    Quote Originally Posted by Jetamay View Post
    DEAR MOTHER OF FUCKING GOD GUYS.

    != is the valid expression. != is not equal to.

    a=!b is the assignment operator then the negation operator. If you seperate the tokens, it becomes a lot cleaer (a = !b).
    So

    if(y=!false) {}
    will always execute, no matter what y is equal to. You assign 'y' to !x, !(false), is evauluted as true.

    if( (y=!false) ) {} is if(y = true){}, which, as an expression is always true.

    Sure y=!false compiles, but it doesn't do anything like what you think it does. Seriously, slap yourselfs in the face for having this large of a discussion over this nonsense.

    ---------- Post added at 01:47 AM ---------- Previous post was at 01:36 AM ----------


    No :S Your tests weren't done properly. In the second bit, you assign y to !NULL, or !(0) or !false, which is true.

    Test=!NULL is
    Test=!(0) is
    Test=!false is
    Test=true

    is if(Test = true) {this will always execute, because you are evauluating the expression (Test = true), which is evaluated as an expression as true.

    (y in my debugger is initally true (it wasn't initilized by the first picture), but after the assignment operation at the breakpoint, it was assigned to false.)


    Read my explanation above.
    Don't know why you went through all that just to explain to people that it's the right expression.






    Super User since 02.02.2020
    Global Moderator since 09.23.2017
    Moderator since 09.01.2016
    Minion+ since 07.22.2016

    Marketplace Minion since 06.09.2016
    Trove Minion since 06.06.2016
    Middleman since 04.21.2016
    Social Engineering Minion since 02.03.2016
    News FO Freelancer From 11.08.2015 to 07.23.2016
    News FO Head Editor From 08.23.2015 to 11.08.2015
    News FO Head Editor From 07.19.2012 to 08.11.2014
    MPGH News and News FO Founder
    Programming Minion From Unknown to 04.23.2013
    Minecraft Minion From 09.19.2012 to 04.23.2013
    Member since 05.13.2012



  7. #21
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Quote Originally Posted by Jetamay View Post
    DEAR MOTHER OF FUCKING GOD GUYS.
    Quote Originally Posted by Jetamay View Post

    != is the valid expression. != is not equal to.

    a=!b is the assignment operator then the negation operator. If you seperate the tokens, it becomes a lot cleaer (a = !b).
    So

    if(y=!false) {}
    will always execute, no matter what y is equal to. You assign 'y' to !x, !(false), is evauluted as true.

    if( (y=!false) ) {} is if(y = true){}, which, as an expression is always true.

    Sure y=!false compiles, but it doesn't do anything like what you think it does. Seriously, slap yourselfs in the face for having this large of a discussion over this nonsense.

    ---------- Post added at 01:47 AM ---------- Previous post was at 01:36 AM ----------


    No :S Your tests weren't done properly. In the second bit, you assign y to !NULL, or !(0) or !false, which is true.

    Test=!NULL is
    Test=!(0) is
    Test=!false is
    Test=true

    is if(Test = true) {this will always execute, because you are evauluating the expression (Test = true), which is evaluated as an expression as true.

    (y in my debugger is initally true (it wasn't initilized by the first picture), but after the assignment operation at the breakpoint, it was assigned to false.)


    Read my explanation above.


    Thanks for the explanation, you're right
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  8. #22
    Baby You Light Up My World Like No Body Else
    MPGH Member
    3amour's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    On My Computer
    Posts
    594
    Reputation
    10
    Thanks
    85
    My Mood
    Asleep
    It means not equal.



Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Help] What these words mean?
    By mizzer3 in forum WarRock - International Hacks
    Replies: 7
    Last Post: 01-02-2010, 06:35 AM
  2. what is these hack?
    By dannybreak in forum Combat Arms Europe Hacks
    Replies: 1
    Last Post: 03-14-2009, 09:04 AM
  3. what do these hacks do?
    By the_hurley44 in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 01-11-2009, 03:55 AM
  4. What's this error mean?
    By Oneirish in forum General Game Hacking
    Replies: 2
    Last Post: 08-20-2008, 07:03 AM
  5. What if these had sponsers...
    By SATANICAT in forum General
    Replies: 12
    Last Post: 09-21-2006, 11:49 PM