[HELP] MySQL saving house
#1

Hi all, I made a little function for making house but my house doesn't save (MySQL) here is the whole function
pawn Код:
stock CreateDynamicHouse(Float: EnterX, Float: EnterY, Float: EnterZ, Interior, Float: InteriorX, Float: InteriorY, Float: InteriorZ, Price, VirtualWorld, HouseID)
{
    for(new i = 0; i != MAX_PLAYERS; ++i)
    {
        if (IsPlayerConnected(i))
        {
            EnterX = HouseInfo[i][hEnterX];
            EnterY = HouseInfo[i][hEnterY];
            EnterZ = HouseInfo[i][hEnterZ];
            InteriorX = HouseInfo[i][hInteriorX];
            InteriorY = HouseInfo[i][hInteriorY];
            InteriorZ = HouseInfo[i][hInteriorZ];
            Interior = HouseInfo[i][hInterior];
            VirtualWorld = HouseInfo[i][hVirtualWorld];
            Price = HouseInfo[i][hPrice];
            HouseID = HouseInfo[i][hHouseID];
        }
    }
    House += 1;
    House_Price[House] = Price;
    Buy_House[House] = CreatePickup(1239, 2, EnterX, EnterY, EnterZ, -1);
    hstring[126] += 1;
    format(hstring, sizeof(hstring), "For sale!\nPrice: %d\nType /buyhouse to buy house!", Price);
    Label += 1;
    LabelMake[Label] = Create3DTextLabel(hstring, 0x21DD00FF, EnterX, EnterY, EnterZ, 40.0, 0);
    for(new i = 0; i != MAX_PLAYERS; ++i)
    {
        if (IsPlayerConnected(i))
        {
            mysql_real_escape_string(GetName(i), hescpname);
            format(HQuery, sizeof(HQuery), "INSERT INTO `house` (`User`, `EnterX`, `EnterY`, `EnterZ`, `Interior`, `InteriorX`, `InteriorY`, `InteriorZ`, `Price`, `VirtualWorld`, `HouseID`) VALUES ('%s', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d')", hescpname, HouseInfo[i][hEnterX], HouseInfo[i][hEnterY], HouseInfo[i][hEnterZ], HouseInfo[i][hInteriorX], HouseInfo[i][hInteriorY], HouseInfo[i][hInteriorZ], HouseInfo[i][hVirtualWorld], HouseInfo[i][hPrice], HouseInfo[i][hHouseID]);
            mysql_query(HQuery);
        }
    }
    return 1;
}
Everything works just saving not (It's not finished but.. huh)

Thanks a lot!
Reply


Messages In This Thread
[HELP] MySQL saving house - by System64 - 08.09.2011, 12:27
Re: [HELP] MySQL saving house - by THE_KNOWN - 08.09.2011, 13:30
Re: [HELP] MySQL saving house - by System64 - 08.09.2011, 13:33
Re: [HELP] MySQL saving house - by Vince - 08.09.2011, 13:35
Re: [HELP] MySQL saving house - by Farsek - 08.09.2011, 13:36
Re: [HELP] MySQL saving house - by System64 - 08.09.2011, 13:53
Re: [HELP] MySQL saving house - by System64 - 08.09.2011, 15:51
Re: [HELP] MySQL saving house - by System64 - 08.09.2011, 18:20
Re: [HELP] MySQL saving house - by System64 - 09.09.2011, 09:33
Re: [HELP] MySQL saving house - by MadeMan - 09.09.2011, 09:46

Forum Jump:


Users browsing this thread: 1 Guest(s)