10.03.2012, 09:54
thanks now my problem is this
pawn Код:
CMD:mysignature(playerid, params[])
{
new string[678];
format(file, sizeof(file), "RSignature/Users/%s.ini", pname(playerid));
SignInfo[playerid][Signature] = dini_Int(file, "Signature"); //the problem is here, dini_Int doesn't support dini_Set what should i do now? if i do dini_IntSet the word i wrote in /createsignature will be a value
if(!dini_Exists(file)) return SendClientMessage(playerid, -1, "You don't create signature yet!");
format(string, sizeof(string), "%s\n", SignInfo[playerid][Signature]);
ShowPlayerDialog(playerid, DIALOG_MYSIGN, DIALOG_STYLE_MSGBOX, "My Signautre", string, "OK", "");
return 1;
}

