Hello,
I've been having some Problems with a function of mine, I get a Crash whenever it's called:
This works:
function World_ObjectInteractiveGetHoverMsg()
local ReturnValue as string
ReturnValue = "Hello World!"
Endfunction ReturnValue
but this dosen't:
function World_ObjectInteractiveGetHoverMsg(MyVar as integer)
local ReturnValue as string
ReturnValue = "Hello World!"
Endfunction ReturnValue
WTF?!?! This is really frustrating and I have no idea why this would happen.
The above is the actual function in my code.
If I REM out the line where this function is called and set the var it Returns to as "Hello World!" then everything works fine, when called without an Input Argument then it also works fine, when called with an Input Argument then I get a Win7 Crash.
Any ideas what could be the Problem here?
Thanks in advance,
Bruce