Konuyu açmaya harcadığın zamanı, eklentiyi yazmaya harcasaydın iyi olurdu 
Buyur,
PHP- Kodu:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <jail>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
new cvar;
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent( "lere", 2, "1=Round_End" );
cvar = register_cvar( "last_t_jbp", "5" );
}
public lere()
{
new oyuncular[ 32 ], onum;
get_players( oyuncular, onum, "ae", "TERRORIST" );
if( onum == 1 )
{
jb_set_user_packs( oyuncular[ 0 ], jb_get_user_packs( oyuncular[ 0 ] ) + get_pcvar_num( cvar ) );
}
}