View Single Post
cravenge
Veteran Member
Join Date: Nov 2015
Location: Chocolate Factory
Old 08-06-2019 , 08:30   Re: [L4D/L4D2] Black and White Notifier (Reloaded) | 1.55 : August 6, 2019 |
Reply With Quote #4

Quote:
Originally Posted by Lux View Post
Hello this looks good and clean

You wanna use PostThinkPost, because player animations are updated in PostThink, when using Just think all your animation checks for l4d1 are 1tick behind.

PHP Code:
public void OnClientPutInServer(int client)
{
    if (!
bIsL4D1)
    {
        return;
    }
    
    
SDKHook(clientSDKHook_PostThinkPostOnThink);

Keep it up.
Ah, thanks for the suggestion.
I'll try to compare the difference between the two right now.
cravenge is offline