25.11.2013, 18:25 
	
	
	Код:
	if(dialogid == DIALOG_NOTE2)
	{
	    if(response)
	    {
	                new string[150];
            		if(strlen(inputtext) < 3) return SendClientMessage(playerid,RED,"You must write atleast 3 characters.");
            		PlayerInfo[playerid][pNote1] = strval(inputtext);
					new INI:File = INI_Open(UserPath(playerid));
					INI_WriteString(File, "pNote1",inputtext);
					INI_Close(File);
					format(string,sizeof(string),"[Note] You have successfully wrote %s in your note.",inputtext);
					MSG(playerid,GREEN,string);
		}
	}

