Results 1 to 7 of 7

Thread: Project

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2002
    Location
    liverpool
    Posts
    4

    Project

    i am trying to create a program to improve your aim on games..

    i have NO experience in making programs.. so i am asking for sum1 to accept the challange... (for free)

    it will consist of circles popping up, and moving around for a limited amount of time, in which you must double click the image.

    the images must move in a "random" direction.. all at different speeds.

    the background will basically be white, so that aint a real problem

    there must also be a "level" system.. where you can progress through levels getting more and more experience, and the images speeding up each level

    it may seem a bit complex, but i really want it done.. if any1 accepts the challange, please say so, an then email me the program (it shouldnt be too big in terms of size, about 5 megs at most) once it is complete
    <note to self, insert signature here>

  2. #2
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    why don't you do it yourself??
    all you need to know is the rnd command I guess....
    Sanity is a full time job

    Puh das war harter Stoff!

  3. #3

    Thread Starter
    New Member
    Join Date
    Jun 2002
    Location
    liverpool
    Posts
    4
    waaa???

    i have no idea what-so-ever how to do what you said, i am a complete novice in this area
    <note to self, insert signature here>

  4. #4
    Lively Member Liquid Pennies's Avatar
    Join Date
    Jun 2002
    Location
    Charlotte, NC
    Posts
    124
    rnd is just a method for calculating random numbers. it will calculate a decimal between (but not including) 0 and 1. multiply this decimal by another number and you can make it a number between 0 and your number.

    the only problem is that your program wont really be random unless you tell it to

    Code:
    Private Sub Form_Load()
    Randomize 'Makes your Code really random
    Shape1.top = Rnd * (form1.height - shape1.height)
    'The preceding line will move your shapes y posistion to a random 
    'point on the form without it going off the edge
    End Sub

  5. #5
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    well that would be a start for you now you need to think how to move it around... this could be done by moving it by lets say random angles and you could change the angle to a new random angle after a random time... this way it won't just flicker around... instead of angles you could go with the basic 8 directions first since you would not have to bother with any trig...

    well basically what I am saying... don't ask for people to program your stuff, ask them how to do it, and if you don't have a clue ask them where to start...
    Sanity is a full time job

    Puh das war harter Stoff!

  6. #6
    Lively Member Liquid Pennies's Avatar
    Join Date
    Jun 2002
    Location
    Charlotte, NC
    Posts
    124
    Originally posted by /\/\isanThr0p
    well basically what I am saying... don't ask for people to program your stuff, ask them how to do it, and if you don't have a clue ask them where to start...
    well, that was well said.

  7. #7
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    it was a pleasure
    Sanity is a full time job

    Puh das war harter Stoff!

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