I dont know how to change The_Floods camera system into these:
When A player enters a particular region, the camera will enable to the entering unit
When A player enters a particular region, the camera will enable to the entering unit

-
CameraSystem Initialization
-
Events
-
Map initialization
-
-
Conditions
-
Actions
-
-------- ---- --------
-
-------- Set this Integer to how many players there shall be in the map. --------
-
-------- ---- --------
-
Set MaxPlayers = 1
-
-------- ---- --------
-
-------- Not neccessary (But you have to access this [CameraUnit] variable to one unit for every player). --------
-
-------- ---- --------
-
Set CameraUnit[1] = Ichigo Kurosaki 0003 <gen>
-
-------- ---- --------
-
-------- If you set this to true, all players will be able to stuck the camera at a friendly unit when a friendly unit is selected. --------
-
-------- If you set this to false, all players can only select their own units to stuck the camera. --------
-
-------- ---- --------
-
Set AllowCheckOtherFriends = True
-
-------- ---- --------
-
-------- This will set all the [CameraVariables] to default. --------
-
-------- ---- --------
-
For each (Integer A) from 1 to MaxPlayers, do (Actions)
-
Loop - Actions
-
Set AngleofAttack[(Integer A)] = 345.00
-
Set DistanceFromTarget[(Integer A)] = 2000.00
-
Set Rotation[(Integer A)] = 90.00
-
Set CameraEnabled[(Integer A)] = True
-
-------- ---- --------
-
-------- Change the maximum and minimum camera options --------
-
-------- ---- --------
-
-------- This is the maximum distance the camera can be from an unit. --------
-
Set MaxDistance[(Integer A)] = 2000.00
-
-------- This is the minimum distance the camera can be from an unit. --------
-
Set MinDistance[(Integer A)] = 400.00
-
-------- This is how far up the camera can be, less number = higher. --------
-
Set MaxAngleOfAttack[(Integer A)] = 270.00
-
-------- This is how far down the camera can be, high number = lower --------
-
Set MinAngleOfAttack[(Integer A)] = 340.00
-
-
-
-