HELP WITH COMMAND
#3

Quote:
Originally Posted by aRoach
Посмотреть сообщение

pawn Код:
if( strcmp( "/sultan", cmdtext, true, 10 ) == 0 )
{
    if(GetTickCount() - GetPVarInt(playerid, "LastFLASH") < 120000) return SendClientMessage(playerid, 0xFF0000FF, "you need to wait ");
    new Float:X,Float:Y,Float:Z,Float:Angle, carid;
    GetPlayerPos(playerid,X,Y,Z);
    GetPlayerFacingAngle(playerid,Angle);
    carid = GetPlayerVehicleID(playerid);
    carid = CreateVehicle( 560, X, Y, Z, Angle, -1, -1, 180 );
    AddVehicleComponent(carid,1029);
    AddVehicleComponent(carid,1033);
    AddVehicleComponent(carid,1139);
    AddVehicleComponent(carid,1010);
    AddVehicleComponent(carid,1073);
    ChangeVehiclePaintjob(carid,1);
    PutPlayerInVehicle(playerid,carid,0);
    TogglePlayerControllable(playerid,true);
    SetPVarInt(playerid, "LastFLASH", GetTickCount());
    return SendClientMessage(playerid, 0x40FF40FF, "sultan has been spawned!");
}
This will just respawn the vehicle after 3 minutes. You should use a timer for this if you want the vehicle to be deleted
Reply


Messages In This Thread
HELP WITH COMMAND - by boyan96 - 26.09.2011, 10:43
Re: HELP WITH COMMAND - by aRoach - 26.09.2011, 11:02
Re: HELP WITH COMMAND - by Wesley221 - 26.09.2011, 11:08
Re: HELP WITH COMMAND - by aRoach - 26.09.2011, 11:16
Re: HELP WITH COMMAND - by boyan96 - 26.09.2011, 12:10

Forum Jump:


Users browsing this thread: 1 Guest(s)