Incorrect Saving with Dini
#1

pawn Код:
if(dialogid == 2) {
        if(!response) {
            SendClientMessage(playerid, COLOR_RED, "You must register.");
            Kick(playerid);
        }
        if(strval(inputtext)<101 && strval(inputtext)>17) {
            new age = strval(inputtext);
            pInfo[playerid][Age] = age;
            format(string, sizeof(string), "Immigration Officer: Ok, so you are %d years old.", age);
            SendClientMessage(playerid, COLOR_WHITE, string);
            dini_IntSet(fileLoc, "Age", age);
            pInfo[playerid][Step] = 1;
            registerPlayer(playerid);
        } else {
            SendClientMessage(playerid, COLOR_WHITE, "Immigration Officer: ((You must be between the ages of 18-100 to play.))");
            ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Age", "Enter your age in the box below:", "Enter", "Cancel");
        }
    } else if(dialogid == 4) {
        new string2[128];
        if(!response) {
            SendClientMessage(playerid, COLOR_RED, "You must register.");
            Kick(playerid);
        }
        strcat(string2, inputtext, sizeof(string2));
        format(string, sizeof(string), "Immigration Officer: %s accent, it sounds like.", inputtext);
        dini_Set(fileLoc, "Accent", inputtext);
        strcat(pInfo[playerid][Accent], inputtext);
        pInfo[playerid][Registered] = 1;
        dini_IntSet(fileLoc, "Registered", 1);
        HasJustRegistered[playerid] = true;
        SpawnPlayer(playerid);
    }
Now, I enter that I have an American accent and am 19 years old, but my stats just say "0 year old male, Accent", when they should say "19 year old male, American Accent"
Reply


Messages In This Thread
Incorrect Saving with Dini - by jameskmonger - 27.12.2010, 11:53
Re: Incorrect Saving with Dini - by Joe Staff - 27.12.2010, 12:54
Re: Incorrect Saving with Dini - by jameskmonger - 27.12.2010, 12:59
Re: Incorrect Saving with Dini - by Joe Staff - 27.12.2010, 13:16
Re: Incorrect Saving with Dini - by jameskmonger - 27.12.2010, 15:10
Re: Incorrect Saving with Dini - by Souvlaki - 27.12.2010, 21:50
Re: Incorrect Saving with Dini - by jameskmonger - 28.12.2010, 08:45
Re: Incorrect Saving with Dini - by jameskmonger - 28.12.2010, 09:03
Re: Incorrect Saving with Dini - by jameskmonger - 28.12.2010, 20:28

Forum Jump:


Users browsing this thread: 4 Guest(s)