11.11.2013, 03:46
Quote:
|
Can someone give me that "AT400" Command to get in the at400? and there is possible/there is any command to add vehicles from server and if we use /respawnvehicles it won't lost from where did i park?
And i need a admin chat command. |
pawn Код:
CMD:plane(playerid,params[])
{
if(!IsPlayerAdmin(playerid))return 0;
new Float:X,Float:Y,Float:Z,Float:Angle;
GetPlayerPos(playerid,X,Y,Z);
GetPlayerFacingAngle(playerid,Angle);
new vehicle = CreateVehicle(577,X,Y,Z,Angle,-1,-1,5000);
PutPlayerInVehicle(playerid,vehicle,0);//Will put in the seat of the driver
SendClientMessage(playerid,-1,"Vehicle Created!");
return 1;
}


