SCTX |
scn SE07BGoldenSaintGreenmoteSiloGuard04Script
;This script is used for the Guard Patrol inside of Greenmote Silo
;At the beginning of each package, a variable is set and the guard is EVP'd, so they may pass into the next package smoothly
;At the end of the last package, the variable is reset so the process may repeat
Short QuickResponse
begin OnPackageEnd SE07BGSGreenmote04Patrol
Set SE07B.Silo04Go to 1
Evp
end
begin OnPackageEnd SE07BGSGreenmote04PatrolEnd
Set SE07B.Silo04Go to 0
Evp
end
Begin GameMode
If QuickResponse == 0
If GetDetectionLevel Player >= 3
Evp
Set QuickResponse to 1
EndIf
EndIf
End |