Go ahead and add the screen fade code into your plugin.
For preventing a player from moving:
PHP Code:
set_pev(id, pev_flags, pev(id, pev_flags) | FL_FROZEN); // Freeze
set_pev(id, pev_flags, pev(id, pev_flags) & ~FL_FROZEN); // UnFreeze
Requires fakemeta to be included.
__________________