SA-MP Forums Archive
~Question Simple~ - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: ~Question Simple~ (/showthread.php?tid=112588)



~Question Simple~ - waim - 08.12.2009

Код:
public OnGameModeInit()
{
	// Don't use these lines if it's a filterscript
	SetGameModeText("Blank Script");
	AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
	return 1;
}
what's role of // after Sentences and it's that's line imporant !


Re: ~Question Simple~ - [XST]O_x - 08.12.2009

You mean like:
pawn Код:
//this?
// Means a comment,it's something that's not important to the script,and it doesn't effect on the code.
But you can write notes and things that helps you to remember what which line means etc.