Portal-Zone Gothic-Zone Gothic II-Zone Gothic 3-Zone Gothic 4-Zone Modifikationen-Zone Download-Zone Foren-Zone RPG-Zone Almanach-Zone Spirit of Gothic

 

Seite 19 von 39 « Erste ... 8121516171819202122232630 ... Letzte »
Ergebnis 361 bis 380 von 777
  1. Beiträge anzeigen #361 Zitieren
    Schwertmeister
    Registriert seit
    Oct 2015
    Beiträge
    931
     
    Woozel ist offline
    Thanks for this new version!

    I would like to know if this finally fixed the choice of the graphics card with Nvidia Optimus even if I alreay got a new Desktop PC for a while now.
    But unfortunately, my laptop doesn't have a hard drive anymore so I can't test it

    Edit: I tested it just now with my new GSync monitor and I'm really impressed.
    The crash with GSync on is fixed and the performance absolutely skyrocketed thanks to the simple window option, especially when playing without the DX11 renderer.
    In the german Gothic 2 DNDR mod I play at the moment set in the old Camp from G1 in some places the FPS basically doubled and in other they are now steady at it's 165FPS Vsync Cap!
    Before I had like everything between 40 and 120FPS.
    Special thanks also for this fix: "Climbing on the ledges work properly at high FPS"

    Edit: The simple window mode only has one downside: Instant crash on Alt+Tab
    As I'm using this quite often at the moment I'm gonna stay with BorderlessWindow=1 for now.
    GSync is providing the Vsync for it anyway when I'm setting GSync to also be active in Window and not only Fullscreen in Nvidia driver.
    Maybe this performs better now as well.
    Edit2: It performs the same for me on 1.8 now!
    Geändert von Woozel (27.09.2019 um 20:26 Uhr)

  2. Beiträge anzeigen #362 Zitieren
    Local Hero
    Registriert seit
    Feb 2013
    Beiträge
    236
     
    pawbuj ist offline
    Hi @Magoth

    Gothic 1 bugs

    Still see there is no fix for a switch (f.e. gate wheel) state after save/load game. Always state 0 after save whatever state was before save. Kerrax has fixed that in GEngine.

    dialog choice box is too short for some dialogues!

    BTW contragratulations of new release!
    Geändert von pawbuj (30.09.2019 um 07:33 Uhr)

  3. Beiträge anzeigen #363 Zitieren
    Ehrengarde
    Registriert seit
    Nov 2009
    Ort
    Deutschland
    Beiträge
    2.531
     
    Grekain ist offline
    I cannot install Systempack 1.8. I used a fresh Gothic install on steam and followed all steps, in order:
    Gothic - gothic1-1.08k-patch - gothic1_playerkit-1.08k - Gothic1_PlayerKit-2.8 - G1Classic-SystemPack-1.8

    The issue is that the installer for the SP aborts at about 10% installation progress. The process is completely shut down with no error message. Gothic cannot be opened properly. Still the system recognizes that the SP has been installed and asks me to uninstall it before trying again. Going back to 1.7 for now. Is this a known issue?

    Kind regards

    EDIT: Would it be possible to share the SP files without installer?
    Geändert von Grekain (16.10.2019 um 11:00 Uhr)

  4. Beiträge anzeigen #364 Zitieren
    Hero Avatar von lali
    Registriert seit
    Feb 2016
    Beiträge
    5.473
     
    lali ist offline
    Hello. I see you can change the color of dialogue fonts. But what is the color code system used there?
    Phoenix Dev | Website | Discord

  5. Beiträge anzeigen #365 Zitieren
    Local Hero
    Registriert seit
    Feb 2013
    Beiträge
    236
     
    pawbuj ist offline
    Zitat Zitat von lali Beitrag anzeigen
    Hello. I see you can change the color of dialogue fonts. But what is the color code system used there?
    all is decribed in main theme. with color examples.

    the change of dialog color was possible from 1.7 .

  6. Beiträge anzeigen #366 Zitieren
    Knight
    Registriert seit
    Aug 2009
    Ort
    Hessen
    Beiträge
    1.487
     
    Cryp18Struct ist offline
    This 1.8 change:
    Changes for Gothic 2
    — Armor is visible in the merchant's assortment and in inventory of dead/knockdown NPC (only not dressed armor);
    causes problems with our mod. Is there a way to disable it?
    Maybe by overwriting whatever you changed at runtime?

  7. Beiträge anzeigen #367 Zitieren
    Ehrengarde Avatar von mud-freak
    Registriert seit
    Dec 2005
    Beiträge
    2.199
     
    mud-freak ist offline
    Zitat Zitat von Cryp18Struct Beitrag anzeigen
    This 1.8 change:

    causes problems with our mod. Is there a way to disable it?
    Maybe by overwriting whatever you changed at runtime?
    I have also had a problem with this. You can easily revert this change from the systempack (e.g. in your Init_Global) with some safety checks included. It amounts to checking/overwriting 4 bytes, if I remember correctly. I can share the code once I get on my computer next week.

  8. Beiträge anzeigen #368 Zitieren
    Ehrengarde Avatar von mud-freak
    Registriert seit
    Dec 2005
    Beiträge
    2.199
     
    mud-freak ist offline
    Zitat Zitat von Cryp18Struct Beitrag anzeigen
    This 1.8 change:

    causes problems with our mod. Is there a way to disable it?
    Maybe by overwriting whatever you changed at runtime?
    Zitat Zitat von mud-freak Beitrag anzeigen
    I have also had a problem with this. You can easily revert this change from the systempack (e.g. in your Init_Global) with some safety checks included. It amounts to checking/overwriting 4 bytes, if I remember correctly. I can share the code once I get on my computer next week.
    Into your Init_Global or Init_Perceptions write this (code for G2 only):
    Code:
    MEM_InitAll();
    
    // Revert changes of SystemPack 1.8 (Armor_unlock_in_trade, Armor_unlock_in_npc)
    const int oCNpcContainer__CreateList_checkArmor_sp18   =  7386813; //0x70B6BD
    const int oCStealContainer__CreateList_checkArmor_sp18 =  7384909; //0x70AF4D
    
    if (MEM_ReadInt(oCStealContainer__CreateList_checkArmor_sp18) == 0) {
        MemoryProtectionOverride(oCStealContainer__CreateList_checkArmor_sp18, 4);
        MEM_WriteInt(oCStealContainer__CreateList_checkArmor_sp18, /*0F 01 00 00*/ 271);
    };
    if (MEM_ReadByte(oCNpcContainer__CreateList_checkArmor_sp18) == 0) {
        MemoryProtectionOverride(oCNpcContainer__CreateList_checkArmor_sp18, 1);
        MEM_WriteByte(oCNpcContainer__CreateList_checkArmor_sp18, /*1A*/ 26);
    };
    Geändert von mud-freak (12.02.2020 um 22:26 Uhr)

  9. Beiträge anzeigen #369 Zitieren
    Local Hero
    Registriert seit
    Feb 2013
    Beiträge
    236
     
    pawbuj ist offline
    can anybody helps me to disable option in sp 1.8 responsible for partially hiding item text in inventory menu?

    u can look at the photo to see my issue!

    https://zapodaj.net/0e05a927c3731.bmp.html

  10. Beiträge anzeigen #370 Zitieren
    Hero Avatar von lali
    Registriert seit
    Feb 2016
    Beiträge
    5.473
     
    lali ist offline
    I cannot help with the problem, but can you tell me where these potion models are from?
    Phoenix Dev | Website | Discord

  11. Beiträge anzeigen #371 Zitieren
    Local Hero
    Registriert seit
    Feb 2013
    Beiträge
    236
     
    pawbuj ist offline
    Zitat Zitat von lali Beitrag anzeigen
    I cannot help with the problem, but can you tell me where these potion models are from?
    newest Artermiano Textures Patch for G1.

  12. Beiträge anzeigen #372 Zitieren
    Drachentöter Avatar von Arthonius
    Registriert seit
    Jan 2006
    Beiträge
    4.067
     
    Arthonius ist offline
    Ich bekomme die Fehlermeldung "Download limit exceeded. You can save the folder to Yandex.Disk and download it from there."

    Was ist da los?

    Ich möchte nichts installieren, sondern einfach nur downloaden...

  13. Beiträge anzeigen #373 Zitieren
    Provinzheld Avatar von Guzz
    Registriert seit
    Apr 2009
    Ort
    Russland
    Beiträge
    230
     
    Guzz ist offline
    Zitat Zitat von Arthonius Beitrag anzeigen
    Ich bekomme die Fehlermeldung "Download limit exceeded. You can save the folder to Yandex.Disk and download it from there."

    Was ist da los?

    Ich möchte nichts installieren, sondern einfach nur downloaden...
    https://github.com/GothicFixTeam/GothicFix/releases

  14. Beiträge anzeigen #374 Zitieren
    Rookie
    Registriert seit
    Nov 2019
    Beiträge
    3
     
    812378912y3 ist offline
    I installed the latest 1.8 version of the SystemPack but I'm having trouble re-enabling strafebug in the systempack.ini. I typed StrafeBug=1 but it's not working. Is there any way to re-enable the bug? Kind regards.


  15. Beiträge anzeigen #375 Zitieren
    Lehrling
    Registriert seit
    Feb 2019
    Beiträge
    10
     
    cormain ist offline

    Blackscreen nach systempack 1.8

    Ich bekomme nur einen Blackscreen beim starten nachdem ich das systempack 1.8 installiert habe. Wenn ich es deinstalliere läuft Gothic 2 zwar wieder, aber dann habe ich oben links den weißen Rand.

    hat jemand Rat?

  16. Beiträge anzeigen #376 Zitieren
    Hero Avatar von lali
    Registriert seit
    Feb 2016
    Beiträge
    5.473
     
    lali ist offline
    Nutze Version 1.7.
    Phoenix Dev | Website | Discord

  17. Beiträge anzeigen #377 Zitieren
    Krieger Avatar von Luri89
    Registriert seit
    Oct 2008
    Ort
    Solothurn, CH
    Beiträge
    499
     
    Luri89 ist offline

    Small Interface

    Hello Community

    I started to play Gothic with Spine. Spine has allready the Systempack.
    With the high resolution, every interface in the game is too small of course.
    But if i try to change the size, nothing happens in the game.
    I tried the Systempack options on Spine and also the Systempack Ini.
    I can save the changes but it has no effect in the game either.

    Can somebody help or any idea?
    It's quiet annoying to read such small dialogues or inventory
    [Bild: upload.cgi?a=show&file=63756265426c61636b2e676966] If you love the Weighted Companion Cube as much as I do, copy this into your sig

  18. Beiträge anzeigen #378 Zitieren
    Neuling
    Registriert seit
    Feb 2019
    Beiträge
    3
     
    nightfever77 ist offline
    Zitat Zitat von Luri89 Beitrag anzeigen
    Hello Community

    I started to play Gothic with Spine. Spine has allready the Systempack.
    With the high resolution, every interface in the game is too small of course.
    But if i try to change the size, nothing happens in the game.
    I tried the Systempack options on Spine and also the Systempack Ini.
    I can save the changes but it has no effect in the game either.

    Can somebody help or any idea?
    It's quiet annoying to read such small dialogues or inventory
    Same here: playing at 4k and interface parameters in Systempack.ini do not change anything in game. Only invMaxColumns at Gothic.ini is working accordingly in game.
    Is there any fix?
    Geändert von nightfever77 (22.12.2019 um 09:43 Uhr)

  19. Homepage besuchen Beiträge anzeigen #379 Zitieren
    Knight Commander Avatar von Kellendil
    Registriert seit
    Jul 2009
    Beiträge
    2.100
     
    Kellendil ist offline
    Nice, with 1.8 i don't get the Access Violation that Systempack 1.7 causes for me

  20. Beiträge anzeigen #380 Zitieren
    Einmalposter
    Registriert seit
    Dec 2019
    Beiträge
    1
     
    FallenSymbiote ist offline

    Installer doesn't work

    For some reason, the type of installer used doesnt work for me. I can start it normally and select everything, until i need to choose the directory gothic is installed in. The Install button isn't clickable and i can't select the directory through search because the OK button is grey, too.

Seite 19 von 39 « Erste ... 8121516171819202122232630 ... Letzte »

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
Impressum | Link Us | intern
World of Gothic © by World of Gothic Team
Gothic, Gothic 2 & Gothic 3 are © by Piranha Bytes & Egmont Interactive & JoWooD Productions AG, all rights reserved worldwide