[FilterScript] Driveable Wheelchair - 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] Driveable Wheelchair (
/showthread.php?tid=416883)
Driveable Wheelchair -
redreaper666 - 18.02.2013
Hi guys i was getting bored so i made a little filterscript so that you can ride this rustly old wheelchair which is located at a lake.
http://www.youtube.com/watch?v=tWbH9...ature=youtu.be
Code:
#include <a_samp>
#include <zcmd>
new obj,Wheelchaircar;
public OnFilterScriptInit()
{
obj = CreateObject(1369, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);//Wheelchair
Wheelchaircar = 594;
return 1;
}
CMD:wheelchair(playerid,params[])
{
new Float:x, Float:y, Float:z, Float:a;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, a);
Wheelchaircar = CreateVehicle(594, x +2, y, z+2, a, -1, -1, 60);
AttachObjectToVehicle(obj, Wheelchaircar, 0.0, 0.0, 0.4, 0.0, 0.0, -180.0);
LinkVehicleToInterior(Wheelchaircar, 6);
PutPlayerInVehicle(playerid, Wheelchaircar, 0);
return 1;
}
Im not gonna upload this as .pwn,.amx out of the reason that its really simple.
Dont get mad on this please its just an idea i had.
I dont want credits for that so if you make it better you can say that it would be yours.
Have fun
Re: Driveable Wheelchair -
minijackc - 18.02.2013
Not bad... Rep+
Re: Driveable Wheelchair -
iWayne - 18.02.2013
Good Work. Really Nice haha Repped+
Re: Driveable Wheelchair -
Kontrol - 18.02.2013
Simples! nice
Re: Driveable Wheelchair -
Scrillex - 18.02.2013
Good thought.. Good job
Respuesta: Driveable Wheelchair -
Dex007HLH - 19.02.2013
I would like to see a video
Re: Respuesta: Driveable Wheelchair -
iGamerX - 19.02.2013
Quote:
Originally Posted by Dex007HLH
I would like to see a video
|
tthhiisss
Re: Driveable Wheelchair -
freddy smyth - 19.02.2013
Yes, are there at least screenshots for this?
I'd like to see it in action. Good idea by the way.
Re: Driveable Wheelchair -
redreaper666 - 19.02.2013
Updated
Here you go:
http://www.youtube.com/watch?v=tWbH9...ature=youtu.be
Re: Driveable Wheelchair -
AchievementMaster360 - 20.02.2013
Nice FS !