[FilterScript] [FS]RC-XD Exploding RC!!!!
#1

DESCRIPTION:
Well this is basically an Exploding RC....
Type /rc-xd ingame and you will appear in an RC car....
Drive anywhere you want and click LMB (Left Mouse Button)(KEY_FIRE) to explode it...
It sets your pos where the RC was just after the explosion so you don't die...

SCREEN/VIDEO:
Maybe tomorrow....

DOWNLOAD:
http://solidfiles.com/d/c959/
Reply
#2

But wouldnt the explosion kill the driver to? Or is it like just showing you in the car?
Reply
#3

lol i didnt think of that...
it will kill the driver...

i will rescript it later....

EDIT: fixed!!! sets your pos right where the car was after explosion... TESTED*
Reply
#4

Quote:
Originally Posted by [MNC]Azz
Посмотреть сообщение
lol i didnt think of that...
it will kill the driver...

i will rescript it later....

EDIT: fixed!!! sets your pos right where the car was after explosion... TESTED*
It still kills you...
Reply
#5

Credits For COD:BO ha ?
Reply
#6

Quote:
Originally Posted by xNiteX
Посмотреть сообщение
It still kills you...
Nope! i tested it!

Quote:
Originally Posted by HACKHERS
Посмотреть сообщение
Credits For COD:BO ha ?
I made this myself... a small and simple script...
Reply
#7

-.-

Something I was going to make, but maybe I'll make it anyway.

Edit:

1 download. Lol.

Anyways, WTF! Delete all the shit you don't need, and your indentation is fucking shit. D:
Reply
#8

Quote:
Originally Posted by [FU]Victious
Посмотреть сообщение
-.-

Something I was going to make, but maybe I'll make it anyway.

Edit:

1 download. Lol.

Anyways, WTF! Delete all the shit you don't need, and your indentation is fucking shit. D:
2 Downloads, I wanted to see if the script was the same as mine, what isn't the case.

Also, taking a look at this, I'm quite 99% positive it DOES kill you rofl.

PS: Another notice, this looks like as it works in ANY vehicle, not only in the RC vehicle you want.
Reply
#9

a clean verison lol anyways nice job i just cleared up some stuff


pawn Код:
//RCXDRCXDRCXD    RCXDRCXDRCXD    RCXD        RCXD    RCXDRCXDRCXD
//RCXD    RCXD    RCXD              RCXD    RCXD      RCXD      RCXD
//RCXDRCXDRCXD    RCXD                RCXDRCXD        RCXD      RCXD
//RCXDRCXD        RCXD                RCXDRCXD        RCXD      RCXD
//RCXD  RCXD      RCXD              RCXD    RCXD      RCXD      RCXD
//RCXD    RCXD    RCXDRCXDRCXD    RCXD        RCXD    RCXDRCXDRCXD

#include <a_samp>

new RCXD;

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print("      RC-XD FS by [MNC]Yulda   ");
    print("--------------------------------------\n");
    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/rc-xd", cmdtext, true, 10) == 0)
    {
        new LVehicleID;
        new Float:X,Float:Y,Float:Z;
        GetPlayerPos(playerid, X,Y,Z);
        LVehicleID = CreateVehicle(441, X+3,Y,Z, 0, -1, 50, -1);
        PutPlayerInVehicle(playerid,LVehicleID,0);
        SetVehicleVirtualWorld(LVehicleID, GetPlayerVirtualWorld(playerid));
        LinkVehicleToInterior(LVehicleID, GetPlayerInterior(playerid));
        RCXD = 1;
        new playername[MAX_PLAYER_NAME];
        new string[128];
        GetPlayerName(playerid,playername,sizeof(playername));
        format(string,sizeof(string),"~r~%s ~y~>>> RC-XD in bound!", playername);
        GameTextForAll(string,2500,3);
        SendClientMessage(playerid,0xFFFF00AA,"Use LMB[FIRE] Key to explode the RC-XD!!!");
        return 1;
    }
    return 0;
}


public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if (RCXD == 1)
    {
        if ( (newkeys & KEY_FIRE) && IsPlayerInAnyVehicle(playerid) )
        {
            new Float:burnx, Float:burny, Float:burnz;
            GetPlayerPos(playerid,burnx, burny, burnz);
            CreateExplosion(burnx, burny , burnz, 7,10.0);
            CreateExplosion(burnx, burny , burnz, 7,10.0);
            CreateExplosion(burnx, burny , burnz, 7,10.0);
            SetPlayerPos(playerid, burnx, burny, burnz+2);
            RCXD = 0;
        }
        return 1;
    }
    return 1;
}
Reply
#10

Quote:
Originally Posted by Kitten
Посмотреть сообщение
a clean verison lol anyways nice job i just cleared up some stuff
Thx kitten

Quote:
Originally Posted by Hiddos
Посмотреть сообщение
2 Downloads, I wanted to see if the script was the same as mine, what isn't the case.

Also, taking a look at this, I'm quite 99% positive it DOES kill you rofl.

PS: Another notice, this looks like as it works in ANY vehicle, not only in the RC vehicle you want.
ye this script could work with other cars... but i tested it SO MANY TIMES and it didnt seem to kill me....
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)