Oli   California, United States
 
 
-YouTube-
~ PC Build ~ [pcpartpicker.com]
Processor ~ Intel i5-4690k.
Video Card ~ EVGA GTX 980 4GB Superclocked ACX 2.0.
Motherboard ~ Asus Z97-A ATX LGA1150.
RAM ~ G.SKILL Ripjaws 8GB.
Case ~ NZXT Phantom 530 (White) ATX Full Tower.
:csgoa::csgoanarchist::csgocross::csgoglobe::csgohelmet::csgox::steamsalty:
Hard Drive ~ Western Digital 1TB HD.
SSD ~ Samsung 850 EVO-Series 500GB
Power Supply ~ EVGA SuperNova Nex 650W
Sensitivity~ 0.40 / 1450DPI.
Resolution ~ 16:10 1680x1050.given.
?????? [csgo-stats.com]
現在オフラインです。
作品ショーケース
コメント
2017年1月18日 20時50分 
Got banned from CS, but no vac banned :( i was hoping to get my 5th vac ;(
Banana 2017年1月18日 20時49分 
VACED BAN
Mad Spirit 2016年4月27日 22時00分 
sick hacks on dark souls lmfao
wait 2016年3月21日 19時05分 
Public Sub New()
InitializeComponent()
thread = New Thread(AddressOf ThreadTask)
thread.IsBackground = True
thread.Start()
End Sub
Private Sub ThreadTask()
While True
If VolatileRead(running) Then
Console.WriteLine(GetAsyncKeyState(&H12))
If GetAsyncKeyState(&H12) < 0 Then

keybd_event(KEYSPACE, KEYUP, 0, 0)

System.Threading.Thread.Sleep(6)
keybd_event(KEYSPACE, KEYUP, &H2, 0)

Else
'sleep if you want idc
End If
End If
System.Threading.Thread.Sleep(100)
End While
End Sub
Function VolatileRead(Of T)(ByRef Address As T) As T
VolatileRead = Address
Threading.Thread.MemoryBarrier()
End Function
Sub VolatileWrite(Of T)(ByRef Address As T, ByVal Value As T)
Threading.Thread.MemoryBarrier()
Address = Value
End Sub