-- LUA Script - precede every function and global member with lowercase name of script attackstart = {} attackend = {} damageframestart = {} damageframeend = {} lastroar = {} lastswipe = {} function ai_demonhigh_init(e) ai_soldier_state[e] = "idle" CharacterControlLimbo(e) SetAnimationFrames(1,30) LoopAnimation(e) ModulateSpeed(e,1.0) SetAnimationSpeed(e,0.1) attackstart[e]=87 attackend[e]=120 damageframestart[e]=97 damageframeend[e]=110 lastroar[e]=0 lastswipe[e]=0 end function ai_demonhigh_main(e) PlayerDist = GetPlayerDistance(e) EntObjNo = g_Entity[e]['obj'] if (PlayerDist < 1000 and ai_soldier_state[e] == "idle" and g_Entity[e]['plrvisible'] == 1) or (PlayerDist < 100 and ai_soldier_state[e] == "idle") then RotateToPlayer(e) if GetTimer(e) > lastroar[e] then lastroar[e]=GetTimer(e)+5000 PlaySound(e,0) end end if PlayerDist < 800 and g_Entity[e]['plrvisible']==1 then RotateToPlayer(e) if PlayerDist < 90 and g_Entity[e]['plrvisible']==1 then if ai_soldier_state[e]~="attack" then SetAnimationSpeed(e,1.75) if GetAnimationFrame(e)attackend[e] then AIEntityStop(EntObjNo) ai_soldier_state[e] = "attack" CharacterControlLimbo(e) SetAnimationFrames(attackstart[e],attackend[e]) PlayAnimation(e) g_Entity[e]['animating'] = 1 end else if ai_soldier_state[e]=="attack" then if GetAnimationFrame(e)>damageframestart[e] and GetAnimationFrame(e) lastswipe[e] then lastswipe[e]= GetTimer(e)+1000 PlaySound(e,1) randomdamage=math.random(20,50) HurtPlayer(e,randomdamage) end end end if g_Entity[e]['animating']==0 then ai_soldier_state[e] = "idle" CharacterControlLimbo(e) SetAnimationFrames(1,30) PlayAnimation(e) RotateToPlayer(e) end end end else if ai_soldier_state[e]~="roam" then ai_soldier_state[e] = "roam" CharacterControlUnarmed(e) ModulateSpeed(e,1.0) SetAnimationSpeed(e,1.5) SetCharacterToWalk(e) end rndx=math.random(1,360) rndz=math.random(1,360) rndx2=math.sin(rndx)*30 rndz2=math.cos(rndz)*30 AIEntityGoToPosition(EntObjNo,g_PlayerPosX+rndx2,g_PlayerPosZ+rndz2) end else if PlayerDist >= 800 and ai_soldier_state[e] ~= "idle" then ai_soldier_state[e] = "idle" CharacterControlLimbo(e) SetAnimationFrames(1,30) LoopAnimation(e) ModulateSpeed(e,1.0) SetAnimationSpeed(e,1.0) end end if string.find(string.lower(g_Entity[e]['limbhit']), "head") ~= nil then SetEntityHealth(e,0) ResetLimbHit(e) end --PromptLocal(e,"demonhigh : Dist=" .. PlayerDist .. " State=" .. ai_soldier_state[e] .. " Vis=" .. g_Entity[e]['plrvisible'] .. " Frm=" .. GetAnimationFrame(e) ) end function ai_demonhigh_exit(e) PlayCharacterSound(e,"onDeath") CollisionOff(e) end