18.02.2013, 17:14
(
Last edited by redreaper666; 19/02/2013 at 06:12 PM.
)
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
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

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;
}
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


