/* ______________________________________________________________________ | _ _ ________ | | ( \ ( \ ( _____ \ | | | | | | ______ | | \ \ | | | |____| | ( ___\ | | \ \ | | | ____ | \ \ (_) | | ) ) | | | | | | _ \ \ | | / / | | | ) | ) ( )__\ \ | |_____/ / | | |_/ |_/ \_______/ |_________/ | | | | [HSD] High Speed Drivers | | | | [HSD] Company Clan of Programmers, Scripters, and Mappers | |______________________________________________________________________| http://forum.sa-mp.com/member.php?u=211939 Updated Date: 10/19/2013 (MM/DD/YYYY) Visit Me on SA-MP Forum for More Updates Let the Credits ! • Super Fast System • [1] Command(s) • Fast Commands to Enable or Disable System • http://forum.sa-mp.com/member.php?u=211939 | Visit Me on SA-MP Forum |. ~ Do: ~ - Must have Permission if you want to Share this on another Website. - etc. ~ Do Not: ~ - Remove Credits. - Change Author Name / Information. - Stealing Filterscript. - No Permission but Sharing on another Website. - etc. [ Information ] :- Author: SAMProductions FilterScript Name: Simple Bomb System v2.0 Updated Date: 10/19/2013 - (MM/DD/YYYY) Thanks To: SA-MP Team - a_samp ZeeX - zcmd You - For Supporting and Downloading and to Whoever i forgot to Mention -: [ End Information ] • Do not Remove the Credits. • Do not Change the Author Name / Information. • Do not Steal the Filterscript. • Disrespecting Any of These, You will Die. • Disrespecting Any of These, I'll Rape You. • Disrespecting Any of These, I'll Report You. • Thanks For Using, Enjoy :) //----------------------------------------------------------------------------// */ #include // Credits: SA-MP Team #include // Credits: ZeeX new BombObject; new Float:x, Float:y, Float:z, Float:ang; public OnFilterScriptInit() { print("<|---------------------------[Loaded]---------------------------|>"); print(" | Simple Bomb System v2.0 (/plantc4) Made By: SAMProductions |"); print("<|---------------------------[Loaded]---------------------------|>"); return 1; } public OnFilterScriptExit() { print("<|--------------------------[UnLoaded]--------------------------|>"); print(" | Simple Bomb System v2.0 (/plantc4) Made By: SAMProductions |"); print("<|--------------------------[UnLoaded]--------------------------|>"); return 1; } CMD:plantc4(playerid, params[]) // COMMAND: plantc4(playerid, params[]) { ClearAnimations(playerid); ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0); // Bomb Plant Animation GetPlayerPos(playerid, x, y, z); GetPlayerFacingAngle(playerid, ang); BombObject = CreateObject(3052, x, y, z - 0.9, 0, 0, ang, 500); // Bomb Object [3052] SetTimer("BombTimer", 16000, false); // 16000 = 16 Seconds (Change it if you want). SendClientMessage(playerid, -1, "{FF0000} {EEEEEE}You've Planted a C4 ({FF0000}Exploding in: 15 Seconds{EEEEEE}), Go Far Away into the C4."); SetTimer("fifteen", 1000, 0); SetTimer("fourteen", 2000, 0); SetTimer("thirteen", 3000, 0); SetTimer("twelve", 4000, 0); SetTimer("eleven", 5000, 0); SetTimer("ten", 6000, 0); SetTimer("nine", 7000, 0); SetTimer("eight", 8000, 0); SetTimer("seven", 9000, 0); SetTimer("six", 10000, 0); SetTimer("five", 11000, 0); SetTimer("four", 12000, 0); SetTimer("three", 13000, 0); SetTimer("two", 14000, 0); SetTimer("one", 15000, 0); return 1; } forward PlaySoundForAll(soundid); public PlaySoundForAll(soundid) { for(new i; i