|
-
Jun 28th, 2002, 11:05 AM
#1
Thread Starter
New Member
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>
-
Jun 29th, 2002, 09:29 AM
#2
Frenzied Member
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!
-
Jun 29th, 2002, 12:10 PM
#3
Thread Starter
New Member
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>
-
Jun 29th, 2002, 12:23 PM
#4
Lively Member
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
-
Jun 29th, 2002, 12:48 PM
#5
Frenzied Member
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!
-
Jun 29th, 2002, 12:53 PM
#6
Lively Member
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.
-
Jun 29th, 2002, 01:02 PM
#7
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|