Wednesday, June 20, 2012

GTA San Andreas - Weapons

GTA San Andreas - Weapons GTA San Andreas - Weapons These, as one might guess from the name, allow you to to see the heat signatures given off by peds, cars, and whatnot. By selecting them from your item list and pressing circle to equip (or unequip later), the screen turns a rather psychedelic set of blue, purple, pink, and red hues; with blue being cold and red being hot, of course. After equipping the goggles, you're free to switch to another weapon so as to freely take out enemies you couldn't have seen otherwise. Naturally, they're best to use at night when it's hard to see otherwise, but even then they're still better suited to longer range combat. Moving about with these on can be somewhat tricky at times due to cooler landscape/building objects blending together with the ambient background heat (or lack thereof rather).
Read More..

Monday, June 4, 2012

[FS] Letterbox Mode


By x-DeadSerious-x (2011)

Description:

This is a filterscript which allows you to toggle letterbox mode on or off.
More info is included in the readme.

Warning: Letterbox mode may not display correctly on a resolution higher than 1024x768.

Commands:

'/lbhelp' = Letterbox Mode Help
'/lbon' = Letterbox Mode On
'/lboff' = Letterbox Mode Off

Screenshots (Clickable):

Without Chatbox


With Chatbox


These screenshots are also included in the zip.

Download:

Mediafire

MegaUpload

Please leave feedback and report any bugs or complaints.

x-DeadSerious-x
Read More..

Standard clock ( top right hand corner )

Here's a basic clock made by Yaheli and extracted from V-admin, and with editted colours

anyways its tested and it works,

Link
http://pastebin.com/f7b75a6e

Enjoy

Regards Orph
Read More..

Works Los Santos PD gates

Finally could be bothered to fix it properly!

What is it?:

10 Gates around LSPD interior and outerior to stop criminals or members of the public getting in, to actually make it work for one team you much do this yourself, add MadnessJohnson@live.com if you want help with this.

Commands:

/olspd
/clspd
/olspddesk
/clspddesk
/olockers
/clockers
/odesk
/cdesk
/ochief
/chief
/oarm
/carm
/ocells
/ocell1
/ocell2
/ogate

Screenshots:










If anyone says it doesnt work ill literally hang myself, iv tested this with nearly all my gamemodes iv got in my file and all of them work, i even think it works with GF and other GF edits.

Download Links (Dont accept mirrors):

http://pastebin.com/f5ce8bf7c
Read More..

Airport Destinations with menu!!!

Hi guyz!
Here my other script with menu and teleports to airports like LV, LS, SF and VM airport.
---------Credits---------
PLUGINS: Streamer
Idea: ME
Help: SAMP wiki
---------Why I made it?---------
Becuase I was need something to players can teleports from airport to other island\airport, but here I was made teleports only for original form GTA SA map. And this is good to use on RP servers, but I will update it (with time) and it will be more intresting and nicer!
---------VIDEO---------
---------Download---------
Pastebin.com

REP + IF YOU LIKE IT!!!!!
Read More..

Anti Advertisement UPDATED!!!

Hi My brothers friend & I was recently making a script to stop people from spreading advertisement from your server! We hate that we do not like people spreading IP on your server If they put a IP like : 124.434.234.23:7777 (Not a real IP) they will get kicked... And If they do it with Spaces Underscores then script it Any type of IP Even a very long one !


Screenshots:



Link:
http://pastebin.com/xrqyGcy1
.PWN http://www.solidfiles.com/d/8b84628240/
.AMX http://www.solidfiles.com/d/90acdc8440/

Have a nice time with the Anti ADV
Read More..

Mycolor System by Homie_MH

Hello Peoples.
I have maked a good FilterScript. I mean it's very important.
I think that it need's everyone. How the name say's, it is an mycolorsystem.
So, I come to the function and a picture.


Warning:
The system is an German system. It's not English.



Function:
Command is /mycolor and it will open a Dialog [DIALOG_STYLE_LIST]
The entire system is kept free (In Game)
that is, selecting a color is free. I wanted to mention this only
because I have also seen that some colors in certain monetary cost servers.
So in-game. : D

Now I come to the picture. So it looks like this:
sa-mp-000.jpg

Color's:
The system has 15 colors. I just count on.
- Red
- Dark Red
- Yellow
- Dark yellow
- Green
- Dark Green
- Blue
- Dark Blue
- Black
- White
- Purple
- Pink
- Orange
- Turquoise
- Gray

You must edit it to, but I beg of credits from splashing around me leave.
Would be really nice of you.

Download: http://www.file-upload.net/download-...ystem.rar.html

Sorry for my bad english. I'am not so good at English. I hope you know what I mean.
Read More..

Neon System By [EDT]Quattro

Hey guys, it took me a while to make but i did it.
It is a filterscript that include custom neon garage and all neon colors and more! note garage is using objects and you cannot get neon outside of the garage as i use IsPlayerInRangeOfPoint.

Commands:
/neonshop -Teleport to the shop
/neon -Buy neon dialog.


-----------------------------------------
Download:
Pastebin: http://pastebin.com/MgUNHxHv
Pwn+Amx:
http://www.sendspace.com/file/7uhpzn

OR CLICK BELOW FOR INSTANT DOWNLOAD!

http://clanedt.com/quattroblog/Neon%...%5dQuattro.rar

Known bugs: Currently none.

And of-course pictures:




-Please don't remove credits! and enjoy it
__________________

Read More..

fcmd - command handler

Hy everyone!
Im sorry for my bad English, I am Hungarian.

I needed an simple command handler, for this i write this.

An other command handler(zcmd,ycmd..) not have been using an accent character (á,é..).

Include (in code):


Code:
    stock fParamsNotUsed( params[][], maxparams ) {
            maxparams--;
           
            if( params[maxparams][0] == '\0' ) return true;
           
            return false;
    }
     
    stock fNull(params[][], maxparams) {
            for( new i = 0; i < maxparams; i++ ) {
                for( new a = 0; a < strlen(params[i]); a++ ) {
                            params[i][a] = 0;
                    }
            }
    }
     
    stock fCommand(cmdtext[], cmd[] ) {
            new ok;
            new karakterek;
     
     
            for( new i = 0; i < strlen(cmd); i++ ) {
                if( cmd[i] == cmdtext[i] ) {
                        ok++;
                    }
                    karakterek++;
            }
     
            // ----------------------------------
            new FP = fGetFirstDelim( cmdtext );
            new felhasz[128 + 1];
            format( felhasz, sizeof(felhasz), "%s", cmdtext );
     
            strdel( felhasz, FP, strlen(felhasz) );
            if( strlen(felhasz) != strlen(cmd) ) return false;
            // ----------------------------------
     
            if( ok == strlen(cmd) && karakterek == strlen(cmd) ) return true;
            return false;
    }
     
    stock fGetFirstDelim(txt[], const delim=' ') {
            new space = strlen(txt);
     
            for( new i = 0; i < strlen(txt); i++ ) {
                if( txt[i] == delim && i < space ) {
                    space = i;
                    }
            }
            return space;
    }
     
    stock fSliceParams(command[], params[][], maxparams, const delim=' ') {
            fNull( params, maxparams );
     
            new pNum = 0;
            new idxNum;
            new len;
            new idxNumPLUS;
     
            new delimeter[16 + 1];
            format( delimeter, sizeof(delimeter), "%s", delim );
     
            strdel( command, 0, fGetFirstDelim(command) + 1 );
            strins( command, delimeter, strlen(command), (128 + 1) );
     
            while( idxNum <= strlen(command) ) {
                if( command[idxNum] == delim && pNum < maxparams ) {
                            len = strmid( params[pNum], command, idxNumPLUS, idxNum , (128 + 1) );
     
     
                            if( maxparams != 1 ) {
                                    if( (maxparams-pNum) != 1 ) {
                                            pNum++;
     
                                            idxNumPLUS = idxNum + 1;
                                            params[pNum][len] = 0;
                                    }
                            }
                    }
                    idxNum++;
            }
            return 1;
    }
Usage(example):

Code:
public OnPlayerCommandText( playerid, cmdtext[] ) {
 new params[8][64 + 1];

 if( fCommand(cmdtext, "/cmd") ) {
  fSliceParams( cmdtext, params, 2 );

  if( fParamsNotUsed(params, 2) ) return SendClientMessage( playerid, -1, "Usage: /cmd (param1) [param2]" );


  printf( "%s | %s", params[0], params[1] );
 }

 return 1;
}
CREDITS:

dexi(Fl0rian) - Create the include
Kalcor - SAMP
Read More..

Basic PayDay System.

Hello SA-MP players/coders/mappers and etc!

Presently i have found out how to create a basic PayDay system, and i would like to show it/help to the people
who need it(as i noticed alot of people couldn't do it on their own).

Introduction
The PayDay system does is, Gives a player Random amount of cash
every hour(??:00, for example 10:00, 11:00 and etc).
It gives a paycheck of 50-10k(if you want to lower, just go into the filter script and adjust the

Code:
new RandomPay = random(500 - 100) + 100; // new RandomPay = random(MAX - MIN) + MIN;
Hope i helped some one! enjoy!

Download:
http://www.2shared.com/file/d1t3XZd8...y_Snoopy_.html
Read More..

SetPlayerCamera (no HUD)

Just a simple include that allows you to easily set the player's camera and remove the HUD:

http://pastebin.com/WL2HYwZ0

Not even going to bother with a long-ass post. Enjoy.

The syntax is simply

SetPlayerCamera(playerid, Float:x, Float:y, Float:z, Float:x2, Float:y2, Float:z2, sets=5);

x y z is the camera pos
x2 y2 z2 is the lookat pos
Sets is the amount of times the camera gets set in onplayerupdate, it defaults to 5 to ensure that the camera is definately set. It should be at least 2.

Hurray for having to script work-arounds. It should work flawlessly, if not; let me know.

Here's one I made earlier:

__________________
INC:
[NEW] Vehicle Functions - Sync random carcolors, GetVehicleColors, GetVehicleInterior
Disable Ammunation - Plug and play ammunation disabling
Dialog Buffer - Buffer/que/delay dialogs when one is already shown
IEE (InteriorEnterExits) - Easily create interior enter/exits
Interactive clickable textdraw keypad [easy to use] - It's awesome
Read More..

[FS] GangZone Maker [BETA]

Features

  • It&#39;s a filterscript
  • It&#39;s very fast and usefull
  • Made with dialogs
  • You can (re)size your gangzones big with the arrow keys (See video below), and with using arrow keys + key fire you can size them back less
  • You have 10 different transparant colors
  • Press enter when you have been done and a dialog will appear or you will save or not, if yes you type the name and go to Scrptfiles and open it
  • /gzone is the command; you must be a RCON Admin


Download

Click!
Click

Video
GangZone Creator

Note
This is a BETA version, you can only Create and save it and also delete after pressing enter. I didn&#39;t find any bug, if you find one please report. I&#39;ll update this filterscript soon.
Read More..

Vehicle Spawner


So we all know many Dialog based or command based vehicle spawn scripts are already available on forums around.
I too decided to work upon one but i thought would be useless.
Suddenly i realised of 0.3e and thought to try out new functions that are ->

  • SelectTextDraw
and
  • OnPlayerClickTextDraw


Preview : short picture..>


Usage:
  • /vehiclemenu - Main command that shows the list / menu
  • /destroycars - RCON Command to destroy all unocuppied spawned cars

Features:-
  • 0.3e based
  • Using ZCMD < i use it only >
  • Having latest features of TextDraws
  • Cool Presntation in script
  • 16 vehicles included in List
  • When player spawns new car it , Auto deletes the last spawned vehicle.
    [
    You can edit them by following way:
    -> Open Script goto OnPlayerClickTextDraw i.e. line 91
    -->Now you can see lines like SpawnCarForPlayer( playerid , 402 ); where the number 402 is vehicle ID
    and after } bracket it is mentioned CarNAME in this case it is Buffalo.
    --->Visit http://wiki.sa-mp.com/wiki/Vehicles:All , to see VehicleIDs with Names and replace Number 402 with vehicle ID and after ward replace //Buffalo with //NEW CAR Name , for future references.
    ]
  • meh, what else... JUST TRY IT your self

Notes:-

  1. Keep All Credits , do not mess much with script else it will get bugged.
  2. Feel free to edit stuff(s) <only if you kno what they are>
  3. No Mirror of Files, re-releasing is allowed


Credits:
SA-MP : For everything and new updates.
Zeex : for ZCMD
Myself : for working out with this script.
Zamaroht : for his TextDrawEditor script
ghosty : for Testing stuff(s) with me
Others : SAMP's IRC channel for few guidence. PAWNO and Notepad :P
Download Enjoy , Test , post Suggestion(s) and report any Bugs

Download v1.1(pastebin)
Mirror(s)
http://lh.rs/NSe6xw0UMtGm
http://www.mediafire.com/?3w1hk5poly6geyu
Bugs -> None

Update(s):

Code:
v1.0:  Initial Release
v1.1:  Fixed Destroy Vehicles!

Future Plans:
-> Code Optimization
-> More Vehicles and few stuffs
Read More..

SanadyReg(5/29/2012,00:00)(Update)V1.1

Introdaction
Yesterday I get idea to create register system which is usefull for newbie and people who are learning PAWN.Register system is very very easy.Becouse I use very easy file system.Its Dini and dudb.So...It`s in dialogs also I said this.It`s very easy.

Screenshots




Saving
How I already says It`s Dini who is saving.So here is how it`s looks like

Code:
Password=120717730
AdminLevel=0
Money=0
Score=0
Kills=0
Deaths=0
Hours=371781
Hours=0
Minutes=32
Seconds=27
In futer it will be more of course!
Credits
Sanady-Scripting
Dracoblue-Dini and dudb
Download
Pastebin

Update
NEW Added Hours,Minutes,Seconds.

Enjoy in my Registration System.Thanks.
Read More..

Simple Vehicle Spawner v 1.0 by x96664


-Hi,everybody!
-This is my first filterscript which I upload on sa-mp forum.
-This is simple vehicle spawner usefull for stunt servers.


Functions:
-There is only one command - /v - vehicle spawn dialog.
-All RC vehicles are enterable!
-When you spawn vehicle it puts you automatically in it!

How to install:
It's very simple to install
-Just download my fs and extract it in your server folder.
-Open your server.cfg and on the line filterscripts add vehicleSpawner.

Screenshots:






Download:
-Solidfiles
-Pastebin


Credits:
Scripting: x96664
Read More..

TDM script

Hey guys, I had this old TDM script, it's really fun.

2 Teams:
-Black Bullets
-Sons Of Angels


Score System

2 Maps

Killstreaks:
-RC-XD
-Missle Launcher
-Attack Helicopter


Download : http://www.mediafire.com/?o844b8b6zclm2pl
Read More..

V2.0 Of Modern War Battalation

DOWNLOAD LINK SOLID FILES
http://www.solidfiles.com/d/2b3bc2e5e9/

4Shared [NEW UPLOADER]
http://www.4shared.com/rar/CQc0rTg_/MWB_2.html


Teams

-America
-United KingDom
-Bangladesh
-Russia
-India
-Pakistan
-Nepal
-Brazil
-China
-Greece
-Singapore
-Iraq

Features

-Kill Streak System.
-Shop Command.
-Many More Server Commands.
-About 12 Teams.
-Weapon Shops Indicated In Pink Colour Zone.
-12 Gang-Zones.
-Many Cool Weapons Added.
-All Famous Countries In Asia And Europe Added.
-Contest System Added.
-When Player Connects It Will Show Name.
-Bugs And Commands Are Fixed.
-Cash Earning System Added.
-2 More Killing Spree System Added.
-2 More Kill Streaks Added.
-Class System Added.
-2 Classes And 2 Commands For Classes.
-Has A FilterScript With It To Save Skin,Score,Money,Kills And Deaths.
-[NEW][ScoreSystem] Every 1 Minute 1 Score.
-[NEW]Death Cam [When Player Dies Spectates]
-[NEW]Score And Kills System + Killing Spree Is There.
-[NEW]Automatic Message System.
-[NEW]All New Y_Less Login Register System Advanced + You Can Save Everything.

Game-Mode V2.0 Is All About

This V2.0 Is More Exclusive And Advanced Then The Last Ones As I Already Mentioned No Uploader Is Working For

Me Thats Why I Could Not Upload Pics So Guys This GM Has More Few Features That Has Been Ever Used In A GM

Before This Is The Modern War Looking Version For Real I Am Speaking This One Has Features That You Can't Even

Imagine It Took A Little Time But For You Guys I Made It Fast And Gave Release To It Hope You Guys Like It!

IF I HELPED YOU OR YOU LIKED MY GM +REP I NEED


__________________________________________________ _______________________________________________
V1.9 oF Modern War Battalation

DOWNLOAD LINK SOLID FILES
http://www.solidfiles.com/d/0c7eed1efd/

DOWNLOAD LINK 2SHARED
http://www.2shared.com/file/1PiSZcUS/MWB.html

__________________________________________________ _______________________________________________
Version 1.7 Of Modern Battalation

Solid-Files Download-Link
http://www.solidfiles.com/d/ac9822b4a7/

2shared Files Download Link
http://www.2shared.com/file/OVX_CbZw/MWB.html

__________________________________________________ _______________________________________________
V1.5

Solid-Files Download-Link
http://www.solidfiles.com/d/1b76217e2a/

2Shared Download-Link
http://www.2shared.com/file/eXWygtzX/MWB.html __________________
Head Admin of DivX Gaming Community DivX Gaming
Read More..

Need For Speed(NFS)

im post this gamemode becosue im dont see a nice gm GM Drift im releasing it : Need For Speed(NFS) more than 50 map Drift , Drag , Race and rally.
really Great Work Using Dialog MSGBOX With colors when type /Teles /Cmds /Help .
Credits:
Me Script Gamemode
LilD For Idea
Y-Less For Plugin Streamer


Teleports:
Drifts: /drift1-10 /driftcircle
DriftMaps: /driftschool /drifthard /basedrift /driftrocky /skydrift /driftstunt
Drags: /drag1-3
Dragmaps: /dragmap1 /dragmap2
RaceMaps:/cirlclerace
RallyMaps:/rally
AirPorts: /lsap1-2 /lvap /sfap /aa
TuneCars: /tune1-3 /tunecar
Others: /gowangcar /gofuelstation
Code:
if(!strcmp(cmdtext, "/teles", true))
    {
     new BigString15[1900];
  strcat(BigString15, "{FF0000}Drifts:{00FFFF}  /drift1-10   /driftcircle\n", 1900 );
  strcat(BigString15, "{FF0000}DriftMaps:{00FFFF}  /driftschool /drifthard /basedrift /driftrocky /skydrift /driftstunt\n",1900);
  strcat(BigString15, "{FF0000}Drags: {00FFFF} /drag1-3\n",1900);
  strcat(BigString15, "{FF0000}Dragmaps: {00FFFF}/dragmap1 /dragmap2\n", 1900 );
  strcat(BigString15, "{FF0000}RaceMaps:{00FFFF}/cirlclerace\n", 1900 );
  strcat(BigString15, "{FF0000}RallyMaps:{00FFFF}/rally\n", 1900 );
  strcat(BigString15, "{FF0000}AirPorts:{00FFFF} /lsap1-2 /lvap /sfap /aa\n", 1900 );
  strcat(BigString15, "{FF0000}TuneCars:{00FFFF} /tune1-3 /tunecar\n", 1900 );
  strcat(BigString15, "{FF0000}Buycars: {00FFFF}/gowangcar\n", 1900 );
  strcat(BigString15, "{FF0000}fuelcars:{00FFFF} /gofuelstation\n", 1900 );

  ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "{FFFFFF}--- Teleports ---", BigString15, "Select","Close");
        return 1;
    }


Commands:
/cmds for commands
/teles for teleports
time: /Day /night
/s /l for save and load pos
/tunecar /neon
/cig /beer /sprunk


Code:
 if(!strcmp(cmdtext, "/cmds", true))
    {
     new BigString15[1900];
  strcat(BigString15, "{FF0000}Spawncar:{00FFFF} /v /car\n", 1900 );
  strcat(BigString15, "{FF0000}Car:{00FFFF} /lockcar /unlockcar\n", 1900 );
  strcat(BigString15, "{FF0000}Tunecar:{00FFFF} 2 /tunecar /Ltc1-13 /ltune /tune1-3 /fix  /flip /count /neon\n",1900);
  strcat(BigString15, "{FF0000}Drug:{00FFFF}/cig /beer /sprunk\n", 1900 );
  strcat(BigString15, "{FF0000}Health:{00FFFF}/healme\n", 1900 );
  strcat(BigString15, "{FF0000}Save and load place:{00FFFF} /S /L\n", 1900 );
  strcat(BigString15, "{FF0000}Time:{00FFFF}/night /day\n", 1900 );
  strcat(BigString15, "{FF0000}Account: {00FFFF}/changepass /stats /resetstats /login /register\n", 1900 );
  strcat(BigString15, "{FF0000}GOTO: {00FFFF}/goto\n", 1900 );



  ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "{FFFFFF}--- commands ---", BigString15, "Okey","");
        return 1;
    }


Server Support:
Using Text Draw
Define colors
Automatic Nitro
Respawncar every 3 min
automatic chat bot.

__________________________________

Code:
#include <a_samp>
#include <Streamer>




new Text:Textdraw0;
new Text:Textdraw1;
new Text:Textdraw2;
new Text:Textdraw3;
new Text:Textdraw4;
new Text:Textdraw5;
new bool:AutoNOS[MAX_PLAYERS];


static Float:posx[MAX_PLAYERS] = 0.0;
static Float:posy[MAX_PLAYERS] = 0.0;
static Float:posz[MAX_PLAYERS] = 0.0;
static Float:zangle[MAX_PLAYERS] = 0.0;
static pmodelid[MAX_PLAYERS];
static pvehicleid[MAX_PLAYERS];
//Fowards
forward ModCar(playerid);

#pragma tabsize 0
#define RESPAWN_TIME 3 // Twenty minutes
#define DIALOGID 1338
#define CURRENT_MESSAGES 7
#define MESSAGE_COLOR 0x4169E1FF
#define MESSAGE_INTERVAL 45
#define neondialog 8131
#define PRESSED(%0) \
 (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
#define IsPlayerNotInVehicle(%0) (!IsPlayerInAnyVehicle(%0))
#define COLOR_GREEN 0x33AA33AA
#define COLOR_BRIGHTRED 0xFF0000AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WATER 0xFF66FFAA
#define COLOR_BLUE 0x3A47DEFF
#define COLOR_TAN 0xBDB76BAA
#define COLOR_PURPLE 0x800080AA
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_LIGHTBLUE 0x33CCFFAA
#define COLOR_ORANGE 0xFF9900AA
#define COLOR_INDIGO 0x4B00B0AA
#define COLOR_BLACK 0x00000000
#define COLOR_DARKGREY 0x696969FF
#define yellow 0xFFFF00AA
#define COLOR_RED 0xFF0000AA
#define l_red 0xFF0000AA
#define l_green 0x33FF33AA
#if defined FILTERSCRIPT
#define COLOR_GREY 0xAFAFAFAA
ScreenShot:
Images

Download
Read More..

Simple Zombie Gamemode

Simple Zombie Gamemode Features: -Three Aliances: Humans, Scientists and Medics. -One Enemy: Zombies Unique Features: /panic - Alerts a lot of people, making them able to see your location if close. Gun Range increased and damage, haven't tested though. GAMEMODE: - This Gamemode Can Be Edited by All - Download: http://www.solidfiles.com/d/28c1598e1b/
Read More..