View Single Post
06-10-05, 07:15 AM   #19
Beladona
A Molten Giant
 
Beladona's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 539
one problem. You changed your step to 1-12 instead of 2-12 like it was before. In the bottom configuration variables, you need to add:

DiivSkinTextures[1] = {a = 0.0, b = 1.0, c = 0.8984375, d = 0.9882812}; (or whatever the texture coordinates are for that texture)

Otherwise when they select 1 on the slider, it will return an error because there is no corresponding configured texture for the value of 1.

Also, you added variables to the very top of the lua script. If you define

DiivSkinSettings = {};
DiivSkinSettings.hbar1 = 1

it will reset the options they have configured every time they load. Leave it in the OnLoad statement as it will detect if the value is there, and if not it will add it.

Last edited by Beladona : 06-10-05 at 07:18 AM.
  Reply With Quote