SA-MP Forums Archive
need help with y_ini - 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)
+--- Thread: need help with y_ini (/showthread.php?tid=449671)



need help with y_ini - horsemeat - 09.07.2013

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;
}



Re: need help with y_ini - horsemeat - 11.07.2013

come on any one


Re: need help with y_ini - horsemeat - 11.07.2013

Quote:
Originally Posted by ******
Посмотреть сообщение
Have you read the tutorials?
yes I have but I still don't understand. I will try again.