How to make a players id(name) appear here
#7

Something like this?
Код:
CMD:suggest(playerid, params[])
{
	if(isnull(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_WHITE, "[Usage]: /suggest [text]");
	if(strlen(params) > 128) return SendClientMessage(playerid, COLOR_GREY, "Maximum characters limit is 128.");
	new File: file = fopen("bugs.cfg", io_append), rpnstring[128];
	format(rpnstring, sizeof(rpnstring), "[%s] %s\r\n", RPN[playerid], params);
	fwrite(file, rpnstring);
	fclose(file);
	SendClientMessage(playerid, COLOR_LIGHTBLUE, "Your suggestions has been saved, Developers will check it once possible.");
	if(PlayerInfo[playerid][pDev] >= 1)
	{
		SendClientMessage(playerid, COLOR_YELLOW, "%s has sent a suggestion, Please inform the developers");
	}
	return 1;
}
Or something more major?
Reply


Messages In This Thread
How to make a players id(name) appear here - by D3vin - 16.10.2013, 01:41
Re: How to make a players id(name) appear here - by Ayumi - 16.10.2013, 01:51
Re: How to make a players id(name) appear here - by D3vin - 16.10.2013, 02:02
Re: How to make a players id(name) appear here - by Pottus - 16.10.2013, 02:13
Re: How to make a players id(name) appear here - by D3vin - 16.10.2013, 02:17
Re: How to make a players id(name) appear here - by Pottus - 16.10.2013, 02:20
Re: How to make a players id(name) appear here - by D3vin - 16.10.2013, 02:24
Re: How to make a players id(name) appear here - by Pottus - 16.10.2013, 02:26

Forum Jump:


Users browsing this thread: 1 Guest(s)