Search the Community
Showing results for 'Ferrari 458 29 141'.
-
Why cars: 29 Ferrari 458 Italia 141 Ferrari 458 Italia are the same?
-
Are (141) Ferrari 458 Italia & (29) Ferrari 458 Italia the same? And if so, why is there two of them
-
Ferrari 458 Italia has two ID: 29 and 141, why? Thank you!
-
why Ferrari 458 Italia have 2 code (29&141)? sorry I can't delete this
-
Id 141 not used. it is stab for not released car. If you set it it shows as Ferrari 458 Italia but it is not Italia. Italia have id 29.
-
Asphalt 8: Airborne - hack MAX PRO upgrades + elite tuning - search group - GameGuardian
Enyby commented on Enyby's gallery image in Video Tutorials
-
Asphalt 8: Airborne - hack MAX PRO upgrades + elite tuning - search group - GameGuardian
Kimastar commented on Enyby's gallery image in Video Tutorials
Hi!!! I have found an error on your car ID txt.... like u can see with your eye there is 2 ID for one car!!!! at number 29 there is Ferrari 458 Italia but also at number 141 there is Ferrari 458 Italia!!! so now im scared because i went online and i want to know What number does ID 141 correspond to? because i dont think so there is 2 ID for one car....pls help ASAP >,< -
on the list there is 170 car Merc AMG-C 63 Couple id is: 156 BMW Hommage id is: 144 Id 141 is for: Ferrari 458 Italia I think its clear and I like it just like that
-
Hello Enyby ... my old version my 218 car i have update latest version v3.6.0 get One car hidden missing my total car 217 i do not know were is my car _______________________________________________ added 3 minutes later Enyby ... I have one question in this v3.6.0 total car v225 Ferrari 458 Italia have 2 code (29&141)? Same car code.
-
Because Gameloft not released car with id 141. It has redirect to id 29.
-
141 is not exists car. Not released. Model pointed to data of 29 as temp stub.
-
@anu7donco Because Gameloft not release car with id 141. It pointed to same model as 29.
-
Version 1.0.0
229 downloads
Phantom Combat Venue Lua Script Template v0.0.0 - No Recoil Camera Hack and Utility Functions Introduction: Hello, GameGuardian community! Today, I'm excited to share the Phantom Combat Venue Lua Script Template v0.0.0, an open-source script under the MIT license. This template serves as a foundation for patching memory addresses in the libil2cpp library for any game. I used "Sniper Warrior: PvP Sniper" as an example. In this post, we'll focus on the No Recoil Camera Hack as an example, and we'll also explore some utility functions and other Lua code provided in the template. License: This script is open-source under the MIT license, giving you the freedom to modify and adapt it for your needs. Global Variables: - `__ON` and `__OFF`: Emoji indicators for ON and OFF states. - `VISIBILITY_FLAG`: A flag to manage script visibility. Utility Functions: 1. libBase(lib, offsets, vals, type): - Purpose: Finds and modifies memory addresses in the specified library. - Parameters: - `lib`: Library name. - `offsets`: List of offsets. - `vals`: List of values. - `type`: Data type. - Functionality: Iterates through memory ranges, identifies the library, and modifies addresses. function libBase(lib, offsets, vals, type) local rangeList = gg.getRangesList(lib) local addresses = {} for i, v in ipairs(rangeList) do if v.state == "Xa" then for j, offset in ipairs(offsets) do table.insert(addresses, { address = v.start + offset, flags = type, value = vals[j] .. "h" }) end break end end if #addresses == 0 then print("Not found lib") else gg.setValues(addresses) end end 2. convertToHexString(number, digits): - Purpose: Converts a number to a hexadecimal string with a specified number of digits. - Parameters: - `number`: Number to convert. - `digits`: Number of hexadecimal digits. - Functionality: Applies a bitmask and formats the number as a hexadecimal string. function convertToHexString(number, digits) local mask = (1 << (digits * 4)) - 1 return string.format("%X", number & mask) end 3. getHexValueByOffset(offset): - Purpose: Retrieves the hexadecimal value at a specific offset in libil2cpp. - Parameters: - `offset`: Offset to read. - Functionality: Uses `gg.getValues` to obtain the hexadecimal value at the specified offset. function getHexValueByOffset(offset) local responseVal = gg.getValues({{ address = gg.getRangesList("libil2cpp.so")[1].start + offset, flags = gg.TYPE_DWORD }}) return convertToHexString(responseVal[1].value, 8) end Main Function: - Main(): - Purpose: Entry point for script execution. - Functionality: Displays a menu with options, including the No Recoil Camera, and handles user input. function Main() VISIBILITY_FLAG = -1 gg.setVisible(false) menu = gg.choice({ no_recoil_camera_state .. "No Recoil Camera.", " EXIT " }, nil, "Sniper Warrior v 0.0.3 b19 - MOD") if menu == nil then gg.toast(" MINIMIZED ") gg.setVisible(false) elseif menu == 1 then no_recoil_camera_fn() else os.exit() end end No Recoil Camera: 1. Initialization: - `no_recoil_camera_offset`: Offset for the No Recoil Camera hack. - `no_recoil_camera_active_hack_hex_code`: Hex code for the active state. no_recoil_camera_offset = 0x115DA58 no_recoil_camera_active_hack_hex_code = "D65F03C0" -- "~A8 RET" 2. State Check: - Checks the current state of the No Recoil Camera and sets the corresponding state indicator (`__ON` or `__OFF`). if getHexValueByOffset(no_recoil_camera_offset) == no_recoil_camera_active_hack_hex_code then no_recoil_camera_state = __ON else no_recoil_camera_state = __OFF end 3. Function: no_recoil_camera_fn(): - Purpose: Activates or deactivates the No Recoil Camera. - Functionality: Utilizes `libBase` to modify the necessary memory addresses based on the current state. function no_recoil_camera_fn() local offsets = {0x115DA58, 0x115DA5C, 0x115DA60, 0x115DA64, 0x115DA68, 0x115DA6C, 0x115DA70} local values_on = {no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code} local values_off = {"6DBD23E9", "F9000BF3", "A9027BFD", "910083FD", "4EA01C08", "AA0003F3", "9400000E"} if no_recoil_camera_state == __OFF then libBase("libil2cpp.so", offsets, values_on, gg.TYPE_DWORD) gg.toast("No Recoil Camera activated") no_recoil_camera_state = __ON elseif no_recoil_camera_state == __ON then libBase("libil2cpp.so", offsets, values_off, gg.TYPE_DWORD) gg.toast("No Recoil Camera deactivated") no_recoil_camera_state = __OFF end end Entrypoint: - While Loop: - Purpose: Keeps the script running in the background. - Functionality: Checks for script visibility and calls the `Main()` function accordingly. while true do if gg.isVisible(true) then VISIBILITY_FLAG = 1 gg.setVisible(false) end if VISIBILITY_FLAG == 1 then Main() end end Happy scripting! Your friend, Phantom Combat Venue. -
View File Lua script template v0.0.0: Patching memory addresses in the libil2cpp library | by Phantom Combat Venue | example game :: Sniper Warrior: PvP Sniper v0.0.3 build 19 Last updated on Aug 29, 2023 Phantom Combat Venue Lua Script Template v0.0.0 - No Recoil Camera Hack and Utility Functions Introduction: Hello, GameGuardian community! Today, I'm excited to share the Phantom Combat Venue Lua Script Template v0.0.0, an open-source script under the MIT license. This template serves as a foundation for patching memory addresses in the libil2cpp library for any game. I used "Sniper Warrior: PvP Sniper" as an example. In this post, we'll focus on the No Recoil Camera Hack as an example, and we'll also explore some utility functions and other Lua code provided in the template. License: This script is open-source under the MIT license, giving you the freedom to modify and adapt it for your needs. Global Variables: - `__ON` and `__OFF`: Emoji indicators for ON and OFF states. - `VISIBILITY_FLAG`: A flag to manage script visibility. Utility Functions: 1. libBase(lib, offsets, vals, type): - Purpose: Finds and modifies memory addresses in the specified library. - Parameters: - `lib`: Library name. - `offsets`: List of offsets. - `vals`: List of values. - `type`: Data type. - Functionality: Iterates through memory ranges, identifies the library, and modifies addresses. function libBase(lib, offsets, vals, type) local rangeList = gg.getRangesList(lib) local addresses = {} for i, v in ipairs(rangeList) do if v.state == "Xa" then for j, offset in ipairs(offsets) do table.insert(addresses, { address = v.start + offset, flags = type, value = vals[j] .. "h" }) end break end end if #addresses == 0 then print("Not found lib") else gg.setValues(addresses) end end 2. convertToHexString(number, digits): - Purpose: Converts a number to a hexadecimal string with a specified number of digits. - Parameters: - `number`: Number to convert. - `digits`: Number of hexadecimal digits. - Functionality: Applies a bitmask and formats the number as a hexadecimal string. function convertToHexString(number, digits) local mask = (1 << (digits * 4)) - 1 return string.format("%X", number & mask) end 3. getHexValueByOffset(offset): - Purpose: Retrieves the hexadecimal value at a specific offset in libil2cpp. - Parameters: - `offset`: Offset to read. - Functionality: Uses `gg.getValues` to obtain the hexadecimal value at the specified offset. function getHexValueByOffset(offset) local responseVal = gg.getValues({{ address = gg.getRangesList("libil2cpp.so")[1].start + offset, flags = gg.TYPE_DWORD }}) return convertToHexString(responseVal[1].value, 8) end Main Function: - Main(): - Purpose: Entry point for script execution. - Functionality: Displays a menu with options, including the No Recoil Camera, and handles user input. function Main() VISIBILITY_FLAG = -1 gg.setVisible(false) menu = gg.choice({ no_recoil_camera_state .. "No Recoil Camera.", " EXIT " }, nil, "Sniper Warrior v 0.0.3 b19 - MOD") if menu == nil then gg.toast(" MINIMIZED ") gg.setVisible(false) elseif menu == 1 then no_recoil_camera_fn() else os.exit() end end No Recoil Camera: 1. Initialization: - `no_recoil_camera_offset`: Offset for the No Recoil Camera hack. - `no_recoil_camera_active_hack_hex_code`: Hex code for the active state. no_recoil_camera_offset = 0x115DA58 no_recoil_camera_active_hack_hex_code = "D65F03C0" -- "~A8 RET" 2. State Check: - Checks the current state of the No Recoil Camera and sets the corresponding state indicator (`__ON` or `__OFF`). if getHexValueByOffset(no_recoil_camera_offset) == no_recoil_camera_active_hack_hex_code then no_recoil_camera_state = __ON else no_recoil_camera_state = __OFF end 3. Function: no_recoil_camera_fn(): - Purpose: Activates or deactivates the No Recoil Camera. - Functionality: Utilizes `libBase` to modify the necessary memory addresses based on the current state. function no_recoil_camera_fn() local offsets = {0x115DA58, 0x115DA5C, 0x115DA60, 0x115DA64, 0x115DA68, 0x115DA6C, 0x115DA70} local values_on = {no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code, no_recoil_camera_active_hack_hex_code} local values_off = {"6DBD23E9", "F9000BF3", "A9027BFD", "910083FD", "4EA01C08", "AA0003F3", "9400000E"} if no_recoil_camera_state == __OFF then libBase("libil2cpp.so", offsets, values_on, gg.TYPE_DWORD) gg.toast("No Recoil Camera activated") no_recoil_camera_state = __ON elseif no_recoil_camera_state == __ON then libBase("libil2cpp.so", offsets, values_off, gg.TYPE_DWORD) gg.toast("No Recoil Camera deactivated") no_recoil_camera_state = __OFF end end Entrypoint: - While Loop: - Purpose: Keeps the script running in the background. - Functionality: Checks for script visibility and calls the `Main()` function accordingly. while true do if gg.isVisible(true) then VISIBILITY_FLAG = 1 gg.setVisible(false) end if VISIBILITY_FLAG == 1 then Main() end end Happy scripting! Your friend, Phantom Combat Venue. Submitter Phantom_Combat_Venue Submitted 12/01/2023 Category Templates
-
Car id Ferrari F60 and Zeus please
-
I can get maybe ?? 1 Dodge Dart GT 2 Audi R8 e-tron 3 Tesla Model S 4 Cadillac ATS 5 Cadillac XTS 6 Scion FR-S 7 Mini Cooper S Roadster 8 Alfa Romeo MiTo GTA 9 Audi S4 10 Nissan 370Z 11 Audi RS 3 Sportback 12 Mercedes-Benz SLS AMG Electric Drive 13 Audi TTS Coupe 14 Chevrolet Camaro GS 15 Ford Focus RS 16 Lamborghini Urus 17 Infiniti FX50 18 Lotus Exige S Coupe 19 Audi RS 4 Avant 20 Alfa Romeo 8C Competizione 21 DS Survolt 22 Aston Martin DB9 Coupe 23 Lamborghini Countach 25th Anniversary 24 Maserati GranTurismo Sport 25 Bentley Continental GT V8 26 Aston Martin V12 Zagato 27 Aston Martin V12 Vantage 28 Nissan GT-R (R35) 29 Ferrari 458 Italia 30 Ford Shelby GT500 31 Cadillac CTS-V Coupe Race Car 32 Mercedes-Benz SL 65 AMG Black Series 33 Dodge Viper SRT10 ACR-X 34 Chevrolet Corvette C7 35 McLaren 12C Spider 36 Pagani Zonda R 37 Ferrari F12berlinetta 38 Lamborghini Sesto Elemento 39 Marussia B2 40 RUF RT 12 S 41 Lamborghini Veneno 42 GTA Spano 43 RUF CTR 3 44 Ferrari FXX Evoluzione 45 Bugatti 16.4 Grand Sport Vitesse 46 Mercedes-Benz Silver Lightning 47 Koenigsegg Agera R 48 Ferrari 599XX 49 Lamborghini Gallardo LP 560-4 2013 50 Renault CLIO R.S. 200 EDC 51 BMW M6 52 Ferrari F430 53 Lotus Evora Enduro GT 54 Ferrari LaFerrari 55 W Motors Lykan HyperSport 56 Pagani Huayra 57 McLaren P1 58 SSC Tuatara 59 Ferrari Testarossa 60 SRT 2013 Dodge Challenger SRT8 61 Ford F-150 62 Hennessey Venom GT 63 Chrysler ME412 64 Ferrari FF 65 Ford 2006 GT 66 Mercedes-Benz SLS AMG GT Coupé Final Edition 67 2015 Ford Mustang 68 Jaguar C-X75 69 Mercedes-Benz CLK GTR AMG 70 Mercedes-Benz Biome 71 Peugeot Onyx 72 Jaguar F-Type R 73 Savage Rivale Roadyacht GTS 74 Mazda Furai 75 Nissan GT-R NISMO 76 SSC Ultimate Aero XT 77 Rimac Consept One 78 Savage Rivale GTR 79 Maserati MC12 80 Volkswagen W12 81 Koenigsegg One:1 82 9FF GT9 VMAX 83 Tramontana XTR 84 Felino cB7 85 Spada Codatronca 86 Arrinera Hussarya 87 Lucra L148 88 Acura NSX 2005 89 Renault DeZir 90 Ferrari F40 91 Ferrari Enzo Ferrari 92 Ferrari 612 Scaglietti 93 Ferrari F50 94 Ferrari 308 GTS 95 Ferrari 330 P4 96 Volkswagen Golf Design Vision GTI 97 BMW M3 Sedan 98 Audi R8 LMS Ultra 99 BMW M1 100 HTT Plethore LC 750 101 Lamborghini Aventador LP 700-4 102 Geely GC9 103 ONUK Sazan LM 104 Mitsubishi Lancer Evolution X 105 Chevrolet SS 106 AC 378 GT Z 107 Kepler Motion 108 McLaren 675LT 109 Bentley EXP10 Speed 6 110 McLaren P1 GTR 111 Camaro Z/28 112 Datsun 280Z 113 Shelby Cobra 427 114 SUBARU IMPREZA WRX STI 115 McLaren 570S 116 Lamborghini Huracan 117 Cadillac 16 Consept 118 McLaren F1 XP-5 119 DS 3 Racing 120 Honda S2000 121 Range Rover Evoque Coupe HSE Dynamic 122 Mercedes-Benz SLK 55 AMG 123 Toyota Supra RZ (Mark IV) 124 Nissan Skyline GT-R (R34) 125 Peugeot SR1 126 Lamgorghini Asterion 127 Mazzanti Evantra 128 Mosler GT3 129 Lamborghini Egoista 130 Renault Sport R.S. 01 131 TRION NEMESIS 132 ED Design Torq 133 Alfa Romeo 4C 134 Lamborghini Estoque 135 Rinspeed zaZen 136 Sbarro Alcador 137 Holden Coupe 60 138 Volkswagen Beetle Turbo 139 Lamborghini Miura 140 Cheverolet 2016 Camaro SS 141 Ferrari 458 Italia 142 Mosler Super GT 143 Mazda RX8 144 BMW 3.0 CSL Hommage 145 Honda Integra Type-R 146 Devel Sixteen Prototype 147 Mazda 6 148 Mitsubishi Eclipse 149 nanoFlowcell QUANT FE 150 Fenyr SuperSport 151 nanoFlowcell QUANTINO 152 Weber Faster One 153 Mercedes-AMG GT3 154 Nissan Juke Nismo 155 Jaguar XJ220S TWR Motorsport 156 Mercedes-AMG C 63 Couple 157 Jaguar F-TYPE Project 7 158 Aston Martin One-77 159 Donkervoort D8 GTO 160 Caddilac ATS-V Coupe 161 BXR Blade 162 MB GLC Coupe 163 2015 GTA Spano 164 Falcon F7 165 TVR Sagaris 166 Citroen GT 167 Icona Vulcano 168 Chevrolet Corvette C3 169 AlfaRomeo Giulietta 2016 Veloce 170 Mercedes Benz CLA 45 AMG Racing Series 171 McLaren M14A 172McLaren Mercedes MP4-25 173 Arash AF10 174 Aston Martin Vulcan 175 impala 176 bently 2010 177 Mosler land sark 178 bmw m2 179 Mclaren mp4-8 180 renault alpine 181 Lamborghini aventor sv 182 buick avista consept 183 mercedes 55 special 184 mclaren mp4-31 185 Sbarro sparta 186 Chevrolet Corvette Grand Sport 187 SIN R1 188 Ferrari GTC4Lusso 189 Lotus Evora Sport 410 190 Porshe cayman gt4 191 Porshe 718 192 Porshe 959 193 Porshe 911 194 Porshe 918
-
IDs of all the Halloween stuff I could find : Zombie Brain - 22;6,357,096;7,077,996;7,798,895;6,619,237;6,226,030;7,274,618;6,422,637::29 Witch Hat - 19;6,357,096;7,077,996;7,798,895;6,619,237;6,226,030;6,881,399;6,488,180::29 Pumpkin Helmet - 13;6,357,096;7,077,996;7,798,895;6,619,237;6,226,030;6,357,096;116::29 Broom - 15;6,357,096;7,077,996;7,798,895;6,619,237;6,226,030;7,471,202;7,274,607::29 Halloween Bike Pattern - 21;6,881,378;6,619,243;6,357,104;7,602,292;7,471,205;6,226,030;6,357,096::29 Zombie Collar - 22;7,274,618;6,422,637;6,619,241;7,340,127;7,602,277;7,536,735;7,143,541::29 Here's Candy for you all , Halloween Candy - 15;6,357,096;7,077,996;7,798,895;6,619,237;6,226,030;6,357,091;6,553,710::29 All the codes are shortened to 8 groups so there won't be any problem.
-
BP: Ariel Atom V8 Buick Riviera Vanda Electrics Dendrobium Yamaha YZF-R6 Audi R8 e-tron Special Edition Arrinera Hussarya GT BMW S 1000 RR Mercedes-Benz SLR McLaren 722 Edition Lucra L148 Ferrari Enzo Ferrari
-
PACYBITS FUT 19 INSTANT DIVISION 1 HACK + UNLIMITED DIVISION 1 REWARDS
Badley11 commented on RONO_PLAYS's file in LUA scripts
-
1 Dodge Dart GT 2 Audi R8 e-tron 3 Tesla Model S 4 Cadillac ATS 5 Cadillac XTS 6 Scion FR-S 7 Mini Cooper S Roadster 8 Alfa Romeo MiTo GTA 9 Audi S4 10 Nissan 370Z 11 Audi RS 3 Sportback 12 Mercedes-Benz SLS AMG Electric Drive 13 Audi TTS Coupe 14 Chevrolet Camaro GS 15 Ford Focus RS 16 Lamborghini Urus 17 Infiniti FX50 18 Lotus Exige S Coupe 19 Audi RS 4 Avant 20 Alfa Romeo 8C Competizione 21 DS Survolt 22 Aston Martin DB9 Coupe 23 Lamborghini Countach 25th Anniversary 24 Maserati GranTurismo Sport 25 Bentley Continental GT V8 26 Aston Martin V12 Zagato 27 Aston Martin V12 Vantage 28 Nissan GT-R (R35) 29 Ferrari 458 Italia 30 Ford Shelby GT500 31 Cadillac CTS-V Coupe Race Car 32 Mercedes-Benz SL 65 AMG Black Series 33 Dodge Viper SRT10 ACR-X 34 Chevrolet Corvette C7 35 McLaren 12C Spider 36 Pagani Zonda R 37 Ferrari F12berlinetta 38 Lamborghini Sesto Elemento 39 Marussia B2 40 RUF RT 12 S 41 Lamborghini Veneno 42 GTA Spano 43 RUF CTR 3 44 Ferrari FXX Evoluzione 45 Bugatti 16.4 Grand Sport Vitesse 46 Mercedes-Benz Silver Lightning 47 Koenigsegg Agera R 48 Ferrari 599XX 49 Lamborghini Gallardo LP 560-4 2013 50 Renault CLIO R.S. 200 EDC 51 BMW M6 52 Ferrari F430 53 Lotus Evora Enduro GT 54 Ferrari LaFerrari 55 W Motors Lykan HyperSport 56 Pagani Huayra 57 McLaren P1 58 SSC Tuatara 59 Ferrari Testarossa 60 SRT 2013 Dodge Challenger SRT8 61 Ford F-150 62 Hennessey Venom GT 63 Chrysler ME412 64 Ferrari FF 65 Ford 2006 GT 66 Mercedes-Benz SLS AMG GT Coupé Final Edition 67 2015 Ford Mustang 68 Jaguar C-X75 69 Mercedes-Benz CLK GTR AMG 70 Mercedes-Benz Biome 71 Peugeot Onyx 72 Jaguar F-Type R 73 Savage Rivale Roadyacht GTS 74 Mazda Furai 75 Nissan GT-R NISMO 76 SSC Ultimate Aero XT 77 Rimac Consept One 78 Savage Rivale GTR 79 Maserati MC12 80 Volkswagen W12 81 Koenigsegg One:1 82 9FF GT9 VMAX 83 Tramontana XTR 84 Felino cB7 85 Spada Codatronca 86 Arrinera Hussarya 87 Lucra L148 88 Acura NSX 2005 89 Renault DeZir 90 Ferrari F40 91 Ferrari Enzo Ferrari 92 Ferrari 612 Scaglietti 93 Ferrari F50 94 Ferrari 308 GTS 95 Ferrari 330 P4 96 Volkswagen Golf Design Vision GTI 97 BMW M3 Sedan 98 Audi R8 LMS Ultra 99 BMW M1 100 HTT Plethore LC 750 101 Lamborghini Aventador LP 700-4 102 Geely GC9 103 ONUK Sazan LM 104 Mitsubishi Lancer Evolution X 105 Chevrolet SS 106 AC 378 GT Z 107 Kepler Motion 108 McLaren 675LT 109 Bentley EXP10 Speed 6 110 McLaren P1 GTR 111 Camaro Z/28 112 Datsun 280Z 113 Shelby Cobra 427 114 SUBARU IMPREZA WRX STI 115 McLaren 570S 116 Lamborghini Huracan 117 Cadillac 16 Consept 118 McLaren F1 XP-5 119 DS 3 Racing 120 Honda S2000 121 Range Rover Evoque Coupe HSE Dynamic 122 Mercedes-Benz SLK 55 AMG 123 Toyota Supra RZ (Mark IV) 124 Nissan Skyline GT-R (R34) 125 Peugeot SR1 126 Lamgorghini Asterion 127 Mazzanti Evantra 128 Mosler GT3 129 Lamborghini Egoista 130 Renault Sport R.S. 01 131 TRION NEMESIS 132 ED Design Torq 133 Alfa Romeo 4C 134 Lamborghini Estoque 135 Rinspeed zaZen 136 Sbarro Alcador 137 Holden Coupe 60 138 Volkswagen Beetle Turbo 139 Lamborghini Miura 140 Cheverolet 2016 Camaro SS 141 Ferrari 458 Italia 142 Mosler Super GT 143 Mazda RX8 144 BMW 3.0 CSL Hommage 145 Honda Integra Type-R 146 Devel Sixteen Prototype 147 Mazda 6 148 Mitsubishi Eclipse 149 nanoFlowcell QUANT FE 150 Fenyr SuperSport 151 nanoFlowcell QUANTINO 152 Weber Faster One 153 Mercedes-AMG GT3 154 Nissan Juke Nismo 155 Jaguar XJ220S TWR Motorsport 156 Mercedes-AMG C 63 Couple 157 Jaguar F-TYPE Project 7 158 Aston Martin One-77 159 Donkervoort D8 GTO 160 Caddilac ATS-V Coupe 161 BXR Blade 162 MB GLC Coupe 163 2015 GTA Spano 164 Falcon F7 165 TVR Sagaris 166 Citroen GT 167 Icona Vulcano 168 Chevrolet Corvette C3 169 AlfaRomeo Quadrifoglio (Giulietta 2016 Veloce) 170 Mercedes CLA Racing 34 (CLA 45 AMG Rcaing Series)
-
Thanks for the info and cause accidentally screwed hack it by myself using vip got the Ferrari LaFerrari broken 150000/9..
-
Yes,I do it _______________________________________________ added 3 minutes later Do wait 14day _______________________________________________ added 4 minutes later 235 ferrari pista
-
Can anyone post an update? None of the money or gold cheats are working on the latest version, the one with the Ferrari update, Any help would be apperciated.
-
2016-02-29-18-39-57.txt
-
I have a problem getting a donation machine. From what I was able to find out that the name of the car is ferrari f355 (maybe it will help). Thank you in advance!