PHP- Kodu:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>#include <amxmisc>
#define PLUGIN "New Plug-In"#define VERSION "1.0"#define AUTHOR "author"
public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_event( "DeathMsg", "event_dmsg", "a" );}
public event_dmsg( ){ new victim = read_data( 2 ); if( get_user_team( victim ) == 1 ) { new players[ 32 ], pnum; get_players( players, pnum, "ae", "TERRORIST" ); if( pnum == 1 ) { set_hudmessage( 0, 255, 0, -1.0, -1.0, 0, 6.0, 12.0 ); show_hudmessage( players[ 0 ], "Hayatta Kalan Son Mahkumsun! [ L ] basip CT ile VS at." ); } }}
- - - - - - - - - -
PHP- Kodu:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>#include <amxmisc>
#define PLUGIN "New Plug-In"#define VERSION "1.0"#define AUTHOR "author"
public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_event( "DeathMsg", "event_dmsg", "a" );}
public event_dmsg( ){ new victim = read_data( 2 ); if( get_user_team( victim ) == 1 ) { new players[ 32 ], pnum; get_players( players, pnum, "ae", "TERRORIST" ); if( pnum == 1 ) { set_hudmessage( 0, 255, 0, -1.0, -1.0, 0, 6.0, 12.0 ); show_hudmessage( players[ 0 ], "Hayatta Kalan Son Mahkumsun! [ L ] basip CT ile VS at." ); } }}
- - - - - - - - - -
Şaka gibi ya bune
PHP- Kodu:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event( "DeathMsg", "event_dmsg", "a" );
}
public event_dmsg( )
{
new victim = read_data( 2 );
if( get_user_team( victim ) == 1 )
{
new players[ 32 ], pnum;
get_players( players, pnum, "ae", "TERRORIST" );
if( pnum == 1 )
{
set_hudmessage( 0, 255, 0, -1.0, -1.0, 0, 6.0, 12.0 );
show_hudmessage( players[ 0 ], "Hayatta Kalan Son Mahkumsun! [ L ] basip CT ile VS at." );
}
}
}