I have some questions about effects.
1. How could I remove the "Drug" effect from amx_drug?
Here is the code:
PHP Code:
new gmsg_SetFOV = get_user_msgid("SetFOV")
message_begin( MSG_ONE, gmsg_SetFOV, { 0, 0, 0 }, id )
write_byte( 180 )
message_end( )
2. How could I make a "Crazy" effect? I was thinking in screen shake, but I dont know how to make it permanent, it go away after some seconds.
PHP Code:
new g_MsgScreenShake
g_MsgScreenShake = get_user_msgid("ScreenShake")
message_begin(MSG_ONE_UNRELIABLE, g_MsgScreenShake, _, id)
write_short( 255<<14 )
write_short( 255<<14 )
write_short( 255<<14 )
message_end();
__________________