09.07.2013, 19:47
I am having a tuff time understanding Y_ini and I need some help I have the saveing down but I am just confused about the reading here are test thing I have been working on to help me better understand Y_ini
pawn Код:
CMD:readdata(playerid, params[])
{
new name[64],string[128],data[64];
if(sscanf(params,"s["#64"]",name))
{
return SendClientMessage(playerid, RED, "SYNTAX /readdata [name]");
}
//load data
format(string,sizeof(string),"%s = %s",name,data);
SendClientMessage(playerid, RED, string);
return 1;
}