SA-MP Forums Archive
[FilterScript] [FS]No clip (Rocket Launchers) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] [FS]No clip (Rocket Launchers) (/showthread.php?tid=63328)



[FS]No clip (Rocket Launchers) - Mikep - 28.01.2009

..::[FS]NoClip::..
Info:
Repeatedly pressing the fire key will give you unlimited rockets (if you make sure /noclip is on)

Features:

• Both rocket launcher types

Download:

Version 1 Mirror 1 (deLUX click n host)
Version 1 Mirror 2 (Rapidshare)
Version 1 Mirror 3 (Pastebin)
Version 1 Mirror 4 (Canadian Pastebin)
Version 1 Mirror 5 (Sendspace)
Version 1 Mirror 6 (Mediafire)

Installation:

Compile NoClip.pwn and place the .amx file into your filterscripts folder.
Add "NoClip" to your filterscripts line. Example: "filterscripts adminspec vactions NoClip"

Other:
I might try and make it on a timer so it does it by holding fire.

Any ideas or bug reports welcome!

Enjoy!


Re: [FS]No clip (Rocket Launchers) - sidhu123 - 28.01.2009

You've done it once again!


Re: [FS]No clip (Rocket Launchers) - farse - 28.01.2009

Take a break and you ..
PS: Verry nice . Great job


Re: [FS]No clip (Rocket Launchers) - Dinero - 28.01.2009

Nice


Re: [FS]No clip (Rocket Launchers) - Karlip - 28.01.2009

Nice,you should use ammo tho'.


Re: [FS]No clip (Rocket Launchers) - Grove - 28.01.2009

Lol, nice.


Re: [FS]No clip (Rocket Launchers) - Shadowww - 28.01.2009

Actually, you can make it MUCH shorter (Non-HS Rocket Launcher ONLY).
pawn Code:
#include <a_samp>
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if (newkeys == KEY_FIRE && GetPlayerWeapon(playerid) == 35) GivePlayerWeapon(playerid, 35, 1000);
    return true;
}



Re: [FS]No clip (Rocket Launchers) - Nimphious - 28.01.2009

Awesome mike :P