Too few args for format specifier
However I only have 2 functions :
set TotalScale to call aadpGetTotalScale TmpActorRef
scriptname aadpGetTotalScalefloat TotalScaleshort FemaleFlagref TmpActorReffloat tmpfloatref RefRaceBegin Function { TmpActorRef }if TmpActorRef.iscreature == 0 && TmpActorRef.isactor == 1 set FemaleFlag to TmpActorRef.IsFemale let RefRace := TmpActorRef.getrace set TmpFloat to getracescale RefRace FemaleFlag else set TmpFloat to 1endifset TotalScale to TmpActorRef.getscaleset TotalScale to ( TotalScale * TmpFloat )SetFunctionValue TotalScaleend
And this one:
SetEventHandler "OnHit" aadpOnHitTrigger ref::ME
scn aadpOnHitTrigger ref target ref Attacker begin Function { target, attacker }set aadpWeaponCorrectionQ.HitterRef to attackerset aadpWeaponCorrectionQ.TargetRef to targetend
From the docs it said (I thought) that I could do "SetEventHandler "OnHit" aadpOnHitTrigger ref::ME" to assign it to one actor to be hit by any attacker...right?
I only started getting this error after upgrading to out of beta 20, but that could be a coincidence I guess.