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

[FilterScript] SAMP-TUBE | SPRITE/TXD/TEXTDRAW | By OTACON

$
0
0

Code:

INSTRUCTIONS:

1- Look for an video not too long.
2- decompress the video to frames (every second).
3- Insert frames into an file (.txd).
4- create an timer with the functions that corresponds to the sprites, (the interval of the timer must be the result of 1000 / FPS (of the video).
5- ready.

[] Downloads:
pastebin:


mega:


FILE (.TXD):


[] Credits:
OTACON

[FilterScript] Youtube, Voice CMD by Kolor4d0

[FilterScript] Checkpoint Jail System

$
0
0
Hey, it's JustMe again.
Today with a small Filterscript I've made for someone in the german community, I thought why not sharing it with you guys aswell?

Previous Releases

[Include] Elegant Login / Register TextDraws
[Include] Anti-Vehiclerepair Hack

Information

With this Filterscript, you can punish players by forcing them to run through an amount of checkpoints you choose. This is in my opinion way better than the usual "Jail Systems".

Here's a short video showing the main functions:

https://youtu.be/oGB-gWMRllA

Commands

  • /cpjail - Jail a player
  • /cpunjail - Unjail a player
  • /prisonlist- View a list of all jailed players


Credits

Updates

v.1.0.4:

Coming soon..

Test Server

server.lndsquad.com:2222

Download

English Version

German Version

End

That was all. Pretty simple system, there might be a lot to improve, just let me know here.
Leave a comment and post suggestions if you have a few :) !

[FilterScript] Cookies, Cakes, Icecreams, System [Good for Freeroam Servers!]

$
0
0
Cookies, Cakes, Icecreams Features System

Released on 3/4/2017


What is That???
So heyyo There Sampers! it's a few Freeroam features, Cookies and icecreams and cakes, so RCON admin are able to Set Someone's cookies,Cakes,icecream to any amount he wants and he can also Give anyone Cookies,cakes,icecream with his own amount!
And there is a features for each each one, /cookieshelp for cookies, /cakeshelp for cakes, /icecreamshelp for icecreams.
and just a VIP Feature with them, if player got 10 icecreams he can type /vip and get VIP Rank with their available features and commands!


Are these features gonna save? if yes then how?
Yes, it does, this system is based in Y_INI Saving system;
To save player's Cookies,Cakes,Icecream,VIP, You should Go into scriptfiles and create a folder named User, so when player join, his name will be saved in this folder and his Data too.

Script's Commands
/setcookie -> for RCON!
/setcake -> for RCON!
/seticecream -> for RCON!
/givecookie -> RCON!
/givecake -> RCON!
/giveicecream -> RCON!
/cookieshelp -> Player
/cakeshelp -> Player
/icecreamshelp -> Player

How to install it???
After downloading content, get Cookies.pwn and move it to your filterscripts folder,
and then go into your server.cfg, then open it, and go to filterscripts line and write behind it, this below:
PHP Code:

filterscripts Cookies 

and then close server.cfg and save allthings then go ahead and restart server and test it! :)

System's Requirements
this system would work if you get:
sscanf - http://forum.sa-mp.com/showthread.php?t=602923
zcmd - http://forum.sa-mp.com/showthread.php?t=91354
y_ini - http://forum.sa-mp.com/showthread.php?t=570957
Otherwise this system wouldn't work correctly and it might not get loaded!

Credits
Y_Less/corne - For y_ini;
Y_Less/maddinator - For sscanf;
Zeex - For ZCMD;
RyderX - For this Script;

Downloads
| GitHub |


NOTE: Hope you like it :), if anyone has suggestion it would be appreciated!, if you find any error/bug Please remind me in Reply!
And if about credits thing, nevermind do whatever you want with the script [EDITING/REMOVING/ADDING].
Greetings!

[FilterScript] FBI Truck Reinforced

$
0
0
Hi everyone! Today im presenting you an other modified vehicle, and as you guessed from the title, its the FBI truck. Ive added a lot of battle objects, because i think it will complement the car much better. Anyway, to see the whole transformation process click the YouTube link bellow, and to download it just click the download link.

YouTube: https://youtu.be/UU0bb_C4QgY?t=1m59s

Download: http://pastebin.com/ER9AjfhU

[FilterScript] Friends filterscript

$
0
0
Hello, I want to share with you this script which allows you to add/remove friends and too see who is from your friends list online/afk.
It's in Bosnian language but you can easily change it to english just find strings and change it to english.
In the pictures you will see even translation and look of filterscript.
SCREENSHOTS
PASTEBIN
I suggest you to transfer the script to your gamemode.pwn if you want to use it on your server, i think it will work better added in .pwn than writing it's name to server.cfg with adding it to "filterscripts" :) ENJOY.



P.S. YOU HAVE TO ADD "KORISNICI" AND "PRIJATELJI" FOLDERS TO YOUR SCRIPTFILES.

[FilterScript] [MySQL]New MoneyBag System

$
0
0
New MoneyBag System



Introduction:


Hello,

i noticed in nowdays the most servers are using the old moneybag system that use strcmp command and old functions + is not optimized at all,
so i created new with the most optimized functions, and fastest functions (MySQL), i don't forgot credits for [HiC]TheKiller because i got inspired by his work ofc


Features:


- Fast loading postions MySQL

- easy to add your own clues and pos's

- easy to deleted it too

- script so optimized

- fast loading and setup


How to install it ?:


- Download it (mediafire) | copy it (pastebin)

- as you see in script there some places must be edited and some others not

PHP Code:

// --------------< this must be edited without it FS will not work >--------------
 
#define MySQL_Host     "localhost" // hostname of your mysql server if you are using xampp use "localhost"
#define MySQL_User     "root" // username for your mysql database
#define MySQL_Database "test" // database that server will connect to it
#define MySQL_Password "" // password of the database (user) that server will connect to it
 
// --------------< you can edit this if you want >--------------
 
#define MAX_MONEYBAGS 150 // max moneybags that can be stored in database
#define MB_DELAY 30 // how many time moneybag re-spawn
 
#define MAX_MONEYBAG_MONEY 37000 // Max of money that can moneybag handle
#define MIN_MONEYBAG_MONEY 13000 // Min of money that can moneybag handle
 
//#define WEAPONS_BOUNS // un-comment this if you want player get weapons bouns from moneybag
 
#if defined WEAPONS_BOUNS
 
#define MAX_WEAPONS_AMMO 1500 // Min of ammo that can be given to a player
#define MIN_WEAPONS_AMMO 200 // Max of ammo that can be given to a player 

* edit mysql informations
- Complie it

- copy *.amx file to filterscripts in your server folder

- add it in Server.cfg

- restart server

- well done

Commands:

- /savemb or /savemoneybag

- /delmb or /deletemoneybag

- /mb or /moneybag

- /tmb or /togglemb

How to add a moneybag?:

just get ingame and use /savemb or /savemoneybag with name!

enjoy!

same for delete /delmb


Download Link:


Pastebin: http://pastebin.com/8PfLVsfN
Mediafire: http://www.mediafire.com/file/jnixyx...rdu/MoneyBag.p

**Note: *.p = *.pwn just open it using your pawn complier and complie it


Credits:


- SA-MP Team
- Zeex
- BlueG
- [HiC]TheKiller

[FilterScript] Classic dropgun script


[FilterScript] Z-Ammu FS

$
0
0
Z-Ammu FS

-Features

-DymanicCps
-CMD to teleport to the ammu fast if u are RCON Admin "/gotoammu"
-3DTEXTLABELS
-And u Can Find More


-Credits

Special Thanks To

-Zeex For ZCMD
-Incognito For Streamer
-The original FS maker ZukerCup


-Downloads

http://pastebin.com/UDtUQ2hP

http://www.mediafire.com/file/i3ol03...y_ZukerCup.zip

NOTE

To remove default checkpoints do this in your ongamemodeint or filterscriptint
Code:

DisableInteriorEnterExits();
Hope u Enjoy It and if u liked it, comment and REP+ Please. Thanks

[FilterScript] Anti ProAim and SilentAim !

$
0
0
Hello everyone !

I thought to post a small script for detecting cheaters if use ProAim or SilentAim.

It is a simple but useful script, currently working for detect Renko aim.

Video for demonstration:



Codes:
- V0.1: http://pastebin.com/yvwGvdMh (I do not recommend)
- V0.2: http://pastebin.com/S5s4sWns (bug fixes, to keep the target without press KEY_AIM, anti cheat send fake warnings)


Today I will make a small update.


Thanks for your attention!

[FilterScript] Modern interior of house | By OTACON[

[FilterScript] Bounce System By ZukerCup

$
0
0
What is That?

Its a system that automatically gives the player
money , score , health , armour and weapon, if he spent 1 hour in the server online.


How to Install?

Easy you can just copy it from the link of the pastebin and
compile it and copy the .amx file to your filterscripts folder .


and add it in your server.cfg
PHP Code:

echo Executing Server Config...
lanmode 0
echo 1
rcon_password
maxplayers 50
port 7777
hostname SA
-MP 0.3 Server!
gamemode0 bare 1
filterscripts Z
-bounce
announce 0
chatlogging 0
weburl forum
.sa-mp.com 

Credits
-ZukerCup
-Samp Team

Download

VER 0.1 (BUG Fixed)
http://pastebin.com/dtXhd5j8

Hope u Enjoy it and If u Enjoyed it, REP+ please. Thanks Alot

[FilterScript] RyderX's In-Game Pickups Creator

$
0
0
IN-GAME PICKUP CREATOR

Version 1.0

Released on 3/10/2017


Intoduction:
So yeah, i have took a look at peoples rating of my releases, some of them says Copy-Paste and other Good job, so the truth today it isn't any kind of Copying scripts or anything!
i was just scripting MoneyBag system for CvR, so i have created a createpickup command for my server which i can create pickups from game without doing it in Pawno....
And here Today, i'll present you my In-Game Pickups creator! here it is!


How does this work?
Just do what you want in-game, create a pickup, do whatever you want with it, and about generating codes, just go into Scriptfiles folder and you'll have to find a file named: Pickups just open it and get your pickups' codes.

Some Picuters:
http://imgur.com/a/Dy14c


Commands:
/createpickup -> Only for RCON Admins!

Script's Requirements:
zcmd - http://forum.sa-mp.com/showthread.php?t=91354
sscanf - http://forum.sa-mp.com/showthread.php?t=602923

Credits:
SA-MP Team & Kalcor - SAMP
RyderX - Developer
Zeex - ZCMD
Y_Less/maddinator - sscanf
www.wiki.sa-mp.com - Pickup's IDs

Downloads:
| GitHub |

[NOTE]: if you face any problem, please report them below! Thanks
[NOTE]: to get ID of Pickups just visit: http://wiki.sa-mp.com/wiki/Pickup_IDs

[FilterScript] Simple Fallout Minigame

$
0
0
Simple Fallout Minigame

Hey everyone! I'm here to release one of my first Filterscripts, the Fallout Event. Since it's a minigame that i love i wanted to code it and here it is!

For those who don't know what Fallout is:

Fallout is an event where you spawn on a giant platform, the platform will be destroyed one by one, meanwhile you have to try to not fall.
If you're the Last man standing on the platform you will win the minigame.


Commands:

/startevent RCON Admin command
/joinfallout Command to join the event

You can edit inside the script the Time for the start and the money given to the winner on top of the gamemode with EVENT_START and MONEY.

For now i'm releasing it like this, i didn't find any bug, if you find one just post it inside this topic.
I will add more features soon~

Screenshot: http://imgur.com/a/bS80L

Download: http://pastebin.com/BSv2eC1Q


Thanks to: Zeex for ZCMD include

[FilterScript] [MySQL]Pickups Manager Module (Full Control on pickups)

$
0
0
Pickups Manager Module

Full Control on pickups


Introduction:

Hey!

this a filterscript or module that allow you to full control your pickups, move, delete, type, and more!

Functions:

with using this module you don't have to use OnPlayerPickPickup anymore,
there a new callback to control your pickups!

PHP Code:

public OnPickupManagerDetect(playeridpickupid

what the different bettwen both ? OnPlayerPickPickup called on the gamemode won't detect the pickups created by our module because of variables not shared and about OnPickupManagerDetect this callback get called everytime you take an pickup created by this module

Commands:

in this module i used all-in-one commands style, (sub commands) so now the command it's

PHP Code:

/pickup [create/delete/move/type/virtualworld/model

for more info about usage see Pictures

Pictures:

Click me!

Download link:

Mediafire!

pastebin!

Credits:

- SAMP Team
- BlueG
- Y_Less & Emmet_
- Zeex

Idea originaly founded by [Bios]Marcel!

Have a nice day!

TitanX

[FilterScript] SAMP WIKI

[FilterScript] DM-Event (By ZukerCup)

$
0
0
DM-EVENT

Credits
Zeex ZCMD
Y_Lees SSCANF
ZukerCup The Original Scripter


What is This?
Its A EVENT system (DM) DeathMatch just for fun and who stay the last in the event i mean who killed all, that will be the winner and u can give him money by typing /givecash <playerid> <money> , u can /dmevent <weaponid> to open a dm event and /startdm to start it and /offdmevent to be abl to use /dmevent again. hope u like it

ScreenShots
http://imgur.com/a/zbITf

Downloads
VER 0.1
PasteBin http://pastebin.com/hBu6XSbk

MediaFire https://www.mediafire.com/?zkbzc3mk1yhpa8o
VER 0.2
coming soon and there will be selection in /dmevent like that /dmevent [DM/TDM]
hope u will like the new ver.

And make sure u do like this in your server.cfg

Code:

echo Executing Server Config...
lanmode XXX
rcon_password XXX
maxplayers XXX
port XXX
hostname XXX
gamemode0 XXX 1
filterscripts  dm-event
announce 0
plugins sscanf
chatlogging 0
weburl XXX

NOTE
Sorry For My BAD English , I Hope u All Enjoy The Script And Thanks For Reading my Topic and reading my script Thanks to all and if it was good please REP+ Me, Thanks Again.

[FilterScript] Vote System

$
0
0
Introduction:

It's a vote system with 2 options.

Commands:
Code:

/startvote [option1] [option2] - (rcon command - start a vote)
/endvote - (rcon command - end the vote)
/vote [option] - (player command)
/cancelvote (player command)
/votes (player command)

Download:
http://pastebin.com/cFmNzYDs

Credits:
Pawn.CMD - YourShadow
Sscanf2 - YLESS

[FilterScript] Car Remote Control

$
0
0
Car Remote Control


I made this FS with the intention of helping a certain person to a while back but that person did not want more so he was kept there in a dark corner of my notebook and today digging in the old files I ended up finding him and I decided to an increment and post it already Which I do not use for anything '-'


Functions


It serves to open / close or on / off or following components:

Doors (can open / close only one or all goes of the taste of each one)
Glasses (you can open / close only one or all of them will taste '-')
Engine
Headlights
Hood
Trunk

Download
Images

Sorry for my bad English, I used Google Translate '-'

[FilterScript] SuperJump/Rocketboots! Filterscript! [FIRST RELEASE]

$
0
0
This is my First release!! :D

How does it work?:
It works if you press the walk button (LALT) the player will jump with some thrust on his feet!
Pictures:

http://imgur.com/a/GWnsh
Known Bugs:
Not yet,Atleast I didn't found any,but just reply here if you do so.

Download:

http://pastebin.com/SrjibMJn

+REP me if you like this! :D ;)
Tip!: If you're not in any map you can press the LALT repeatedly for flying.
Viewing all 595 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>