Search:

Type: Posts; User: quzah

Search: Search took 0.13 seconds.

  1. Replies
    20
    Views
    10,929

    I've already given examples of what is wrong....

    I've already given examples of what is wrong. What do you mean to be happening here:
    if(paint==1 &paint=20);if paint is one then make paint 20?
    if( paint == 1 )
    paint = 20;You may also want to...
  2. Replies
    20
    Views
    10,929

    You have a ton of problems with your code. Fix up...

    You have a ton of problems with your code. Fix up all the stuff I mentioned, and then post your code. Also, your indentation is terrible, and you keep using random pairs of braces where you don't...
  3. Replies
    20
    Views
    10,929

    && means "that thing there and this thing...

    && means "that thing there and this thing here..."
    & means bitwise and (the bits in this and that that are both set)
    = means assign a value to a thing
    == means compare a value to another value
    ;...
Results 1 to 3 of 3