I may get the award for n00b question of the day, nonetheless here goes.
The Crystal_Tech SV profile I use has left shift being used as a toggle, which works flawlessly if i tap lshift. The problem is that if I hold it down LShift for longer than .2 seconds it cycles (repeats) enabled/disabled continually until released. The default setting for the toggle is set at .2 sec, so I attempted to increase that time to various amounts to no avail. Ideally I would like it where, shift key down, shift key up = toggle. I don't know if this is an issue with sticky keys? my hardware or a profile issue. I've tried enabling and disabling sticky keys. I've attempted key repeat speed from control panel, and frankly I'm stumped.
If it is in fact a LShift issue that can not be changed for whatever reason, I would like to change default profile bindings. So far I have been unsuccessful in pulling that off even with reading Crys_Techs tutorial regarding a similiar question. Any guidance/ideas would be appreciated.
Code:
--Code by Crystal_tech
if modtime == nil then
modtime = 0
end
---Toggle for Main CDs
if lShift and GetTime() - modtime > .2 then
modtime = GetTime()
if CDSwap then
CDSwap = nil
PQR_WriteToChat("Rapid Fire, Readiness, Stampede: \124cFFE61515Disabled")
else
CDSwap = 1
PQR_WriteToChat("Rapid Fire, Readiness, Stampede: \124cFF15E615Enabled")
end
end
--End Code By Crystal_tech