07.05.2012, 05:50
(
Last edited by SwiftKidZ; 10/05/2012 at 06:54 AM.
)
Hey
Guy i am wanting to post my neons from Swift GangstaR Town scripted by me
Will it is few hours work
Include
thers three neon colours
*Blue
*Green
*Red
they are pretty simple there is colour White thats buuged so i removed i dont wanna post bugs
Download
MediaFire : http://www.mediafire.com/?gdid068r9gizl8p
SolidFiles : http://www.solidfiles.com/d/8d068e4736/
PasteBin
Neons : http://pastebin.com/ecHx11sP
Heres is a simple post here if you dont wanna download
I will add pictures soon
Guy i am wanting to post my neons from Swift GangstaR Town scripted by me
Will it is few hours work
Include
thers three neon colours
*Blue
*Green
*Red
they are pretty simple there is colour White thats buuged so i removed i dont wanna post bugs
Download
MediaFire : http://www.mediafire.com/?gdid068r9gizl8p
SolidFiles : http://www.solidfiles.com/d/8d068e4736/
PasteBin
Neons : http://pastebin.com/ecHx11sP
Heres is a simple post here if you dont wanna download
Code:
/*Neon System has been sricpted by SwiftKidZ please dont clam this is your work this took few hours You have seen this neon system in my gm Swift GangstaR Town this is my work do check out of of my scripts */ #include <a_samp> #if defined FILTERSCRIPT #define BLUE 0x0000FFA #define RED 0xFF0606AA #define GREEN 0x21DD00FF #define WHITE 0xFFFFFFAA #else main() { print("\n----------------------------------"); print(" SwiftKidZ Neon System has been loaded"); print("----------------------------------\n"); } #endif public OnPlayerCommandText(playerid, cmdtext[]) { if(strcmp(cmdtext,"/neons",true)==0) { SendClientMessage(playerid, 0x0000FFA, "/blue "); SendClientMessage(playerid, 0x21DD00FF, "/green "); SendClientMessage(playerid, 0xFF0606AA, "/red "); SendClientMessage(playerid, 0xFFFFFFAA, "Neons scripcted by SwiftKidZ"); return 1; } if(strcmp(cmdtext,"/blue",true)==0) { 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.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon1"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); GivePlayerMoney(playerid, -35000); SendClientMessage(playerid, 0xFFFFFFAA,"Neon Colour Blue has been added -35000"); return 1; } if(strcmp(cmdtext,"/green",true)==0) { SetPVarInt(playerid, "Status", 1); SetPVarInt(playerid, "neon4", CreateObject(18649,0,0,0,0,0,0)); SetPVarInt(playerid, "neon5", CreateObject(18649,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon4"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon5"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); GivePlayerMoney(playerid, -35000); SendClientMessage(playerid, 0xFFFFFFAA,"Neon Colour Green has been added -35000"); return 1; } if(strcmp(cmdtext,"/red",true)==0) { SetPVarInt(playerid, "Status", 1); SetPVarInt(playerid, "neon2", CreateObject(18647,0,0,0,0,0,0)); SetPVarInt(playerid, "neon3", CreateObject(18647,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon2"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon3"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); GivePlayerMoney(playerid, -35000); SendClientMessage(playerid, 0xFFFFFFAA,"Neon Colour Red has been added -35000"); return 1; } return 0; } //------------------------------------/*End Of my neon system sricpted By SwiftKidZ */--------------------------------------//