Update 28 + Hotfix 3
1) Removed "Near Infinite Credits" - Just insert a ton of gold into Molly instead
2) Updated: Mission extraction timer script style (again) - Small problem where the extractor would leave without you, lol whooops
3) Updated: The type of script for Engineer Turret Ammo & Gunner Shield Ammo. Hopefully they will stay fixed through DRG patches.
4) Fixed: No Recoil - Now contains THREE parts. DO NOT turn the scripts off individually. Just disable the parent "No Recoil" header.
5) Improvements: I made the Driller and Gunner script trees a little easier to activate. I hope this makes things faster for everyone.
If a DRG developer is reading this:
You separated the Minigun code from all the other guns. This made my life harder... but I still love you!
---main
controlMainForm = getMainForm()
AddressList = getAddressList()
-- remove the first hyphen from the next line to comment out the Cheat Engine slim line code
--- [[
--compact mode
control_setVisible(wincontrol_getControl(controlMainForm,0), false)
control_setVisible(wincontrol_getControl(controlMainForm,2), false)
control_setVisible(wincontrol_getControl(controlMainForm,3), false)
--end
--disable header sorting and items dragging
AddressListTreeview = component_getComponent(AddressList,0)
AddressListHeader = component_getComponent(AddressList,1)
setMethodProperty(AddressListHeader ,"OnSectionClick",nil)
setMethodProperty(AddressListTreeview,"OnDragOver" ,nil)
setMethodProperty(AddressListTreeview,"OnDragDrop" ,nil)
setMethodProperty(AddressListTreeview,"OnEndDrag" ,nil)
--end
--show main window
ShowMainWindowTimer = createTimer(nil,false)
timer_setInterval(ShowMainWindowTimer, 1)
timer_onTimer(ShowMainWindowTimer, function (sender)
object_destroy(sender)
control_setVisible(controlMainForm,true) -- set visible
form_setMenu(controlMainForm,nil) -- hide menu
end)
timer_setEnabled(ShowMainWindowTimer, true)
--end
--- ]]
---comment
if getCEVersion == nil or getCEVersion() < 7.0 then
messageDialog('use at least CE 7.0! (версия: '..getCEVersion()..')', mtError, mbOK)
end
--end
--select process (auto activation)
errorOnLookupFailure(false)
DefaultProccessName = "FSD-Win64-Shipping.exe"
strings_add(getAutoAttachList(), DefaultProccessName)
--end