13.09.2009, 01:04
Код:
if(strcmp(cmdtext,"/coords",true) == 0)
{
new strlol[128], Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
format(strlol, sizeof(strlol), "Co-ordinates: %f, %f, %f", X, Y, Z);
SendClientMessage(playerid, 0xFF00FFFF, strlol);
return 1;
For the others 3 search around for identation

