Quote:
Originally Posted by Waleed
Its not working!
|
Please, enable a <csx> modules.
PHP Code:
#include <amxmodx>
#include <csx>
public plugin_init( ) register_plugin( "Bomb Planter" , AMXX_VERSION_STR, "Exolent[jNr]" );
public bomb_planted( iPlanter )
{
new szName[ 32 ];
get_user_name( iPlanter, szName, charsmax( szName ) );
client_print( 0, print_center, "* %s planted the bomb!", szName );
}
__________________