MySQL won't save player vehicles?
#5

Quote:
Originally Posted by Unte99
Посмотреть сообщение
So neither CreateCharacterVehicle nor SQL_SaveCharacterVehicle doesn't work? mysql_log.txt doesn't show anything at all? If so, debug the code by putting print lines in your code and see how far it goes.
When I create the first vehicle:
Quote:

INSERT INTO `vehicle` (`ID`, `OwnerName`, `Model`, `Plate`, `Colour1`, `Colour2`, `VW`, `Int`, `Health`, `Fuel`, `posX`, `posY`, `posZ`, `posA`) VALUES (1, 'Daniel_Joyce', 521, 'Non-R', 1, 1, 0, 0, 1000.00, 100.00, 0.00, 0.00, 0.00, 0.00)

The second vehicle:
Quote:

INSERT INTO `vehicle` (`ID`, `OwnerName`, `Model`, `Plate`, `Colour1`, `Colour2`, `VW`, `Int`, `Health`, `Fuel`, `posX`, `posY`, `posZ`, `posA`) VALUES (2, 'Daniel_Joyce', 521, 'Non-R', 1, 2, 0, 0, 1000.00, 100.00, 1390.91, -2379.21, 20.01, 69.96)

When I save all of the vehicles

The first vehicle :

Quote:

UPDATE `vehicle` SET `ID` = 1, `Plate` = 'Non-R', `Lock` = 0, `Colour1` = 1, `Colour2` = 1, `VW` = 0, `Int` = 0, `Health` = 1000.00, `Fuel` = 100.00, `posX` = 0.00, `posY` = 0.00, `posZ` = 0.00, `posA` = 0.00 WHERE `OwnerName` = 'Daniel_Joyce' AND `ID` = 1

The second one:
Quote:

UPDATE `vehicle` SET `ID` = 2, `Plate` = 'Non-R', `Lock` = 0, `Colour1` = 1, `Colour2` = 2, `VW` = 0, `Int` = 0, `Health` = 1000.00, `Fuel` = 100.00, `posX` = 1391.02, `posY` = -2378.81, `posZ` = 19.60, `posA` = 70.32 WHERE `OwnerName` = 'Daniel_Joyce' AND `ID` = 2

Reply


Messages In This Thread
MySQL won't save player vehicles? - by DuyDang2412 - 11.03.2017, 09:17
Re: MySQL won't save player vehicles? - by Unte99 - 11.03.2017, 09:28
Re: MySQL won't save player vehicles? - by DuyDang2412 - 11.03.2017, 09:32
Re: MySQL won't save player vehicles? - by Unte99 - 11.03.2017, 09:51
Re: MySQL won't save player vehicles? - by DuyDang2412 - 11.03.2017, 10:09
Re: MySQL won't save player vehicles? - by DuyDang2412 - 11.03.2017, 10:11
Re: MySQL won't save player vehicles? - by DuyDang2412 - 11.03.2017, 13:02
Re: MySQL won't save player vehicles? - by DuyDang2412 - 11.03.2017, 13:09
Re: MySQL won't save player vehicles? - by DuyDang2412 - 12.03.2017, 01:42

Forum Jump:


Users browsing this thread: 1 Guest(s)