View Single Post
07-15-10, 05:49 PM   #42
ffcloud2000
A Fallenroot Satyr
Join Date: Jul 2005
Posts: 24
Originally Posted by IQgryn View Post
You should be able to specify the index of the first non-nil value and the rest will follow from there. It would look like:
Code:
bars={
 {B=24,W=12,V=-500,H=0,
  K={[13]='Z','X','SHIFT-Q','SHIFT-E',
     'SHIFT-W','SHIFT-A','SHIFT-S','SHIFT-D',
     'F1','F2','F3','F4'}
 }}
(I also removed some extraneous commas.)
the Z keybind seems to be the only key that wants to work properly.. all the other keybinds after seem to start back at actionid1 like i'd have to assign each id before the bind

for example i changed the first 4 keybinds to

Code:
bars={
 {B=24,W=12,V=-500,H=0,
  K={[13]='Z',[14]='X',[15]='SHIFT-Q',[16]='SHIFT-E',
     'SHIFT-W','SHIFT-A','SHIFT-S','SHIFT-D',
     'F1','F2','F3','F4'}
 }}
__________________

Last edited by ffcloud2000 : 07-15-10 at 05:52 PM.
  Reply With Quote