Search:

Type: Posts; User: programmingnewb

Search: Search took 0.00 seconds.

  1. Hi again! Um, since it's a Bejeweled like game,...

    Hi again! Um, since it's a Bejeweled like game, do you have any suggestions on how to check for matches of 3, for, or 5 in a row? :)
  2. Bejeweled is the same as Candy Crush (if you've...

    Bejeweled is the same as Candy Crush (if you've played it before):
    -You are given a grid with (let's say) 4 different symbols, and they are randomly printed in such a way that no 3, 4, or 5 symbols...
  3. Hi there! I was able to draw the grid, and as we...

    Hi there! I was able to draw the grid, and as we all know it's a Bejeweled-like game. The goal is to match 3, 4, or 5 symbols of the same type. However, in my grid it's still possible for it to...
  4. I figured it out ^_^Thanks :)

    I figured it out ^_^Thanks :)
  5. Hey, I tried to use 5 letters instead of 2, and...

    Hey, I tried to use 5 letters instead of 2, and it says there are too many arguments for my randbetween function?



    int randbetween(int min, int max)
    {
    return rand() % (max - min + 1) +...
  6. Hi again! Quiiick question void...

    Hi again! Quiiick question



    void drawgrid(char grid[])
    {
    int i;
    int j;
    for (i = -1; i < GRIDHEIGHT; i++)
    {
  7. Oh, okay, thank you! Finally understand...

    Oh, okay, thank you! Finally understand something! :)
  8. Oh, also sir. What does "static const" mean? :)

    Oh, also sir. What does "static const" mean? :)
  9. Oh, it works! Thank you! ^_^ I'm gonna start...

    Oh, it works! Thank you! ^_^ I'm gonna start underestanding it, still have other functions to create >_<'
  10. Oh,it's okay! :) But everyone I've asked...

    Oh,it's okay! :) But everyone I've asked (programmers from League of Legends I befriended) said I should use a 2D array :o I'll just try to figure it out XD
  11. Do you have any idea what the r < 2, r < 4 are...

    Do you have any idea what the r < 2, r < 4 are supposed to be? :)
  12. Hi sir/maam! What are the r < 2, r < 4, for? :)

    Hi sir/maam! What are the r < 2, r < 4, for? :)
  13. Oh, okay, thank you sir! :)

    Oh, okay, thank you sir! :)
  14. I meant, I'd need to write it as a function? :)

    I meant, I'd need to write it as a function? :)
  15. Um, hello! is random_grid_char a function? Sorry,...

    Um, hello! is random_grid_char a function? Sorry, not really good with C yet.
  16. Draw a grid using the following characters?

    Hey there! I'm trying to create a grid using the following characters: !, @, #, $, &.

    It's an 8 x 8 grid, and should contain the characters in no particular order (trying to create a...
Results 1 to 16 of 16