Jump to content

dtronicsuk

Member
  • Posts

    356
  • Joined

  • Last visited

Awards

This user doesn't have any awards

3 Followers

About dtronicsuk

  • Birthday Aug 24, 1991

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    exeter
  • Interests
    PC's, gaming, Nvidia, making fun of apple LOL

System

  • CPU
    AMD Phenom II X6 1055T @ 3.50GHz
  • Motherboard
    MSI 970 Gaming
  • RAM
    8 GB DDR3 1333MHz
  • GPU
    Palit Nvidia GTX970 4GB
  • Case
    ThermalTake View 27
  • Storage
    480GB SanDisk Ultra II, 2TB Toshiba 7200RPM, 1TB Hitachi 5200RPM
  • PSU
    Corsair CSM550w gold
  • Display(s)
    Technika 40" 1080P LED
  • Cooling
    AMD Stock Cooler
  • Keyboard
    Corsair Strafe
  • Mouse
    Corsair M25 RGB
  • Sound
    On-Board
  • Operating System
    Windows 10 Pro 64bit

Recent Profile Visitors

1,530 profile views
  1. Hey all I am having troubles getting black ops 3 to work on linux and was wondering if anyway has had any luck getting it to work i have tried various diffrent versions of Proton, both Valves own version and GE versions. I have tried using the gamerunnow launch options and running the game in safemode. i have also tried renaming the videos folder as that is known to crash the game on some older versions of proton. I do get game audio but thats about it PC Specs: CPU: Ryzen 9 3950X RAM: 32GB DDR4 3200MHz GPU: Nvidia RTX 3060 12GB OS: Manjaro Arch Linux DE: KDE Plasma 5 Kernel: 6.1.30 Many Thanks Damian
  2. Hey Unfortunately that didn't work Thanks for the help though
  3. Hi all I was wondering if someone could help me out. Im making a modpack installer for a game i play and even though the installer im using works im trying to add a bit of code that saves the users component choices to a .ini file. This .ini file can then later be read by the installer to pre select the choices made to make installing the modpack again later more convenient. However im having a bit of issue getting it to work. Im using Inno Setup 6.2.1 Here is the code i have in place [INI] Filename: "{app}/DTUKMPOptions.ini"; Section: "Setup"; Key: "Components"; String: "{code:GetSelectedComponents}" [Code] function GetSelectedComponents: string; var i: Integer; begin Result := ''; for i := 0 to WizardForm.ComponentsList.Count - 1 do begin if WizardForm.ComponentsList.Checked[i] then begin if Result <> '' then Result := Result + ','; Result := Result + WizardForm.ComponentsList.Items[i]; end; end; end; procedure InitializeWizard; var IniFile: TIniFile; SelectedComponents: string; i: Integer; begin IniFile := TIniFile.Create(ExpandConstant('{app}/DTUKMPOptions.ini')); try SelectedComponents := IniFile.ReadString('Setup', 'Components', ''); if SelectedComponents <> '' then begin for i := 0 to WizardForm.ComponentsList.Count - 1 do begin if Pos(WizardForm.ComponentsList.Items[i], SelectedComponents) > 0 then WizardForm.ComponentsList.Checked[i] := True; end; end; finally IniFile.Free; end; end; However i get this error Does anyone know where im going wrong? The code section is written in Pascal Cheers
  4. linusopen2.bmpAlso heres how my OpenVPN is configured linusopen1.bmp linusopen2.bmp
  5. Hi guys i have a Raspberry Pi 4 running Openmediavault 5.2.3-2, and i have been successfully able to create a samba share for windows backups and storage. however, i am having issues trying to setup OpenVPN so i can have access to my files when im not at home (IE at work). However whenever i click Apply, OMV throws an error. i have manually tried starting and stopping the OpenVPN service (since thats what it looks like to be the issue) i have attached a copy of the full error i am getting and hope someone here has had more success than me :D Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; omv-salt deploy run openvpn 2>&1' with exit code '1': /usr/lib/python3/dist-packages/salt/utils/path.py:265: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if not isinstance(exes, collections.Iterable): omv: ---------- ID: update_openmediavault_openvpn_config Function: cmd.run Name: /usr/sbin/omv-openvpn setup Result: False Comment: Command "/usr/sbin/omv-openvpn setup" run Started: 12:21:12.631417 Duration: 509.778 ms Changes: ---------- pid: 26006 retcode: 2 stderr: Bad argument `192.168.1.64' Try `iptables -h' or 'iptables --help' for more information. stdout: ---------- ID: start_openvpn_service Function: service.running Name: openvpn Result: True Comment: The service openvpn is already running Started: 12:21:13.168143 Duration: 89.514 ms Changes: Summary for omv ------------ Succeeded: 1 (changed=1) Failed: 1 ------------ Total states run: 2 Total run time: 599.292 ms Full error details Error #0: OMV\ExecException: Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; omv-salt deploy run openvpn 2>&1' with exit code '1': /usr/lib/python3/dist-packages/salt/utils/path.py:265: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if not isinstance(exes, collections.Iterable): omv: ---------- ID: update_openmediavault_openvpn_config Function: cmd.run Name: /usr/sbin/omv-openvpn setup Result: False Comment: Command "/usr/sbin/omv-openvpn setup" run Started: 12:21:12.631417 Duration: 509.778 ms Changes: ---------- pid: 26006 retcode: 2 stderr: Bad argument `192.168.1.64' Try `iptables -h' or 'iptables --help' for more information. stdout: ---------- ID: start_openvpn_service Function: service.running Name: openvpn Result: True Comment: The service openvpn is already running Started: 12:21:13.168143 Duration: 89.514 ms Changes: Summary for omv ------------ Succeeded: 1 (changed=1) Failed: 1 ------------ Total states run: 2 Total run time: 599.292 ms in /usr/share/php/openmediavault/system/process.inc:182 Stack trace: #0 /usr/share/php/openmediavault/engine/module/serviceabstract.inc(60): OMV\System\Process->execute() #1 /usr/share/openmediavault/engined/rpc/config.inc(167): OMV\Engine\Module\ServiceAbstract->deploy() #2 [internal function]: Engined\Rpc\Config->applyChanges(Array, Array) #3 /usr/share/php/openmediavault/rpc/serviceabstract.inc(123): call_user_func_array(Array, Array) #4 /usr/share/php/openmediavault/rpc/serviceabstract.inc(149): OMV\Rpc\ServiceAbstract->callMethod('applyChanges', Array, Array) #5 /usr/share/php/openmediavault/rpc/serviceabstract.inc(588): OMV\Rpc\ServiceAbstract->OMV\Rpc\{closure}('/tmp/bgstatusue...', '/tmp/bgoutput5w...') #6 /usr/share/php/openmediavault/rpc/serviceabstract.inc(159): OMV\Rpc\ServiceAbstract->execBgProc(Object(Closure)) #7 /usr/share/openmediavault/engined/rpc/config.inc(189): OMV\Rpc\ServiceAbstract->callMethodBg('applyChanges', Array, Array) #8 [internal function]: Engined\Rpc\Config->applyChangesBg(Array, Array) #9 /usr/share/php/openmediavault/rpc/serviceabstract.inc(123): call_user_func_array(Array, Array) #10 /usr/share/php/openmediavault/rpc/rpc.inc(86): OMV\Rpc\ServiceAbstract->callMethod('applyChangesBg', Array, Array) #11 /usr/sbin/omv-engined(537): OMV\Rpc\Rpc::call('Config', 'applyChangesBg', Array, Array, 1) #12 {main} Many thanks and enjoy the rest of your day
  6. Hey guys, So I got given a old PS3 phat that had the ylod, managed to fix that by using the heat gun trick So now I'm running a jailbroken phat on 4.82 rebug Does anyone here suggest some good,useful,best mods etc I could install because ATM all I'm doing is playing PS1 and ps2 games and I am new to this modded console scene ( I'm a pc gamer mainly) Btw I have a 500gb in the phat that I took from my old super slim
  7. hi guys so i have decided to build my own copy of lineageos for my oneplus 3 everything went well until i tried to actually build a copy. running both brunch and breakfast commands results in the same error build/core/product_config.mk:243: *** _nic.PRODUCTS.[[device/oneplus/oneplus3/lineage.mk]]: "vendor/oneplus/oneplus3/oneplus3-vendor.mk" does not exist. Stop. build/core/product_config.mk:243: *** _nic.PRODUCTS.[[device/oneplus/oneplus3/lineage.mk]]: "vendor/oneplus/oneplus3/oneplus3-vendor.mk" does not exist. Stop. ** Don't have a product spec for: 'lineage_oneplus3' ** Do you have the right repo manifest? does anyone have experience with Git or know why this is happening cheers damian
  8. @hamaien nope not yet, however i have been doing some reasearch and testing of my own, i have switch motherboards to one that has a I7-2600 and what do you know, the game and bentchmark open fine without issue. @Evanair thats not a case in fact the phenom II X6 is more than able to support this but in fact going by what other people have said online it does appear that square enix have put a soft lock on what cpus can be used, think we will just have to wait to see if they remove it or if someone can patch it yeah my fault forgot to say the 2TB 7200RPM drive has all my games on (the ssd has some games that take a while to load e.g. GTAV and BF4).
  9. yep tried that and didnt work, personally i would love to know why the game is causing that error in event viewer min requirements for most games are either over specced or just lie. look at call of duty wwii min requirements, its asks for a ryzen 5 but works fine with my phenom ii x6
  10. nope never heard of it. lets say your PSU is 400W and is 80% efficient. it would mean the toltal out put of your PSU is 320W, but most PSU's lose about 5% of there efficiency every year so your actual output might be a little under 300W, having a more powerful card might work but the PSU might not be able to run it for a long time. it might be worth buying a PSU from a known brand like corsair, 500W should be more enough just make sure it says its at least 80+ bronze rated (mine is gold rated meaning its 90% efficient)
  11. the real question is what wattage is the power supply and who makes it. i have done that mistake of running a powerful card (9600GTX at the time) with a cheap power supply thats provided with these pre-built systems and the PSU just went bang when i was playing BF3, im lucky it didnt take anything with it. now i use a Corsair CS550M which is a 550W Gold rated PSU which i bought a few years ago for £50 from ebuyer, im still using it today with my phenom II 1055T and GTX970
  12. hey guys i am having trouble launching FFXV demo. everytime i launch it it pops up gives me a ansel message then windows says its stopped working. i have tried using the graphics configurer to put the settings as low as you can go but i still cant get the game to work, i also have the same problem with the benchmark program as well this is what event viewer says Log Name: Application Source: Application Error Date: 05/03/2018 04:36:39 Event ID: 1005 Task Category: (100) Level: Error Keywords: Classic User: N/A Computer: DESKTOP-OC0BOOR Description: Windows cannot access the file for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program FINAL FANTASY XV WINDOWS EDITION because of this error. Program: FINAL FANTASY XV WINDOWS EDITION File: The error value is listed in the Additional Data section. User Action 1. Open the file again. This situation might be a temporary problem that corrects itself when the program runs again. 2. If the file still cannot be accessed and - It is on the network, your network administrator should verify that there is not a problem with the network and that the server can be contacted. - It is on a removable disk, for example, a floppy disk or CD-ROM, verify that the disk is fully inserted into the computer. 3. Check and repair the file system by running CHKDSK. To run CHKDSK, click Start, click Run, type CMD, and then click OK. At the command prompt, type CHKDSK /F, and then press ENTER. 4. If the problem persists, restore the file from a backup copy. 5. Determine whether other files on the same disk can be opened. If not, the disk might be damaged. If it is a hard disk, contact your administrator or computer hardware vendor for further assistance. Additional Data Error value: 8ADBF9A0 Disk type: 0 Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="Application Error" /> <EventID Qualifiers="49152">1005</EventID> <Level>2</Level> <Task>100</Task> <Keywords>0x80000000000000</Keywords> <TimeCreated SystemTime="2018-03-05T04:36:39.700860200Z" /> <EventRecordID>4217</EventRecordID> <Channel>Application</Channel> <Computer>DESKTOP-OC0BOOR</Computer> <Security /> </System> <EventData> <Data> </Data> <Data>FINAL FANTASY XV WINDOWS EDITION</Data> <Data>8ADBF9A0</Data> <Data>0</Data> </EventData> </Event> and this Log Name: Application Source: Application Error Date: 05/03/2018 04:36:39 Event ID: 1000 Task Category: (100) Level: Error Keywords: Classic User: N/A Computer: DESKTOP-OC0BOOR Description: Faulting application name: ffxv_s.exe, version: 1.0.0.0, time stamp: 0x5a8f8006 Faulting module name: ffxv_s.exe, version: 1.0.0.0, time stamp: 0x5a8f8006 Exception code: 0xc000001d Fault offset: 0x00000000008cf307 Faulting process id: 0x39f4 Faulting application start time: 0x01d3b43b8952986b Faulting application path: C:\Program Files (x86)\Steam\steamapps\common\FINAL FANTASY XV PLAYABLE DEMO\ffxv_s.exe Faulting module path: C:\Program Files (x86)\Steam\steamapps\common\FINAL FANTASY XV PLAYABLE DEMO\ffxv_s.exe Report Id: 7f86aace-b53f-4ac5-a5fd-782ff441e226 Faulting package full name: Faulting package-relative application ID: Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="Application Error" /> <EventID Qualifiers="0">1000</EventID> <Level>2</Level> <Task>100</Task> <Keywords>0x80000000000000</Keywords> <TimeCreated SystemTime="2018-03-05T04:36:39.699354400Z" /> <EventRecordID>4216</EventRecordID> <Channel>Application</Channel> <Computer>DESKTOP-OC0BOOR</Computer> <Security /> </System> <EventData> <Data>ffxv_s.exe</Data> <Data>1.0.0.0</Data> <Data>5a8f8006</Data> <Data>ffxv_s.exe</Data> <Data>1.0.0.0</Data> <Data>5a8f8006</Data> <Data>c000001d</Data> <Data>00000000008cf307</Data> <Data>39f4</Data> <Data>01d3b43b8952986b</Data> <Data>C:\Program Files (x86)\Steam\steamapps\common\FINAL FANTASY XV PLAYABLE DEMO\ffxv_s.exe</Data> <Data>C:\Program Files (x86)\Steam\steamapps\common\FINAL FANTASY XV PLAYABLE DEMO\ffxv_s.exe</Data> <Data>7f86aace-b53f-4ac5-a5fd-782ff441e226</Data> <Data> </Data> <Data> </Data> </EventData> </Event> my pc specs are as follows CPU: AMD Phenom II X6 1055T @ 3.50GHz RAM: 8GB DDR3 1333MHz GPU: Nvidia GTX970 4GB (Palit) SSD: SanDisk UltraII 480GB (System drive) HDD: Toshiba 2TB 7200RPM, Hitachi 1TB 5400RPM (games and storage) PSU: Corsair CS550M 550W Gold Rated cheers damian
  13. ok managed to get it to work changed DD-WRT from "client" to "client bridge (routed)" also port forwarded it just to be safe
  14. Great news glad you got it sorted out, sorry I wasn't a huge help but I have been really busy. Thanks for updating here how you fixed it so that others who have this issue know how to fix it
×