Komplettes Thema anzeigen 22.04.2021, 12:50
Kukulcan Abwesend
Mitglied
Dabei seit: 04.03.2013
Wohnort: Köln


Betreff: Re: Indiana Jones und der Turm von Babel
https://steamcommunity.com/...686060326/

Find cog file TEM_introCut.cog in this place: F:\...\Valve\steamapps\common\Indiana Jones and the Infernal Machine\Resource\Cog

Edit this file in notepad++ and find line 171.

Add specific line in TEM_introCut.cog file line, and it should look like in example below:

Original:

# draw imp#1
SelectWeapon(player, 14);
#SelectWeaponWait(player, 14)

Fixed:
# draw imp#1
player = GetLocalPlayerThing();
SelectWeapon(player, 14);
#SelectWeaponWait(player, 14);

Oder ist das ein anderes Problem?