I don't really have all the specs right now. I'll try and update this later.
my site is
www.oxy-moron.net
If you want an awards system like I have, it's quite simple, it just takes time.
First, create profile fields. You want multiple-checkbox options for them (so they can be turned on and off) If you want the mods or admins to be able to give awards instead of users themseleves, make each field private.
Now open the postbit or postbit legacy template. Whichever one you use. Legacy is the VB2 style template.
Look on the template sheet for the area you want the awards to appear. If you want them above the avatar look for:
You must first be a
registered member to view any code.
Add the following code above this.
You must first be a
registered member to view any code.
You'll want to make sure that the center tags are at the beginning and end of the ENTIRE awards portion.
Where X is, put the ID of the profile field you're doing the award for.
Y is a bit more complicated.
Quote:
|
Originally Posted by Vbulletin.com Multiple selection fields present a problem when you try to display their values in the postbit. If you use the method described above then you will get a number displayed instead of the selected values. This is due to the method that is used for storing the selected values for multiple selection fields.
Multiple selection fields use a binary scheme to store the selected values. Each option is given a number value, like this:
option 1 = 2^0 = 1
option 2 = 2^1 = 2
option 3 = 2^2 = 4
option 4 = 2^3 = 8
option 5 = 2^4 = 16
option 6 = 2^5 = 32
option 7 = 2^6 = 64
option 8 = 2^7 = 128
etc... |
Here is the link to probobly the most useful page on vbulletin in terms of template modification.
http://www.vbulletin.com/forum/showthread.php?t=108785
Once you've put in the values for the ribbons, you can put a break. <br> and start doing the code for the second option. Like if option one was ribbon, you'll want that displayed above, then a break, then the code for option 2 which in my case is medals.
Once you put in the code for all your options, you're done. The hardest part is providing images. I suggest going to
www.gruntsmilitary.com and using the images of authentic military ribbons that they provide.