Page 1 of 2 12 LastLast
Results 1 to 40 of 54

Thread: now its cs talk..cool movie

  1. #1

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33

    Question now its cs talk..cool movie

    scroll down
    Last edited by BlackIce_18gt; Jan 12th, 2003 at 07:19 PM.

  2. #2
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Can you please try to explain that a little bit bether. What is that counter?? And what do you mean by hitting the inapropriate command button. Do you mean that when the counter hits a certain number then something should happend?

    BTW why do you only have one down and one right button. Or do you have all of them. But just showing of code for two of them.

  3. #3
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    BTW if you want something to happend when the counter is a certain number you should have on for the X coordinate and one for the Y coordinate. And raise the Xcounter if you click right, and raise the Ycounter if you push dowm and lower the XCounter if you push left, and oower the Ycounter if you push up....

  4. #4

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    keep going
    Last edited by BlackIce_18gt; Jan 12th, 2003 at 07:20 PM.

  5. #5
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    What about making an if test befor incresing the counter. Test if he hits the right button, if he do, then increse it...

  6. #6
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    OK here is the solution I think...

    DO this to all the buttons...

    VB Code:
    1. Private Sub cmdUp_Click()
    2.    
    3.     If intCounter = 4 Then
    4.              imgMario.Left = 2880
    5.              imgMario.Top = 4440
    6.              intCounter = intCounter + 1
    7.     End If
    8.  
    9.     If intCounter = 6 Then  
    10.              imgMario.Top = 2520
    11.              imgMario.Left = 2880
    12.              intCounter = intCounter + 1
    13.     End If
    14.  
    15. End Sub

  7. #7

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    ok thats great
    thx A LOT

  8. #8
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by BlackIce_18gt
    ok thats great
    thx A LOT
    Did you try the code??? Because I think there is one fault in it...

    it should be more like...

    VB Code:
    1. Private Sub cmdUp_Click()
    2.    
    3.     If intCounter = 3 Then
    4.              imgMario.Left = 2880
    5.              imgMario.Top = 4440
    6.              intCounter = intCounter + 1
    7.     End If
    8.  
    9.     If intCounter = 5 Then  
    10.              imgMario.Top = 2520
    11.              imgMario.Left = 2880
    12.              intCounter = intCounter + 1
    13.     End If
    14.  
    15. End Sub

    You see, because the counter hasn't been updated yet....

  9. #9

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    nah man..its fine

    works great!

    thx again

  10. #10

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    yeah i updated it


    rather than in the form load
    intcounter = 0

    i put
    intcounter = 1

  11. #11
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Nothing is bether then that...OK...good luck on rest of the game...

  12. #12
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by BlackIce_18gt
    yeah i updated it


    rather than in the form load
    intcounter = 0

    i put
    intcounter = 1

    So I was a kind of right...but it's nice to see that you can make your own fixes insted of only using helps from forums. Thats the way to go....Have a nice coding...

  13. #13

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    haha...yeah i no SOME of the things but im only noob so....

    thx a lot buddy

  14. #14
    Good Ol' Platypus Sastraxi's Avatar
    Join Date
    Jan 2000
    Location
    Ontario, Canada
    Posts
    5,134
    Hey BlackIce, do you happen to play Counter-Strike under the same name?
    All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
    (Just a heads-up)

  15. #15
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by Sastraxi
    Hey BlackIce, do you happen to play Counter-Strike under the same name?

    Hey...I feeel tjat one was in it right place... ...what about PM Sastraxi...

  16. #16
    Good Ol' Platypus Sastraxi's Avatar
    Join Date
    Jan 2000
    Location
    Ontario, Canada
    Posts
    5,134
    Too lazy
    All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
    (Just a heads-up)

  17. #17
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by Sastraxi
    Too lazy

    Is the Good old platipus getting really old...

  18. #18

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    hey Sastraxi,
    u play cs..
    CRAZY

    i used to play under that name....
    now its just nub

    tell me what ur name is on cs and maybe ill c if i played w/ u once

  19. #19
    Frenzied Member cyborg's Avatar
    Join Date
    May 2000
    Location
    Sweden
    Posts
    1,755
    heh...i play cs too
    Check out the FAQ and do a search before you post.
    My tutorials: Anti-Alias Pixels, Accurate Game Loop, Resource File

  20. #20

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    crazy..
    cs rocks

    tell me ur cs name

  21. #21
    Frenzied Member cyborg's Avatar
    Join Date
    May 2000
    Location
    Sweden
    Posts
    1,755
    cyborg, of course
    Check out the FAQ and do a search before you post.
    My tutorials: Anti-Alias Pixels, Accurate Game Loop, Resource File

  22. #22
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    WHy do everyone play CS...Delta FOrce is so much bether...

  23. #23
    Frenzied Member cyborg's Avatar
    Join Date
    May 2000
    Location
    Sweden
    Posts
    1,755
    havent played DF much....didnt like it much when i played it...
    Check out the FAQ and do a search before you post.
    My tutorials: Anti-Alias Pixels, Accurate Game Loop, Resource File

  24. #24

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    nah man...

    cs is better

    but ive never played df so...

  25. #25
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    I guess that most people like the game they played first...

  26. #26

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    maybe...

    if u guys wanna c MAJOR ownage

    heres a crazy cs movie

    ownage EVERY clip


    http://216.127.78.8/~csflicks/Frags_..._Way_HIGHQ.zip

    the main web page is http://www.csflicks.net/

  27. #27
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    What is that ip...it's on a slow server...I only downloads in 70Kb/sec....

  28. #28
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    OK, I'm up in 80Kb/sec now...but it still takes 50min. Anyone wants to explain what it is????

  29. #29

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    its long:P

    but crazy:P

  30. #30
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    I have downloadet it now...but I din't have enough time to wach it....

  31. #31

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    watch it!

  32. #32
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by BlackIce_18gt
    watch it!
    The time here is 01:19, and I have to go to school tomorrow, but I will wath it when I have time...

  33. #33

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    haha..sorry then

    its 7:30 here

  34. #34
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    BTW I think this thread should be moved to Chit Chat....

  35. #35

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    heh..yeah

    do u no how or if i can change it?

  36. #36
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by BlackIce_18gt
    heh..yeah

    do u no how or if i can change it?
    Ask a mod to do that...or just stop posting in this one and start a new thread in the chit chat forum...

  37. #37

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    ok

  38. #38
    Good Ol' Platypus Sastraxi's Avatar
    Join Date
    Jan 2000
    Location
    Ontario, Canada
    Posts
    5,134
    I play under the name of sastraxi or sunny side up (and once under the name scrambled). However, seeing as I saw a blackice 18 just yesterday, I doubt that was you.
    All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
    (Just a heads-up)

  39. #39
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    [b[Sastraxi[/b] I have always wondered...how old are you?

  40. #40

    Thread Starter
    Member BlackIce_18gt's Avatar
    Join Date
    Jan 2003
    Posts
    33
    yeah... the blackice u saw wasnt me..
    i play under the name nub so..

    if u c a "nub" u no its me

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width