NemeSyS17 5 Posted April 2, 2017 Share Posted April 2, 2017 Server : furienwatf.rangfot.ro Nick : NemeSySGrad server : FondatorLa ce doriţi ajutor? : Vreau ca T sa poata planata C4 in ultimele 60 sec , la mine pe srever planteaza plyeric and vor ! Poză cu problema (Nu este obligatoriu) : _- Link to comment Share on other sites More sharing options...
marvel_team 278 Posted April 2, 2017 Share Posted April 2, 2017 Si unde-i bugul ? vezi cum ai setat in server.cfg sau incearca asta si spune-mi daca merge : #include <amxmodx> #include <hamsandwich> #include <fakemeta> #define PLUGIN "Bomb Time Set" #define VERSION "1.0" #define AUTHOR "rangfort.com" #define TASK_CANPLANT 10001 new bool: g_bCanPlant; public plugin_init() { register_plugin( PLUGIN, VERSION, AUTHOR ); register_event( "HLTV", "ev_RoundStart", "a", "1=0", "2=0" ); register_event( "TextMsg", "ev_BombMsg", "b", "2=#C4_Plant_At_Bomb_Spot" ); RegisterHam( Ham_Weapon_PrimaryAttack, "weapon_c4", "ham_PrimaryAttack_C4" ); } public ev_RoundStart() { g_bCanPlant = false; remove_task( TASK_CANPLANT ); new Float: flTime = get_cvar_num( "mp_freezetime" ) + ( get_cvar_num( "mp_roundtime" ) * 60 ) - 60.0; set_task( flTime, "task_CanPlant", TASK_CANPLANT ); } public ham_PrimaryAttack_C4( iEnt ) { new id = pev( iEnt, pev_owner ); if( !g_bCanPlant ) { client_print( id, print_center, "[RANGFORT] Nu poti planta bomba decat in ultimele 60 secunde!" ); return HAM_SUPERCEDE; } return HAM_IGNORED; } public ev_BombMsg( id ) { if( !g_bCanPlant ) client_print( id, print_center, "" ); } public task_CanPlant() { g_bCanPlant = true; set_hudmessage( 255, 0, 0, -1.0, 0.35, 1, 0.01, 3.0, 1.0, 1.0 ); new iNum, iPlayers[ 32 ]; get_players( iPlayers, iNum, "ae", "TERRORIST" ); for( new i ; i < iNum ; i ++ ) show_hudmessage( iPlayers[ i ], "[RANGFORT] Mai sunt 60 secunde, Bomba poate fi acum plantata!" ); } Link to comment Share on other sites More sharing options...
NemeSyS17 5 Posted April 2, 2017 Author Share Posted April 2, 2017 nu merge sa compilez ! iar in serve.cfg nu mai am nici os etare legata de c4 doar c4timer si aia e setata pe 45 iar pe sv ai timp sa dezamorsezi dor 35 sec ! Link to comment Share on other sites More sharing options...
marvel_team 278 Posted April 2, 2017 Share Posted April 2, 2017 auzi ... cum dzeu nu poti ? mai bine spune ca nu sti ,eu cum l-am compliat ? Ia-ti link de aici compilat : http://www.girlshare.ro/3489793762.4 Link to comment Share on other sites More sharing options...
NemeSyS17 5 Posted April 2, 2017 Author Share Posted April 2, 2017 rezolvat , Mersi , mai am ceva probleme , le pot scrie aici , ma ajuti te rog , sau deschid alt topic ? app da-ti TC ! Multumesc Link to comment Share on other sites More sharing options...
Skadi 442 Posted April 3, 2017 Share Posted April 3, 2017 Closed. Link to comment Share on other sites More sharing options...
Recommended Posts