Hallo,
leider buggen bei uns immer die Häuser weg, sobald man im Haus spawnt. Wir wissen nicht was wir da gegen tun sollen. Wir sind in der Altis Life 4.4 Version.
extDB2 Log ist fehlerfrei.
rtp sagt zum thema housing auch nichts.
Sind die Prozeduren richtig?
SQL
CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteDeadVehicles` () BEGIN
DELETE FROM `vehicles` WHERE `alive` = 0;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldContainers` () BEGIN
DELETE FROM `containers` WHERE `owned` = 0;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldGangs` () BEGIN
DELETE FROM `gangs` WHERE `active` = 0;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldHouses` () BEGIN
DELETE FROM `houses` WHERE `owned` = 0;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `resetLifeVehicles` () BEGIN
UPDATE `vehicles` SET `active`= 0;
END$$
DELIMITER ;
Alles anzeigen
Außerdem hier noch container & häuser
SQL
CREATE TABLE `containers` (
`id` int(11) NOT NULL,
`pid` varchar(32) NOT NULL,
`classname` varchar(32) NOT NULL,
`pos` varchar(64) DEFAULT NULL,
`inventory` varchar(500) NOT NULL,
`gear` text NOT NULL,
`dir` varchar(64) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT '0',
`owned` tinyint(4) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- hier für häuser
CREATE TABLE `houses` (
`id` int(11) NOT NULL,
`pid` varchar(32) NOT NULL,
`pos` varchar(64) DEFAULT NULL,
`owned` tinyint(4) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Alles anzeigen