I realize this is a little old but yes! This is possible!
Although it's all manual at the moment you can setup claims. In your database there will be a table called veteran_reward_templates. With claim_id, name, item_id, charges and reward_slot.
With this table you can setup claims to give to players. A single reward is easy you would do something like
Code:
1 (claim id)
"Some reward name"
item id
1 (charges)
0 (slot)
But you can also do more complicated things like rewards of bags with items, using a common claim id to string them together.
ex:
Code:
1 (claim id)
"Some reward bag"
item id
1 (charges)
0 (slot)
+
1 (claim id)
"Some reward name"
item id
1 (charges)
1 (slot)
+
1 (claim id)
"Some reward name"
item id
1 (charges)
2 (slot)
Probably not the best explanation but hopefully people understand. You can then assign a claim to an account with the table account_rewards. That's fairly straight forward though, account id, reward id and amount. I'm not sure if rewards work on SoD or Live clients atm I'd have to check but they work on titanium and sof for sure.