Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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