Skip to content

Commit 35665de

Browse files
authored
Add files via upload
1 parent 45acd4d commit 35665de

5 files changed

Lines changed: 417 additions & 7 deletions

File tree

assets/loc/eng/_CrashPatch.plain

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Language: eng # eng, rus, ger
55
LanguageName: English # English, �������, Deutsch
6-
Sections: 3
6+
Sections: 4
77

88
#-------------------------------------------------------------------------------------
99
SECTION: CrashPatch.hud
@@ -32,3 +32,27 @@ Keys: 1
3232
ID DefaultAmbience
3333
DESC (Original:) Default
3434
TEXT Default
35+
36+
#-------------------------------------------------------------------------------------
37+
SECTION: CrashPatch.career
38+
Keys: 5
39+
40+
ID DIALOG_EVENTREQUIRESCLASSE
41+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class E\d car.
42+
TEXT You are not allowed to participate in this event!|To participate you must use a \3class E\d car.
43+
44+
ID DIALOG_EVENTREQUIRESCLASSD
45+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class D\d car.
46+
TEXT You are not allowed to participate in this event!|To participate you must use a \3class D\d car.
47+
48+
ID DIALOG_EVENTREQUIRESCLASSC
49+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class C\d car.
50+
TEXT You are not allowed to participate in this event!|To participate you must use a \3class C\d car.
51+
52+
ID DIALOG_EVENTREQUIRESCLASSB
53+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class B\d car.
54+
TEXT You are not allowed to participate in this event!|To participate you must use a \3class B\d car.
55+
56+
ID DIALOG_EVENTREQUIRESCLASSA
57+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class A\d car.
58+
TEXT You are not allowed to participate in this event!|To participate you must use a \3class A\d car.

assets/loc/rus/_CrashPatch.plain

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Language: rus # eng, rus, ger
55
LanguageName: ������� # English, �������, Deutsch
6-
Sections: 3
6+
Sections: 4
77

88
#-------------------------------------------------------------------------------------
99
SECTION: CrashPatch.hud
@@ -32,3 +32,27 @@ Keys: 1
3232
ID DefaultAmbience
3333
DESC (Original:) Default
3434
TEXT �� ���������
35+
36+
#-------------------------------------------------------------------------------------
37+
SECTION: CrashPatch.career
38+
Keys: 5
39+
40+
ID DIALOG_EVENTREQUIRESCLASSE
41+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class E\d car.
42+
TEXT �� �� ������� � ������� � ���� ������������!|��� ������� ���������� ������������ ������ \3������ E\d.
43+
44+
ID DIALOG_EVENTREQUIRESCLASSD
45+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class D\d car.
46+
TEXT �� �� ������� � ������� � ���� ������������!|��� ������� ���������� ������������ ������ \3������ D\d.
47+
48+
ID DIALOG_EVENTREQUIRESCLASSC
49+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class C\d car.
50+
TEXT �� �� ������� � ������� � ���� ������������!|��� ������� ���������� ������������ ������ \3������ C\d.
51+
52+
ID DIALOG_EVENTREQUIRESCLASSB
53+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class B\d car.
54+
TEXT �� �� ������� � ������� � ���� ������������!|��� ������� ���������� ������������ ������ \3������ B\d.
55+
56+
ID DIALOG_EVENTREQUIRESCLASSA
57+
DESC (Original:) You are not allowed to participate in this event!|To participate you must use a \3class A\d car.
58+
TEXT �� �� ������� � ������� � ���� ������������!|��� ������� ���������� ������������ ������ \3������ A\d.

src/CrashPatch.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ void Init()
191191
CustomizableGarageAmb();
192192
SecretBonusCash();
193193
TypoFix_WreckPerfectWin();
194+
EventParticipationCond();
194195

195196
// --- Main loop (runs until g_running is set to false) ---
196197
while (g_running.load(std::memory_order_relaxed))

src/patch/global.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -569,9 +569,4 @@ void __declspec(naked) a_SecretBonusCash()
569569
void SecretBonusCash()
570570
{
571571
injector::MakeJMP(0x571784, a_SecretBonusCash, true);
572-
}
573-
574-
void TypoFix_WreckPerfectWin()
575-
{
576-
injector::WriteMemory(0x486B92, 0x6B72CD, true);
577572
}

0 commit comments

Comments
 (0)