SA-MP Forums Archive
[FilterScript] Avanced Vehicle System Edited - 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Avanced Vehicle System Edited (/showthread.php?tid=382052)



Avanced Vehicle System Revisied - KevinPRINCE - 01.10.2012

AVS - Advanced Vehicle System
FeaturesCommands

/avshelp - access all the commands available

Player commands:
Code:
/v  /vlock  /fix  /flip  /tow  /eject  /ejectall
/valarm  /fuel  /trunk  /kph  /mph  /clearmods  /sellv  /givecarkeys  /trackcar
Admin commands:
Code:
/addv  /editv  /setfuel  /rac (respawnallcars)  /rtc (respawnthiscar)
/adddealership  /deletedealership  /movedealership  /gotodealership
/addfuelstation  /deletefuelstation  /movefuelstation  /gotofuelstation
Installing

1. Download avs.amx file and put it to your server filterscripts folder
2. Add it to server.cfg

Code:
filterscripts avs
3. Create these folders to scriptfiles

Code:
<server>\scriptfiles\AVS\Vehicles\
<server>\scriptfiles\AVS\Dealerships\
<server>\scriptfiles\AVS\FuelStations\
4. Change the settings in the avs.pwn script (if you want)

pawn Code:
//=========================SETTINGS=========================

#undef MAX_PLAYERS
#define MAX_PLAYERS 100

#define MAX_DVEHICLES 200
#define MAX_DEALERSHIPS 10
#define MAX_FUEL_STATIONS 10

#define VEHICLE_FILE_PATH "AVS/Vehicles/"
#define DEALERSHIP_FILE_PATH "AVS/Dealerships/"
#define FUEL_STATION_FILE_PATH "AVS/FuelStations/"

#define MAX_PLAYER_VEHICLES 3
#define FUEL_PRICE 5
#define GAS_CAN_PRICE 500
#define ALARM_TIME 10000  // alarm duration in milliseconds (1 second = 1000 milliseconds)
#define DEFAULT_NUMBER_PLATE "123 ABC"

//==========================================================
5. Link this FS with your admin system (if you want)

Just add this function to the admin script

pawn Code:
public GetPlayerAVSAdmin(playerid)
{
    return PlayerInfo[playerid][pAdmin];
}
You must use YOUR admin system variable. PlayerInfo[playerid][pAdmin] is just EXAMPLE.

Notes

You need at least SA-MP 0.3c R3 server - https://sampforum.blast.hk/showthread.php?tid=271586

If you want to restart your gamemode (gmx), first unload AVS, restart the gamemode and then load AVS again. Else your vehicles might be bugged.

Common Problems

P: Nothing happens when I click a button in dialog.
S: This is most likely caused by ANOTHER filterscript. Quick fix for it is to remove all other filterscripts from server.cfg and try then. If you want to keep them, you must EDIT OTHER FILTERSCRIPTS and make sure the LAST return in OnDialogResponse is 0.

P: I can drive with engine off.
S: Use ManualVehicleEngineAndLights in your GAMEMODE script - https://sampwiki.blast.hk/wiki/ManualVehicleEngineAndLights

P: I can drive with a dealership vehicle.
S: Admins can drive them, so if you are admin, there is nothing wrong.

P: Server shuts down after adding a vehicle, dealership or fuel station.
S: Make sure you have created the AVS folder inside scriptfiles and also another 3 folders inside AVS (shown above in Installing section step 3)

P: Money doesn't decrease when I buy a vehicle.
S: You are probably using a server-side money for anti-cheat purposes. There is no simple fix for it. You need some scripting knowledge to hook AVS money functions with server-side script.

Credits

****** - sscanf
ZeeX - zcmd
MadeMan - Original Script and This Tutorial page, The Whole script
Kevin - Removing fuel system (not the whole thing, just some distracting parts), and the stats bar, and fixing few typos


Links: http://www.upload.ee/files/2716271/AVS.zip.html


Re: Avanced Vehicle System Edited - KevinPRINCE - 16.09.2013

Any comments or error reports?


Re: Avanced Vehicle System Edited - x96664 - 17.09.2013

Do you even have permission to upload this fs ?


Re: Avanced Vehicle System Edited - Uberanwar - 17.09.2013

The stats bar is the textdraw right?


Re: Avanced Vehicle System Edited - KevinPRINCE - 25.10.2013

Quote:
Originally Posted by x96664
View Post
Do you even have permission to upload this fs ?
I believe i do as long I give credits

@Uberan Yes I believe its the textdraw I disabled for the car stats but I did it along time ago I don't remember precisely if you want I can check the file again.


Re: Avanced Vehicle System Edited - Akira297 - 25.10.2013

Your filter-script seems like a Next Generation Gaming script dub release. Anyways, on-topic very interesting.


Re: Avanced Vehicle System Edited - fanta291327 - 13.11.2013

Nice


Re: Avanced Vehicle System Edited - DanishHaq - 13.11.2013

What did you add? The word count on the original topic is greater than the word count on this topic. Hence the title, did you edit it and remove stuff? Because that's not an improvement or whatnot.

I don't see much difference whatsoever, and nowhere on the original topic does it say you can rerelease that filterscript with your own tweaks and edits.

Before posting, read the forum rules and have some common sense. At the moment this topic looks like the original and the original topic looks like the updated version of this. If it's an advanced vehicle system, why have you removed stuff? Lol...

https://sampforum.blast.hk/showthread.php?tid=276887


Re: Avanced Vehicle System Edited - KevinPRINCE - 13.11.2013

Quote:
Originally Posted by DanishHaq
View Post
What did you add? The word count on the original topic is greater than the word count on this topic. Hence the title, did you edit it and remove stuff? Because that's not an improvement or whatnot.

I don't see much difference whatsoever, and nowhere on the original topic does it say you can rerelease that filterscript with your own tweaks and edits.

Before posting, read the forum rules and have some common sense. At the moment this topic looks like the original and the original topic looks like the updated version of this. If it's an advanced vehicle system, why have you removed stuff? Lol...

https://sampforum.blast.hk/showthread.php?tid=276887
The original one has been edited since last year, I never edited this since, did you even see the OG thread when it was first released?

And I have listed credits, which is perfectly fine, and there were 600+ downloads and people still uses it, one person won't bring it down . And if you want I can start editing this and change it completely and add many more lines of codes with more functions. Also never said its updated, revised, in other words edited to change few functions. (Known mostly as Nightly Build)


Re: Avanced Vehicle System Edited - doiniboss - 09.06.2014

i get a big crash on my server when i type /addealership .. Why ?>