Jump to content
  • 0

pomoc Triviálna chyba


Danny

Dotaz

Zdravím, dostávam následujúci error:

error 010: invalid function or declaration

 

riadky:

public OnPlayerCommandText(playerid, cmdtext[])
{
        dcmd(help, 4, cmdtext);
	return 1;
	}
	return 0;
}

predom Ďakujem za pomoc

Edited by Danny
Link to comment
Share on other sites

3 odpovědí na tuto otázku

Recommended Posts

  • 0

Proč tam máš 2x } a 2 returny????

Veď toto je celok publicu OnPlayerCommandText

public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/mycommand", cmdtext, true, 10) == 0)
	{
		// Do something here
		return 1;
	}
	return 0;
}

len som tam vložil definíciu dcmd

Link to comment
Share on other sites

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