Search:

Type: Posts; User: blood.angel

Search: Search took 0.01 seconds.

  1. There are 2 arrays holding 153 elements between...

    There are 2 arrays holding 153 elements between them, which create the 600 or so coordinates of the rubixs cube (27 smaller cubes, 8 vertices, 3 coordinate you do the math :) ).
    The arrays are only...
  2. Replies
    6
    Views
    4,939

    Dual-Catfish, may I download these too?

    Dual-Catfish, may I download these too?
  3. Do you store store one off data arrays in a class?

    I have a class which when initialised performs a one off calculation using 3 data arrays. These arrays calculate the coordinates of the class object (ita a rubixs cube btw).

    My question is this....
  4. Thread: n00b

    by blood.angel
    Replies
    6
    Views
    1,170

    Ah right, you opened an EverQuest file in...

    Ah right, you opened an EverQuest file in Notepad?

    Compiled files look nothing like the written english of the code we write. The english we right is converted into 0s and 1s represented the...
  5. Replies
    1
    Views
    975

    What type of program are you trying to write? If...

    What type of program are you trying to write?
    If its small enough please list it here.
  6. Thread: n00b

    by blood.angel
    Replies
    6
    Views
    1,170

    Compiling makes it into a program auotmatically...

    Compiling makes it into a program auotmatically (assuming it found no errors which would stop the compiling).
    And you cannot open and view a compiled program (an .exe program usually) as it is made...
  7. Replies
    20
    Views
    6,297

    If it works, go for it. Its just reading the...

    If it works, go for it.
    Its just reading the code becomes difficult when you use goto commands. You dont know where the goto is going and where its come from on big programs.

    But to answer your...
  8. Im making an aimbot for it as I type....

    Im making an aimbot for it as I type....
  9. Replies
    3
    Views
    1,904

    I didnt read through your code but if you want to...

    I didnt read through your code but if you want to just copy one pointers location to another you simply pass its memory address into it.

    eg if your original pointer is called orig_point
    and the...
  10. Replies
    5
    Views
    1,159

    Basicallly you are only outputting one character...

    Basicallly you are only outputting one character of each of the names and not all of them.

    n[i][30] only points to one character (the 30th) in each of names. And as the names dont fill up all the...
  11. I thought double array[10][3]; auto...

    I thought

    double array[10][3];

    auto allocates mem for it?
  12. You can perform any of those in any order. As...

    You can perform any of those in any order. As long as you dont change the array contents. Create a duplicate array of numbers for each of the operations which you can discard once you are finished...
  13. Replies
    19
    Views
    1,875

    Man, I havent used goto since 1988 in BASIC on my...

    Man, I havent used goto since 1988 in BASIC on my old Amstrad CPC464.
    The memories.....
Results 1 to 13 of 13