[FilterScript] Driveable Wheelchair
#1

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
Reply


Messages In This Thread
Driveable Wheelchair - by redreaper666 - 18.02.2013, 17:14
Re: Driveable Wheelchair - by minijackc - 18.02.2013, 23:07
Re: Driveable Wheelchair - by iWayne - 18.02.2013, 23:15
Re: Driveable Wheelchair - by Kontrol - 18.02.2013, 23:18
Re: Driveable Wheelchair - by Scrillex - 18.02.2013, 23:42
Respuesta: Driveable Wheelchair - by Dex007HLH - 19.02.2013, 00:33
Re: Respuesta: Driveable Wheelchair - by iGamerX - 19.02.2013, 08:50
Re: Driveable Wheelchair - by freddy smyth - 19.02.2013, 08:54
Re: Driveable Wheelchair - by redreaper666 - 19.02.2013, 18:12
Re: Driveable Wheelchair - by AchievementMaster360 - 20.02.2013, 02:34

Forum Jump:


Users browsing this thread: 2 Guest(s)