• 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

Final Test Script Questions

Mettius

Well-known member
Hello all,
I have been attempting to write some Final Test Scripts for Gorkamorka data files I'm working on.

One (of many) things has me stumped.

The following code bock works as I intended, but it seems... clunky. How can I do the following more succinctly?

Note p_xxxx are profiles)
Code:
var tallyN as number

tallyN = (this.unit[p_onob] + this.unit[p_oboy] + this.unit[p_ospan] + this.unit[p_oslav] + this.unit[p_oyoof])

if (this.unit <= tallyN) then
@valid = 1
endif

Questions:
1. In profile context, what is the difference between this.unit and this.model
I'm not getting it.

2. Why didn't the following block work? (class.ork? should have matched class.orkspan, class.orknob, etc.) Though it compiled, the logic didn't work in the roster correctly, it always "failed" validation tests for the grotz).

Code:
var sizeN as number

sizeN = (tagcount[class.ork?] - tagcount)
if (sizeN <= 0) then
 sizeN = 0
endif

if (model <= sizeN) then
 @valid = 1
endif

Regards,

-Mettius
 
Last edited:
not sure if this helps but where do you get the variable model from?

if (model <= sizeN) then
@valid = 1
endif

it's not listed in your script

this is one of my validation scripts which may help in creating them yourself

if (tagcount[ger_acc_ta.Tank] > 1) then
@valid = 0
else
@valid = 1
endif

I always set a value that will return the @valid=0 and then default to @valid=1 so the script will always return something
 
Back
Top