According to rastikzzz development his Vehicle tble is as follows :
[b]CREATE[/b] [b]TABLE[/b] [b]`[/b]vehicle_data[b]`[/b] (
[b]`[/b]entry[b]`[/b] mediumint([color=#009999]5[/color]) unsigned [b]NOT[/b] [b]NULL[/b],
[b]`[/b]flags[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell1[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell2[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell3[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell4[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell5[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell6[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell7[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell8[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell9[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]Spell10[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]`[/b]req_aura[b]`[/b] mediumint([color=#009999]8[/color]) unsigned [b]NOT[/b] [b]NULL[/b] [b]default[/b] [color=#dd1144]'0'[/color],
[b]PRIMARY[/b] [b]KEY[/b] ([b]`[/b]entry[b]`[/b])
)
So, looking at the DBC file how should we fill the fields ?
A line looks like follows :
INSERT INTO vehicle_data VALUES (106, 4, 50896, 0, 50652, 0, 0, 0, 0, 0, 0, 0, 0);
As far as i can tell 106 is vehicle ID. for the other fields.....