• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Wierd UI Dropboxes

Frodie

Well-known member
I made a Configurable and the Racial Cust Special to work with it. All works fine, but within the Racial Cust Special I have an Array-Based Menu and a usrChosen2 menu.

In the UI the boxes seemed to be placed overtop of each other. I thought it was space in the livename. So I shorten the livename, move usrChosen1 to usrChosen2 and dropped anything that affects the livename, and re-loaded HL. But the boxes still seem to be hovering each other. Am I missing something or is it a bug or something?
 
It must be a bug. Anyways, usrChosen1 and usrChosen2 dropboxes show up fine, just not the array. So I made some simple items, but how do you get this script to work

Code:
if (field[usrChosen1].ischosen = thingid.FGMPAutoma) then
 
It must be a bug. Anyways, usrChosen1 and usrChosen2 dropboxes show up fine, just not the array. So I made some simple items, but how do you get this script to work

Code:
if (field[usrChosen1].ischosen = thingid.FGMPAutoma) then
Make sure you report the bug please!

Code:
If (field[usrChosen1].chosen.tagis[thingid.FGMPAutoma] = 1) then
    ~ do stuff
Endif;
 
How many boxes are you trying to have? I know you can only have 2 with a combination of user1,2,array, an check
 
Thank You! That works great. Weird about the array. Yep I'll report the bug. Thanks again Shadow!
 
Back
Top