SA-MP Forums Archive
[FilterScript] Power-Fire - 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] Power-Fire (/showthread.php?tid=320398)

Pages: 1 2 3


Power-Fire - BRICS - 22.02.2012



How to use it:
1. Input: "/fire"
2. Press the "punch key"


You launch the fiery wave that will destroy anything and anyone in its path.

Video:
[ame]http://www.youtube.com/watch?v=T8kJ5_zAwXc[/ame]

Created by BRICS

Download:
DropBox
Mediafire
Pastebin


Re: Power-Fire - BRICS - 22.02.2012

please comment


Re : Power-Fire - Naruto_Emilio - 22.02.2012

Add a pastebin link then i will rate .


Re: Power-Fire - Niko_boy - 23.02.2012

Nice 1
May be for a DM game


Re: Power-Fire - MP2 - 23.02.2012

Looks totally awesome. I like how it affects vehicles.


Re: Power-Fire - Mecool - 23.02.2012

Very Nice. You are good BRICS.


Re: Power-Fire - BRICS - 23.02.2012

Pastebin link Click Me


Re: Power-Fire - tyler12 - 23.02.2012

Wow very nice


Re: Power-Fire - Eiy Mard - 23.02.2012

GJ man .. its nice .. but how to make for admin only ??


Re: Power-Fire - BRICS - 23.02.2012

make access to the /fire only for the administrator


Re: Power-Fire - BRICS - 24.02.2012

Up!


Re: Power-Fire - vassilis - 24.02.2012

Nooooooo i was going to create something like that on my server however good job its really enjoying to be honest.


Re: Power-Fire - [Diablo] - 24.02.2012

this looks very well. good job


Re: Power-Fire - JM_Millers - 25.02.2012

Первыйнах!


Re: Power-Fire - TR4MP - 25.02.2012

Epic!

Kill it with fire! :P


Re: Power-Fire - Xaras - 25.02.2012

You Rock !!!


Re: Power-Fire - willzyyy - 25.02.2012

epic job


Re: Power-Fire - danger77 - 26.02.2012

hey man very good fs,but how to make that only admins could do it?pls tell us


Re: Power-Fire - BRICS - 26.02.2012

PHP Code:
public OnPlayerCommandText(playeridcmdtext[])
{
    if (
strcmp(FIRE_CMDcmdtexttrue10) == 0)
    {
        if(!
IsPlayerAdmin(playerid))return 0;
        if(
S[playerid] > -1)return SendClientMessage(playerid,-1,ERROR_1);
        
S[playerid] = 1;
        
Fires[playerid] = 5;
        
SendClientMessage(playerid,-1,POWER_FIRE_ENABLED_TEXT);
        return 
1;
    }
    return 
0;




Re: Power-Fire - Mutha_X - 26.02.2012

This script will not be working sometimes: if too many(~30-40) explosions(CreateExplosion) exist in 1 time, newest explosions can`t be created.