Identifier: camera_shake
Parameters: true/false
Description: shake camera?
Sample use: CAMERA_SHAKE true
Class: CAMERA_SHAKE
Implemented: Yes
Author: Tom
I have tried to get this to work in many ways;
Started with; . (before you ask, I do know the very best way to setup my log filing).
Code:
monitor_event FactionTurnStart FactionIsLocal
console_command camera_shake true
end_monitor
But nothing, maybe because isn’t a consol command.. however no error in log file.. so I tried;
I figure that it would work because it is in the cammands docudemon, not the consol_command docudemon.. Still nothing… or log error.
Then I figured the event is not supported by the command, so I change to;
Code:
monitor_event PreFactionTurnStart FactionIsLocal
camera_shake true
end_monitor
and nothing again.. nothing in log.
Maybe it is not working for any event (unlikely) so I try a condition monitor;
With about 10 different conditions…
Code:
monitor_condition ….
camera_shake true
end_monitor
nothing, no errors, nothing…
What else can I try here?