Registered: 2006-08-16
Posts: 685
Loc: Maryland, USA
Crap, I can't even get started. Forgive my dullness, but two questions, where do I put my code and are the values in the ini file of any importance? I think we are just interested in the keys, correct?
the code does belong in kixgolf_lm.udf in between:
Code:
function a($)
;code 'ere
endfunction
Your code will be called by kixgolf_lm.kix (no changes allowed) and will be validated against the keys in kixgolf_lm.ini (no changes alllowed too), so your code should return the same values as the different key values in the ini.
Let's look closer at that: for example: 378282246310005=3 The key 378282246310005 will be passed as a string to the function you write and will be validated against the return value your function returns. In this particular case, your function should recognize this string as a valid "AmKixpress" Credit Card number and return 3 (integer)
.. The score will be counted by the scoring engine, so all characters between these flags will be counting (if not commented out):
Code:
;! <- Flag for start of scoring engine
function a($) ;<-Score +12
endfunction ;<-Score +11
;!<-|these two flags
;!<-|stop scoring engine
hope this helps, and have fun solving the problem!