View Single Post
05-20-10, 01:41 AM   #13
Docnsane
A Defias Bandit
Join Date: Jun 2007
Posts: 2
With a little bit of trial and error, I've figured out a bit of how the bars you create relate to the real bars for documentation purposes.

The first 12 buttons you create uses Bar 1, the next 12, uses bar 2, and so on until you hit bar 10 (120 total global buttons).

While you can create additional bars past that, it they will not be assignable as they are reserved for various things such as the totem bar.

It does not matter how you actually split the bars, but the assignment is in order of whatever you create the bars in the config.

Looking at your example,

Code:
bars={
 {B=28,W=7,V=180,H=-320,
  S="[form:1]1;[form:2]2;[form:3]3",N=3,
  K={'1','2','3','4','5','6','7',
     "'",',','.','P','Y','F','G',
     'A','O','E','U','I','D','H',
     ';','Q','J','K','X','B','M',},
 },
 {B=36,W=9,V=180,H=50},
}
B = Number of buttons in the bar
V= Pixels from bottom
H= Pixels from Center, positive going right.
W = Number of buttons per row (rows are generated based on [b]uttons/[W]idth)
S = Switching based on the model form:1 => bar 1
N= ??? I have no idea
K= Key binding, ordered by the order of bars from left to right, top row to bottom, placed in a single dimension array.

So...what's N? I couldn't figure that out at all as the code is of course obfuscated for compactness.

FYI: I'm Pallyana on the "other" forum thread.

Last edited by Docnsane : 05-20-10 at 01:43 AM. Reason: Add who the heck I am.
  Reply With Quote