13.09.2011, 15:01
http://forum.sa-mp.com/showpost.php?...50&postcount=5
e Cristhian falta retorno nesse seu comando.
e Cristhian falta retorno nesse seu comando.
pawn Код:
if(strcmp(cmdtext, "/car", true)==0)
{
new id;
id = strval(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, -1, "/car [id]");
if(id < 400 || id > 611) return SendClientMessage(playerid, -1, "Modelos somente entre 400 e 611!");
new criado = GetPVarInt(playerid, "Cris");
if(criado != 0) return DestroyVehicle(pvar);
new Float: P[3], Float: A;
GetPlayerPos(playerid, P[0], P[1], P[2]);
GetPlayerFacingAngle(playerid, A);
new carro = CreateVehicle(id, P[0], P[1], P[2], A, -1, -1, -1);
SetPVarInt(playerid, "Cris", carro);
return 1;
}