Rambans Posted May 20, 2008 Report Share Posted May 20, 2008 Vai kads var palidzet ?? man ir plugins kurs dara ta !!----kad izmet flashbangu vins nevis apzilbina !! bet rada islaicigu gaismu bet ta gaisma ir tikai uz kadam 2 sekundem vai varat pateikt ka varu uzlikt lai butu ilgak par 2 sekundem ?? seit ir skripts !!! #include <amxmodx> #include <fakemeta> #include <cstrike> #include <fun> new enabled_cvar, radius_cvar, color_cvar, gmsgScreenFade, cvNoBlind, cvRefresh, maxPlayers; public plugin_init() { register_plugin("Flashbang Dynamic Light","20.00","Avalanche"); register_forward(FM_EmitSound,"fw_emitsound"); enabled_cvar = register_cvar("fbl_enabled","1"); radius_cvar = register_cvar("fbl_radius","500"); color_cvar = register_cvar("fbl_color","255 255 255"); cvNoBlind = register_cvar("fbl_noblind","1"); cvRefresh = register_cvar("fbl_refresh","300.0"); gmsgScreenFade = get_user_msgid("ScreenFade"); register_event("ScreenFade","event_flash","be","1>0","2>0","3=0","4=255","5=255","6=255","7>199"); // from VEN maxPlayers = get_maxplayers(); set_task(300.0,"refresh_nades"); } public event_flash(id) { if(!get_pcvar_num(enabled_cvar) || !get_pcvar_num(cvNoBlind)) return; // overwrite it message_begin(MSG_ONE,gmsgScreenFade,_,id); write_short(0); write_short(0); write_short(1<<2); write_byte(0); write_byte(0); write_byte(0); write_byte(0); message_end(); } public refresh_nades(id) { new Float:time = get_pcvar_float(cvRefresh); if(time <= 99999999999999.0 || !get_pcvar_num(enabled_cvar)) { set_task(9999999.0,"refresh_nades"); return; } set_task(time,"refresh_nades"); new i; for(i=1;i<=maxPlayers;i++) { if(is_user_alive(i) && !cs_get_user_bpammo(i,CSW_FLASHBANG)) give_item(i,"weapon_flashbang"); } } public fw_emitsound(entity,channel,const sample[],Float:volume,Float:attenuation,fFlags,pitch) { // plugin disabled if(!get_pcvar_num(enabled_cvar)) return FMRES_IGNORED; // not a flashbang exploding if(!equali(sample,"weapons/flashbang-1.wav") && !equali(sample,"weapons/flashbang-2.wav")) return FMRES_IGNORED; // light effect flashbang_explode(entity); return FMRES_IGNORED; } public flashbang_explode(greindex) { // invalid entity if(!pev_valid(greindex)) return; // get origin of explosion new Float:origin[3]; pev(greindex,pev_origin,origin); // get color from cvar new color[16]; get_pcvar_string(color_cvar,color,15); // split it into red, green, blue new redamt[5], greenamt[5], blueamt[5]; parse(color,redamt,4,greenamt,4,blueamt,4); // send the light flash message_begin(MSG_BROADCAST,SVC_TEMPENTITY); write_byte(27); // TE_DLIGHT write_coord(floatround(origin[0])); // x write_coord(floatround(origin[1])); // y write_coord(floatround(origin[2])); // z write_byte(get_pcvar_num(radius_cvar)); // radius write_byte(str_to_num(redamt)); // r write_byte(str_to_num(greenamt)); // g write_byte(str_to_num(blueamt)); // b write_byte(8); // life write_byte(60); // decay rate message_end(); } Link to comment Share on other sites More sharing options...
shine Posted May 20, 2008 Report Share Posted May 20, 2008 (edited) aaah.. gribi ko liidziigu manam pluginam? XD? Edited May 20, 2008 by shine Link to comment Share on other sites More sharing options...
Rambans Posted May 20, 2008 Author Report Share Posted May 20, 2008 jaa gribu tu savu nedod vismaz man butu sitads Shine ludzu palidzi uztaisi lai ir ilgaks laiks PLZZZZ Link to comment Share on other sites More sharing options...
naziic Posted May 20, 2008 Report Share Posted May 20, 2008 īsti nepārzinu šito valodu, bet šo rindu varbūt pamaini - write_byte(8); // life ti. ieliec kaut ko vairāk kā 8. Link to comment Share on other sites More sharing options...
Rambans Posted May 20, 2008 Author Report Share Posted May 20, 2008 thnx es pameginasu Link to comment Share on other sites More sharing options...
gerik13 Posted May 23, 2008 Report Share Posted May 23, 2008 { new Float:time = get_pcvar_float(cvRefresh); if(time <= 99999999999999.0 || !get_pcvar_num(enabled_cvar)) { set_task(9999999.0,"refresh_nades"); shiet shii vieta! Link to comment Share on other sites More sharing options...
shine Posted May 23, 2008 Report Share Posted May 23, 2008 lame... naziic uzkjeeraa aakji... bet tagad luuk mans iespeejams toposhais serveriis nebus tik orgjinaals... bet tas write_byte nav vieniigais.... kas jaimaina.. anyway . Link to comment Share on other sites More sharing options...
Rambans Posted May 24, 2008 Author Report Share Posted May 24, 2008 Shine neuztraucies es neemsu no tiem kas tur serverus Man patik vinus taisit Es atradu vienu labu pluginu ta ka uzraksta flare noperk gaismu un /fire tad gaismu izmet air random gaismnas Bet es serveri jau nolikvideju ;D Man sreverus patik tiasit ne turet es tagat meginu tiaist css zombie serveri ir aju snaacis bet es isti pluginus nemaku ielikt Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now