Instal Steam
login
|
bahasa
简体中文 (Tionghoa Sederhana)
繁體中文 (Tionghoa Tradisional)
日本語 (Bahasa Jepang)
한국어 (Bahasa Korea)
ไทย (Bahasa Thai)
Български (Bahasa Bulgaria)
Čeština (Bahasa Ceko)
Dansk (Bahasa Denmark)
Deutsch (Bahasa Jerman)
English (Bahasa Inggris)
Español - España (Bahasa Spanyol - Spanyol)
Español - Latinoamérica (Bahasa Spanyol - Amerika Latin)
Ελληνικά (Bahasa Yunani)
Français (Bahasa Prancis)
Italiano (Bahasa Italia)
Magyar (Bahasa Hungaria)
Nederlands (Bahasa Belanda)
Norsk (Bahasa Norwegia)
Polski (Bahasa Polandia)
Português (Portugis - Portugal)
Português-Brasil (Bahasa Portugis-Brasil)
Română (Bahasa Rumania)
Русский (Bahasa Rusia)
Suomi (Bahasa Finlandia)
Svenska (Bahasa Swedia)
Türkçe (Bahasa Turki)
Tiếng Việt (Bahasa Vietnam)
Українська (Bahasa Ukraina)
Laporkan kesalahan penerjemahan
i think they are not compatible because they modify same action. you can just use this so you will open trunk only once.
you just right click on the car as usual and select mechanics there. if you already opened it, it will just show car menu instantly
- Is this mod works well in MP ?
- Is this mod compatible with Faster Hood Opening (2584112711)
- "Also if you open car menu once, you can then open it from any distance." --> how ?
Thank you @SubVision
This book shit i added because i got bug when i read the book completely and didnt get skill modifier after.
I tried to add logic to recalculate modifier before it discard reading it.
function ISReadABook:isValid()
local vehicle = self.character:getVehicle()
if vehicle and vehicle:isDriver(self.character) then
return not vehicle:isEngineRunning()
end
if not self.character:getInventory():contains(self.item) or self.item:getNumberOfPages() < 0 then
return false
end
self:update()
return self.item:getNumberOfPages() > 0 and self.item:getAlreadyReadPages() <= self.item:getNumberOfPages();
end
```
BAD! very naughty! let this be a lesson in modifying globals!! this function breaks every single readable item with a timed action. the only reason skill books continue to work is that their progress is measured by pages, not by a set completion time.
hope this helps you and anyone else who spends hours figuring out why such an innocuous-sounding mod is breaking the game so fundamentally