- 0
Comanda /apark
-
Similar Content
-
Comanda /fly
By xLinix96,
- 6 replies
- 3,214 views
-
- 10 replies
- 1,191 views
-
- 3 replies
- 112 views
-
- 11 replies
- 252 views
-
Cine ma poate ajuta pentru comanda cu /masina un delay de un minut iar pentru comanda /comanda7368 sa poata sa o foloseaca doar odata ?
By GamerulFOX,
- 8 replies
- 477 views
-
-
Recently Browsing 0 members
- No registered users viewing this page.
Question
Diendo
Salutare as avea o problema.Deci am creeat comanda /apark dar cand intru intr-o masina imi zice Server:Unknown Comand iar cand ies din masina si dai /apark imi merge.
Uitati comanda:
if(strcmp(cmd, "/apark", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new Float:x,Float:y,Float:z;
new Float:a;
new carid;
carid = GetPlayerVehicleID(playerid);
GetPlayerName(playerid, playername, sizeof(playername));
GetVehiclePos(carid, x, y, z);
// GetPlayerFacingAngle(playerid, a);
GetVehicleZAngle(carid, a);
if(PlayerInfo[playerid][pAdmin] >= 3)
{
CarInfo[carid][cLocationx] = x;
CarInfo[carid][cLocationy] = y;
CarInfo[carid][cLocationz] = z;
CarInfo[carid][cAngle] = a;
format(string, sizeof(string), "~n~ You have parked your car in this location. ~n~");
GameTextForPlayer(playerid, "You have parked this car in this position. It will respawn here.", 10000, 3);
OnPropUpdate();
OnPlayerUpdate(playerid);
DestroyVehicle(carid);
CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
return 1;
}
else
{
SendClientMessage(playerid, COLOR_GREY, " You are not authorized to use that command !");
return 1;
}
}
return 1;
}
Multumesc anticipat
Link to comment
Share on other sites
16 answers to this question
Recommended Posts