SA-MP Forums Archive
їQuй tiene de malo el comando? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: їQuй tiene de malo el comando? (/showthread.php?tid=609474)



їQuй tiene de malo el comando? - Fagrinht - 12.06.2016

Cuando pongo /dejar renta me dice El parбmetro colocado no corresponde a ninguna opciуn de este comando. їQuй hice mal con el comando?

Код:
CMD:dejar(playerid, params[])
{
	if(!sscanf(params, "s[6]", params[0])) return SendClientMessageEx(playerid, COLOR_RED, "* El parбmetro colocado no corresponde a ninguna opciуn de este comando.");
	{
		if(strcmp(params[0],"renta",true) == 0)
		{
			if(HireKey[playerid] == 9999)return SendClientMessageEx(playerid, COLOR_RED, "* No tienes ningъn vehнculo aquilado.");
			SetVehicleToRespawn(HireKey[playerid]);
			SetVehicleParamsEx(HireKey[playerid], 0, 0, 0, 0, 0, 0, 0);
			HireKey[playerid] = 9999;
		}
		else SendClientMessageEx(playerid, COLOR_PIEL, "* Debe indicar parбmetros para el comando(/dejar), ejemplo: /dejar renta.");
	}
	return 1;
}



Respuesta: їQuй tiene de malo el comando? - Ghost112397 - 12.06.2016

Код:
if(sscanf(params, "s[6]", params[0])) return SendClientMessageEx(playerid, COLOR_RED, "* El parбmetro colocado no corresponde a ninguna opciуn de este comando.");



Re: їQuй tiene de malo el comando? - F1N4L - 12.06.2016

Код:
CMD:dejar(playerid, params[])
{
	if(isnull(params)) return SendClientMessageEx(playerid, COLOR_RED, "* El parбmetro colocado no corresponde a ninguna opciуn de este comando.");
	
	if(strcmp(params,"renta", true) == 0)
	{
		if(HireKey[playerid] == 9999) return SendClientMessageEx(playerid, COLOR_RED, "* No tienes ningъn vehнculo aquilado.");
		
		SetVehicleToRespawn(HireKey[playerid]);
		SetVehicleParamsEx(HireKey[playerid], 0, 0, 0, 0, 0, 0, 0);
		HireKey[playerid] = 9999;
	}
	else SendClientMessageEx(playerid, COLOR_PIEL, "* Debe indicar parбmetros para el comando(/dejar), ejemplo: /dejar renta.");
	
	return 1;
}



Respuesta: їQuй tiene de malo el comando? - Ghost112397 - 12.06.2016

A mi para casos asн me gusta utilizar mбs y_stringhash me resulta mбs cуmodo, te lo recomiendo.


Respuesta: Re: їQuй tiene de malo el comando? - Fagrinht - 12.06.2016

Quote:
Originally Posted by F1N4L
Посмотреть сообщение
Код:
CMD:dejar(playerid, params[])
{
	if(isnull(params)) return SendClientMessageEx(playerid, COLOR_RED, "* El parбmetro colocado no corresponde a ninguna opciуn de este comando.");
	
	if(strcmp(params,"renta", true) == 0)
	{
		if(HireKey[playerid] == 9999) return SendClientMessageEx(playerid, COLOR_RED, "* No tienes ningъn vehнculo aquilado.");
		
		SetVehicleToRespawn(HireKey[playerid]);
		SetVehicleParamsEx(HireKey[playerid], 0, 0, 0, 0, 0, 0, 0);
		HireKey[playerid] = 9999;
	}
	else SendClientMessageEx(playerid, COLOR_PIEL, "* Debe indicar parбmetros para el comando(/dejar), ejemplo: /dejar renta.");
	
	return 1;
}
Gracias +rep


Respuesta: їQuй tiene de malo el comando? - Goncho28 - 13.06.2016

Fнjate que dice "aquilado" en vez de "alquilado".

PD: Mira Skype.