Quantcast
Channel: SA-MP Forums - Filterscripts
Viewing all 595 articles
Browse latest View live

[FilterScript] Driving Test


[FilterScript] SPECIAL_ACTION_USECELLPHONE & entering vehicle as passenger fix

$
0
0
When you enter a vehicle as passenger whilst using SPECIAL_ACTION_USECELLPHONE the special action will break, though GetPlayerSpecialAction isn't updated and will stay as SPECIAL_ACTION_USECELLPHONE.

Here is an example of how to prevent entering a vehicle as passenger whilst using SPECIAL_ACTION_USECELLPHONE from breaking the special action if 1) you successfully enter the vehicle then leave it, or 2) you start entering the vehicle but walk away (cancelling the entering vehicle action) .

https://pastebin.com/9Nv2knLu

[FilterScript] Position - Save, Load & Delete[Y_INI][ZCMD]

$
0
0
Position - Save, Load & Delete [Y_INI][ZCMD]

About:
It is a simpler version of /savepos and /loadpos

Commands:
/mypos <save/load/delete>

Download:
position.pwn: Pastebin | RAW | Github
YSI Timers: GitHub
zcmd.inc: Forum Topic

[FilterScript] Zombie [FCNPC][A.I]

$
0
0
Zombie [FCNPC][A.I]

About:
Zombie Bot script inspired from ZNPC & iZombies and some more scripts.

Features:
  • Custom damage to zombies from players (configurable).
  • Custom damage from zombies to players (configurable).
  • Zombies have melee weapons (shovel/knife/katana - custom damage).
  • Zombies will roam around the map.
  • Zombies will more attracted to players who shoot nearby them (except silencer & melee weapons)
  • Zombies will less attracted to players who crouch/duck near them.
  • Zombies will more attracted to players who sprint.
  • Zombies have custom damage bar on their head (https://imgur.com/egi6RrL).
  • Latest FCNPC and ColAndreas/MapAndreas(1.0) is used.
  • Zombies get headshot from all weapons(only zombies).

Note:
The script might have some bugs, I'll fix them as I find them.. Including zombies flying..

Media:
Custom zombie damage - https://imgur.com/egi6RrL
Zombie kill human (death window) - https://imgur.com/a/HtuyjVH
Video - Probably.

Download:
zombie.pwn: Pastebin | RAW | Github
FCNPC: Github
ColAndreas: Github
MapAndreas: Forum Topic
YSI Timers: Github

[FilterScript] All Animations 1.5 [Dialog Edition]

$
0
0
It's been 11 years since my animation script was written. I am at the New Year holidays it slightly updated.




* Now there are no commands, only buttons:
- Mouse wheel - show readme;
- Button H / P - show a list of animations.
* Animations are absolutely everything (at least, which are adequately displayed; there were 4 more workers, but the skin was broken there). It’s not possible to convert animations from cut scenes, so they are not there either.
* Support for custom-animations is available, just fill the array with the names and libraries (everywhere indicated by SEX, so that the game does not crash when incorrectly added).
* All special actions are also added.
* Added correct preloading animations.
* Added custom.img with edited * .ifp to unlock SEX library animations [not that section]
* I did not add any commands to stop animations or special actions, just poke Spacebar.
* Among my versions, this revision is the shortest and functional. I did it for myself, I have enough opportunities. Who is interested in searching by the name of the library or animation, or beautiful text texts - there are many alternatives.
* When you first spawn for a couple of seconds, there may be a frieze - this is loading animations. Alas, it did not work out otherwise.

Creator: OKStyle
Download: Pastebin link

[FilterScript] Fun Ship - V1.0

$
0
0
Hi guys.

It's my fun ship's system.
It's Good For Recreation.
You Can To Beach And Text /StartShipMove To Start Moving.

Screenshots:



Download:
Mediafire
PasteBin
Bugs:
No Bugs . If you see any bug contact with me

[FilterScript] (CODE)Command for crash a player (Work)

$
0
0
This is my first code, please rep :D
Code:

CMD:crashplayer(playerid, params[])
{
        /////You can add here the variable for administrator
        new id,adminname[50], playername[50], sendername[MAX_PLAYER_NAME], string[50];
        if(sscanf(params, "d", id)) return SendClientMessage(playerid, -1, "USSAGE: /crashplayer [id]");
        if(!IsPlayerConnected(id)) return SendClientMessage(playerid, -1, "Player not connected.");
        if(IsPlayerConnected(id))
        {
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 1000, 0);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 2000, 1);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 3000, 2);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 4000, 3);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 5000, 4);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 6000, 5);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 7000, 6);
                GameTextForPlayer(id, "•¤¶§!$$%&'()*+,-./01~!@#$^&*()_-+={[}]:;'<,>.?/", 12000, 6);
                GetPlayerName(id, playername, 256);
                GetPlayerName(playerid, adminname, 256);
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "%s was crashed", playername);
                SendClientMessage(playerid, -1, string);
        }
        return 1;
}

[FilterScript] Unlimited Random Songs when player Login.

$
0
0
Login Random Music

In order to this filterscript works, you'll need a web host

Example:
You must save the songs to play with the name "song.mp3"
if you want have 3 different songs you should start with "song.mp3", "song1.mp3", "song2.mp3" ...


You'll need to download or copy/paste the code and edit .pwn for compile it with your settings.


* Music stops when the player spawn
* There is an RCON command to activate or deactivate the sound when logging in. | /activatemusic


PHP Code:

// Avaliable Settings:

#define COL_RED 0x9F0000FF  //Color

#define MAX_SONGS (3) //Here place the amount of songs that you will use.

new FirstSong[] = "http://www.example.com/music/song.mp3"// Here you place the route of the first song.mp3 (this should not contain any number)

new Link[] = "http://www.example.com/music/song%i.mp3"// Here it places the route where the songs are

// 


Leave me your opinion.

[FilterScript] Prohibited Word System - Yukimura.

$
0
0
Hello guys, today i will show you my Prohibited Word System. I hope you like it.

It works like that:
if you use prohibited words, it will give to you one message; please don't use prohibited words!

DOWNLOAD
-------------
Code:

https://pastebin.com/bRrBJNjd

[FilterScript] NightCLub (FamousClub)

$
0
0
Removed

Guys i will update the Nightclub after some Development with many features

[Tool/Web/Other] Peds (NPC-s) FS

$
0
0
I was searching for peds or npcs through GTA SA map but every FS with that is really old and not working. So... If there is anyone who have time and knowledge to make new FS with peds who are walking through streets and if it's not very hard make them through all map not just LS (and it would be useful to make #define how much peds will be spawned in your 'stream' ). Just to be clear I'm searching for peds like in singleplayer , if you hit them some shold hit you back but some just start running and not that much peds like in singleplayer because it would be laggy. I don't need car drivers just people walking.

[If this is wrong section sry because I can't find any other section for this]

[FilterScript] TS Controller - Control Your TS Server

$
0
0
TeamSpeak Controller v1.0

Installation:
This filterscript want TSConnector plugin! if you dont have it download from :
https://github.com/maddinat0r/samp-tsconnector/releases
Change Theese Defines:

#define TS_IP "127.0.0.1" // IP Of TeamSpeak Server
#define TS_PORT 9987 // Port Of TeamSpeak Server
#define TS_QUESER "serveradmin" // Query's User Of TeamSpeak Server
#define TS_QPASS "5lrviiGI" // Query's Password TeamSpeak Server

#define RANK_STATUS_W 40 // Status Off Player:
#define RANK_STATUS_ON 41 // Player Is Online
#define RANK_STATUS_OFF 42 // Player Is Offline

#define CHANNEL_ONLINE_USERS 19 // ID Off Online Users: 00 Channel
#define CHANNEL_SAMP_ONLINE_USERS 20 // ID Off SA:MP Server's Online Users: 00 Channel


Features:
Show TeamSpeak's Online
Show SA-MP's Online
Set player's name as client's description
Set client's offline&online in samp rank.


Credits:
Maddinat0r - TSConnector Plugin
NimA00GaMeR - Scripter of TS Controller


Download:
PWN File - Github

[FilterScript] Working Peds?

$
0
0
Is there any FS or script that adds NPCs and Drivers like SinglePlayer? Or at least autonomus Peds.

[FilterScript] xNavigator - Navigation System ~ with Direction Arrow!

$
0
0
Hi everyone,

With this system you can use a nice navigation feature on your server.
In addition to marking the selected location on the map, you can also see the direction of the location by the arrow on the top of the vehicle.


» Features
  • You can easily add your locations by typing {"Location Name", X, Y, Z} in the location list in the script.
  • You can open and use the navigation by typing /nav in the game.
  • After selecting a location, the selected position is marked on the map, and also you can see the direction of the location by the arrow that appears on the vehicle.
  • You can also see how much distance to the destination with textdraw, which is shown on the screen.
  • Navigation closes when you get out of the car, when you type /navclose or when you reach the destination.

» Images






» Download

» MediaFire «


» Note

I used zcmd as a command system when coding the system. I’ve also added it in the rar.

[FilterScript] Simple Drug System

$
0
0

Hello people! So I decided to post a filterscript.
It is a drug system, I've maded, it is free to use, just please do not remove the credits.
Check my signature, positive reputation would be appriciated, I honestly need to post an advertisement for a server.
If you find any errors, mistakes, bugs, feel free to tell me and I will fix it and upload again, or you can fix it yourself.
Pastebin: https://pastebin.com/Z8vvkkTT
Direct DL: https://download2267.mediafire.com/d...rug-System.inc
Mediafire: https://www.mediafire.com/file/608d2...ystem.inc/file

[FilterScript] Discord irc System [first filterscript]

$
0
0
Hi friends its 3 years after i just decide to introduced myself normally i was posting helping threads but i didn't
make anything on there so its my first time hopefully you will appreciate it
Its Dicord IRC system actually i didn't see this system on there i mean there is alot but those are different so i made simple system for needless

SYSTEM INFORMATION
Added Chating with In Game Players Using Discord
Added Joining and Leaving Message
Added Sending Message In Seleted Channel
Added Blocking Discord Irc Bots Message in Game
Added Blocking Other Discord Bots Message In Game

Before Using It You Must Read This Topic First and download Discord Connector From There

Thread Link https://forum.sa-mp.com/showthread.php?t=631562

How To Make Bot:

[1] Click On This Site https://discordapp.com/developers/applications/me
[2] Make New Application "new application"
[3] Add Or Set Any Name of you Bot
[4] now Click "create application"
[5] press the "create bot user"
[6] Copy Token Id
[7] Open Your Server cfg and add this line ( discord_bot_token YOUR_BOT_TOKEN_HERE ) add bot token id
and save it
[8] Add in plugins line discord-connector.so or discord-connector.dll and save it

[9] invite bot in you server
(https://discordapp.com/api/oauth2/au...&permissions=0 ) with your bot client id


Finish just like this you can make this system simply sorry for my bad english bcz i'm not donald trump friend





Here is Some Pictures

https://imgur.com/a/rpVTxfH


Here Is PasteBin Link [ https://pastebin.com/EK7KUnkjt ]

Credit : Paul_Walker


[Plugin] Trusted Driver's license, IDs, Passports producer WhatsApp +19173008136(puredocumentation@gmail.com)

$
0
0
if you're looking for where to buy USA/EU, ASIA, Australia puredocumentation@gmail.com
driving license or any other citizenship documents WhatsApp +1(917)-300-8136 and you don't want to pass through the government process or write a driving test when you already know how to drive kindly send us a request if interested at
Email: (puredocumentation@gmail.com)

WhatsApp +1(917)-300-8136

Email.. puredocumentation @ protomail .com

Our site www.puredocumentation.com

[FilterScript] Damage System

$
0
0
Damage System By ZiiM(Alex_T)


A very simple and easy to use damage system. Allows you to easily change guns damage. It also shows damages you have recieved. The script saves all the custom damages to a INI file. Please if you find any bugs post them below.



Commands

Quote:

  • /damages - Shows you who has shot you, with what gun and for how much damage.
  • /resetdamages - A CMD for admins, it resets the players damage they have recieved.
  • /settings - A CMD for admins to configure the script. Change weapon damage and enable/disable damage tracking.
  • /saveall - A way to manually save the filterscript.



Photos






Download
Download
Github




Credits
  • Emmet_ - Creating sscanf2
  • Y_Less - Creating Y_ini

[FilterScript] Player Location Display [v1.0]

$
0
0
Player Location Display

Player Location Display for SAMP, based off of it's GTA V counterpart.

Quote:



(These are images from when I first created the design, there is a more updated look at the design in a pretty shitty video I made.)

Video of latest update (yes its pretty shit please excuse me - in the video you will be able to see gangzones, in the actual scripts they can be toggled on/off, they are only there for debug purposes.): https://*********/ARc9RjMuZb0?t=19
PLD–Player Location Display SAMP is a filterscript that displays the player's current location (including street name or intersection, area name, and region) at the bottom-left corner of the user's screen. It also shows the player's current compass point depending on what direction they are facing.

Description
  • PLD displays your current compass point. At the moment it only supports North, East, South and West however I do plan on adding support for North East, South East, South West and North West in the future.
  • PLD displays the player's current location. (Only caveat is that you have to provide XY coordinates)
  • Location includes Street Name, Geographical Area & City.
  • Players can disable the feature for theirselves by typing in /pld.

Dependencies
  • streamer by Incognito
  • izcmd by Yashas

Installation
Please ensure you have the dependencies installed before attempting to compile the project!
  • Download the full project and extract it.
  • Drop the .pwn files inside of the filterscripts folder into your gamemode's filterscripts folder.
  • Compile main.pwn
  • Add 'main' to the filterscripts line inside of your server.cfg
  • If streamer isn't added to your plugins line, add it! For more in-depth installation please see the wiki.

Notes
  • This is not an .ASI script like the GTA V Player Location Display, this is completely server-sided. Please do not contact me about making it into an ASI.
  • This is for San Andreas Multiplayer, not any GTA 5 Multiplayer platform.
  • Any other issues or queries please open up a issue!

Credits
  • Gravityfalls/Logic for helping me out with the streamer aspect of this.
  • Incognito for streamer.
  • Yashas for izcmd.
  • Lt.Caine for inspiration and for part of this readme.md (specifically the paragraph under the first header).

Download: GitHub

[FilterScript] Secure Area (If you leave the AREA, you lose LIFE) Ver. 2.0

$
0
0
Secure Area You're trapped in an area, there's no escape! Version 2.0 EN

Description:

FilterScript that creates a SAFE AREA for ALL PLAYERS, or for a single player. When the Player is inside the SAFE AREA, it will not LOSE LIFE. If the PLAYER leaves the SECURE AREA it begins to lose LIFE, and has to return to SAFE AREA, if it stays outside the SAFE AREA, the Player will lose LIFE until DYING
The SAFE AREA creates a GANGZONE on the mapa , to determine the limit place that the Player (Players) can go, this Gangzone is visible in the global map, for all the players.
All filterscript definitions are available to be changed at any time within the game, by command. Among them: (life that the player will lose, speed that will lose life when leaving the area, size of the SAFE AREA , create or delete a SAFE AREA, create a SAFE AREA for a single player, or for all players ...)

Commands

/cmdzone = TABLE of all FS COMMANDS
/zone = CREATE A SAFE AREA at PLAYER position (DEFINE: Player ID, is RADIAU of SAFE AREA) [EX:] /zone 0 15 (0 = Player ID, 15 = AREA RADIAU). (Optional: DEFINE COLOR) [EX:] /zone 0 15 0x00FCFC66
/zoneall = CREATE A SAFE AREA for all PLAYERS (DEFINE: Radiau) [EX:] /zoneall 15 (15 = AREA RADIAU). (Optional: DEFINE COLOR) [EX:] /zoneall 15 0x00FCFC66
/redor = CREATE a SAFE AREA for all PLAYERS, with the INVESTED GANGZONE (DEFINE: Radiau) [EX:] /redor 15 (15 = AREA RADIAU). (Optional: (External of AREA) (DEFINE COLOR)) [EX:] /redor 15 20 0x00FCFC66
/zoneoff = DISABLE the SAFE AREA created by (/zone)
/zoneoffall = DISABLE the SAFE AREA created by (/zoneall)
/zonedelete = DELETE only the AREA GANGZONE
/zoneflash = Gangzone created by (/zone), is in FLASH mode
/zoneflashall = Ganzone created by (/zoneall), is in FLASH mode
/zonedeleteall = DELETE only the AREA GANGZONE created by (/zoneall)
/zonewarning = ACTIVE the "WARNING" phase is appearing on the screen of all PLAYERS
/zonetime = RESET SAFE AREA TIME Created by (/zone)
/zonetimeall = RESET THE SAFE AREA TIME Created by (/zoneall)

Includes Required:

#include a_samp
#include sscanf2
#include zcmd


Download:
Pastebin: https://pastebin.com/ZgpHyj5D (Version 2.0 EN)

Video Demonstration of how FS works
https://www.*******.com/watch?v=7KKqpFGGo0Q

Attached Files
File Type: pwn SecureArea.pwn (10.5 KB)
File Type: amx SecureArea.amx (52.2 KB)
Viewing all 595 articles
Browse latest View live