Jump to content

Problema Comanda T/C


Recommended Posts

Salut, am inceput un nou gamemode si nu pot sa scap de o problema

CMD:spawncar(playerid, params[]) {
	new model;
	if(sscanf(params, "i", model)) return SCM(playerid,COLOR_GREY, "Syntax: {FFFFFF}/spawncar <Model>");
	if(model < 400 || model > 611) return SCM(playerid,-1, "Invalid car ID.");
	new Float:X,Float:Y,Float:Z;
	GetPlayerPos(playerid, X,Y,Z);
	new carid = CreateVehicle(model, X,Y,Z, 0.0, random(250), random(250), -1, 0);
	PutPlayerInVehicle(playerid, carid, 0);
	return 1;
}

stiu, este foarte simpla fara niciun admin asa doar sa fac un sistem, bun si am incercat am intors o pe dos pe sus pe jos nimic nu merge

am si alte comenzi care actually merg 
 

EX:
CMD:spawnchange(playerid, params[]) {
	Dialog_Show(playerid, spawnchange, DIALOG_STYLE_LIST, "Choose where you want to spawn", "Clan HQ\nDefault Spawn/Faction HQ\nHouse/Rent", "Cancel", 		"Select");

	return 1;
}
CMD:stats(playerid, params[]) return ShowStats(playerid);

si nu inteleg care e problema spatiu intre ele nu este, chiar nu imi dau seama ma chiunui de juma de ora sa imi dau seama de la ce e

Edited by Divil.Scorpiono
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.