SA-MP Forums Archive
Need help - 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: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Need help (/showthread.php?tid=238198)



Need help - Ironboy - 11.03.2011

can anyone find a [FS].In that fs light will blows under the vehicle.(like a car mode)


Re: Need help - Roomeo - 11.03.2011

you Mean Neon?


Re: Need help - Stigg - 11.03.2011

http://forum.sa-mp.com/showthread.ph...ighlight=neons

Hope it helps.


Re: Need help - Tadeo - 11.03.2011

Next time, use Search or Check in a FilterScript Forum.
http://forum.sa-mp.com/showthread.ph...ght=light+neon


Re: Need help - Markx - 11.03.2011

My neon command (blue neon)
pawn Код:
CMD:neon(playerid, params[])
{
    #pragma unused params
    if(IsPlayerConnected(playerid))
    {
        if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED, "ERROR : You have to be in a vehicle to use this command!");
            if(GetPlayerMoney(playerid) < 2500) return SendClientMessage(playerid, COLOR_RED, "ERROR : You don't have enough Money! 2500$ needed!");
            GivePlayerMoney(playerid, -2500);
            SetPVarInt(playerid, "Status", 1);
            SetPVarInt(playerid, "neon", CreateObject(18648,0,0,0,0,0,0));
            SetPVarInt(playerid, "neon1", CreateObject(18648,0,0,0,0,0,0));
            AttachObjectToVehicle(GetPVarInt(playerid, "neon"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.65, 0.0, 0.0, 0.0);
            AttachObjectToVehicle(GetPVarInt(playerid, "neon1"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.65, 0.0, 0.0, 0.0);
            SendClientMessage(playerid, COLOR_BLUE, "SUCESS : Neon Lights have been installed!");
            }
            return true;
}



Re: Need help - Ironboy - 11.03.2011

ok ty guys