Okay guys, I am in the process of creating a character sheet for a game in development. I am trying to use the modified "AMMO" API renamed "TRACKER" to change whatever value is selected in the dropdown. Does anyone know how I can manipulate the API to do this? As of right now, I have been experimenting with this: !tracker @{test1|character_id} rangedloaded1 -1 Here is the error I get: Ignoring warnings and applying adjustment anyway. Was: 0/10000 Now: -1/10000 So, with the above error it changes the rangedloaded1 value but not what I have selected in the drop down list. I need it to update what is selected such as the value mag_qty_1. Here is my dropdown: <select name="attr_rangedloaded1"> <option value="@{mag_qty_1}">Magazine 1</option> <option value="@{mag_qty_2}">Magazine 2</option> <option value="@{mag_qty_3}">Magazine 3</option> <option value="@{mag_qty_4}">Magazine 4</option> <option value="@{mag_qty_5}">Magazine 5</option> <option value="@{mag_qty_6}">Magazine 6</option> <option value="@{mag_qty_7}">Magazine 7</option> <option value="@{mag_qty_8}">Magazine 8</option> <option value="@{mag_qty_9}">Magazine 9</option> <option value="@{mag_qty_10}">Magazine 10</option> <option value="@{quiver_qty_1}">Quiver 1</option> <option value="@{quiver_qty_2}">Quiver 2</option> </select> Getting the correct value to change is the first step. The next step is a bit more difficult which is finding a way to get the API command to work in the Roll Template. Baby steps though, baby steps. Any help would be greatly appreciated. Also, sorry for the sloppy formatting of my post.