Sob- 2 Report post Posted February 24, 2017 (edited) im having some issues were i cannot use my virtual garage near my plot pole but i can when im not anyone have any ides? i have installed it correctly i found out that its looking for you territory id and its not defined in the player database but in vehicle when the server restarts i lose i cant acess my garage Edited February 24, 2017 by Sob- Share this post Link to post Share on other sites
tinboye 219 Report post Posted February 25, 2017 (edited) the exad virtual garage i believe is different than the existing virtual garage script. did you run the sql query ALTER TABLE `vehicle` ADD `territory_id` INT(11) UNSIGNED NULL DEFAULT NULL; ALTER TABLE `vehicle` ADD CONSTRAINT `vehicle_ibfk_2` FOREIGN KEY (`territory_id`) REFERENCES `territory`(`id`) ON DELETE CASCADE ON UPDATE RESTRICT; and updated exile.ini Spoiler ;1. Find following sections and replace the commented lines; [loadVehicleIdPage] ;SQL1_1 = SELECT id FROM vehicle LIMIT ?,? SQL1_1 = SELECT id FROM vehicle WHERE deleted_at IS NULL AND territory_id IS NULL LIMIT ?,? Number Of Inputs = 2 SQL1_INPUTS = 1,2 OUTPUT = 1 ; Removes vehicles that were not used within ? days [deleteOldVehicles] ;SQL1_1 = DELETE FROM vehicle WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY) SQL1_1 = DELETE FROM vehicle WHERE territory_id IS NULL AND deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY) Number Of Inputs = 1 SQL1_INPUTS = 1 ; Marks for deletion vehicles that were not used within ? days [markDeleteOldVehicles] ; SQL1_1 = UPDATE vehicle SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) SQL1_1 = UPDATE vehicle SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL Number Of Inputs = 1 SQL1_INPUTS = 1 ;2. Add all below in the end of the file. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Virtual Garage related queries | ADDED BY [ExAd]Jan ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; [loadTerritoryVehicles] SQL1_1 = SELECT id, class FROM vehicle WHERE territory_id = ? Number Of Inputs = 1 SQL1_INPUTS = 1 OUTPUT = 1,2-STRING [loadVehFromVG] SQL1_1 = UPDATE vehicle SET territory_id = NULL WHERE id = ? Number Of Inputs = 1 SQL1_INPUTS = 1 [loadVehToVG] SQL1_1 = UPDATE vehicle SET territory_id = ? WHERE id = ? Number Of Inputs = 2 SQL1_INPUTS = 1,2 Edited February 25, 2017 by tinboye Share this post Link to post Share on other sites
Sob- 2 Report post Posted February 25, 2017 (edited) Yes i have i realised i lost all rights to my base i cant access the base laptop or anything i use infistar to Edited February 25, 2017 by Sob- Share this post Link to post Share on other sites
Sob- 2 Report post Posted February 25, 2017 Anyone have any ideas Share this post Link to post Share on other sites
tinboye 219 Report post Posted February 26, 2017 go into your infistar config, try gary mode true, which should be at the bottom of the file, then see if it works, if it does, then something is blocking it in infistar. Share this post Link to post Share on other sites
Sob- 2 Report post Posted February 26, 2017 ok will do ill try now Share this post Link to post Share on other sites
Sob- 2 Report post Posted February 26, 2017 i cannot find gary mode lol Share this post Link to post Share on other sites
Sob- 2 Report post Posted February 26, 2017 (edited) https://gyazo.com/cacee952aa7c1efc64fbc7f6a6a9a034 maybe something to do with virtual garage here? Edited February 26, 2017 by Sob- Share this post Link to post Share on other sites
tinboye 219 Report post Posted February 26, 2017 depbo your a3_infiSTAR_Exile.pbo edit EXILE_AHAT_CONFIG.hpp and my bad, its called Kyle mode lol Spoiler /* ***DANGER***DANGER***DANGER***DANGER***DANGER***DANGER***DANGER***DANGER***DANGER***DANGER */ /* THE KYLE MODE - by enabling it (setting it to "true"), you disable 99% of the AntiHack features. (DEFAULT VALUE: "false"). This is only for those, that want to use the Admin Menu only! */ KYLE_MODE = "false"; Share this post Link to post Share on other sites