Quote:
Originally Posted by ᶠᶸᶜᵏᵧₒᵤ!BugPoint!
Hello Epvp :) I'm looking for someone who can help in the creation of a AmmoChange
It's something simple I need, if not too much trouble .. infinite thanks leave a couple of pictures, how I need this tool
- The goal would be that I can adjust the time, preferably in seconds
- Selecting the key
:handsdown: :handsdown: Hope I'm not asking for much :handsdown: :handsdown:
If it is actually very Difficult to program, I get... search by other means
|
Hmm it al depends in what language you want to write, i would take VB :) Its not a hard language..
And what you ask is all possible, but not easy to do .. It depends on the Commands you want to use..
For example, in Visual studio you can use Timers, that wil repeat after ... Ticks :)
You can choose how many mili sec are in one tick. But these ticks are never correct haha .. So you have to find out how many you need exactly by playing with it ..
atleast thats a problem i am having :P
Like with the timer i would do this :
If you have timer on 100 ticks standard, this wil make 1000 ticks ..
Put the timer on 10 ticks, and it wil do 100 ticks and then send whatever you have in the textbox;)
Timer 1
Ticks += 1
If Ticks = 10 Then
SendKeys.Send(TextBox1.Text)
Ticks = 0
End If
Or you dont want textbox? You use something like this SendKeys.Send("1")
Good luck :D
Edit : found something that might help you.
Dim milliSecs As Integer = Timer1.Interval
If (Int32.TryParse(TextBox.Text, milliSecs) AndAlso milliSecs = 0 Then
Timer1.Interval = milliSecs
End If