View Single Post
Skorpion1976
Veteran Member
Join Date: Jun 2009
Location: Austria
Old 04-30-2010 , 14:31   Re: [L4D2] Black and White on Defib v1.0
Reply With Quote #31

Quote:
Originally Posted by cigs View Post
Crimson, can you or anyone else confirm that the method the plugin uses to force someone to go into black and white mode doesn't work anymore since the DLC?
I can confirm that EVERY time a survivor gets resurrected the character sees everything in color so he/she does not know that he/she is b/w. I added an extra hint text (in the shop plugin, for the resurrection event) for all survivors:

Code:
...
    new target = GetClientOfUserId(GetEventInt(event, "subject"));
    GetClientName(target, PlayerName, sizeof(PlayerName));
       for (new i = 1; i <= MaxClients; i++)
        {
            if (!IsClientInGame(i))
            {
                continue;
            }
                   if (GetClientTeam(i) == 2)
            {
                PrintHintText(i, "%s is B/W and needs HEAL!",PlayerName);
            }
        }..

Last edited by Skorpion1976; 04-30-2010 at 14:39.
Skorpion1976 is offline