Raised This Month: $51 Target: $400
 12% 

Suggestion / Subplugin Request [SOLVED] Fade 2 black


Post New Thread Reply   
 
Thread Tools Display Modes
TeddiBer
Senior Member
Join Date: Oct 2011
Old 03-14-2012 , 07:17   Re: [SOLVED] Fade 2 black
Reply With Quote #11

Quote:
Originally Posted by gogicaa View Post
I've lost(deleted) .sma .
sorry , i have only .amxx
so how u find it ??
if realy not have sma, so give amxx
TeddiBer is offline
gogicaa
Veteran Member
Join Date: Aug 2011
Location: //
Old 03-14-2012 , 07:52   Re: [SOLVED] Fade 2 black
Reply With Quote #12

I'm not allowed to post .amxx files...
gogicaa is offline
TeddiBer
Senior Member
Join Date: Oct 2011
Old 03-14-2012 , 08:49   Re: [SOLVED] Fade 2 black
Reply With Quote #13

so send me link i privte message pleas
TeddiBer is offline
gogicaa
Veteran Member
Join Date: Aug 2011
Location: //
Old 03-14-2012 , 13:04   Re: [SOLVED] Fade 2 black
Reply With Quote #14

ok
EDIT : i found .sma . here is the code
Code:
#include <amxmodx> 
#include <zombieplague> 

new g_msgScreenFade 
const UNIT_SECOND = (1<<12) 

public plugin_init() 
{ 
    register_plugin("[ZP] ScreeFade", "1.0", "alan_el_more") 
     
    g_msgScreenFade = get_user_msgid("ScreenFade") 
} 

public zp_round_ended(winteam) 
{ 
    switch(winteam) 
    { 
        case WIN_NO_ONE: 
            make_screenfade(0, 0, 0) 
        case WIN_HUMANS: 
            make_screenfade(0, 0, 0) 
        case WIN_ZOMBIES: 
            make_screenfade(0, 0, 0) 
    } 
} 

public make_screenfade(r, g, b) 
{ 
    message_begin(MSG_BROADCAST, g_msgScreenFade) 
    write_short(UNIT_SECOND * 4)    // Duration 
    write_short(UNIT_SECOND * 1)    // Hold time 
    write_short(0x0001)        // Fade type 
    write_byte (r)                    // Red 
    write_byte (g)                   // Green 
    write_byte (b)                 // Blue 
    write_byte (255)        // Alpha 
    message_end() 
}

Last edited by gogicaa; 03-14-2012 at 13:05.
gogicaa is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 17:29.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode