Alien Shooter
The Richest - Expert alien shotter no work
achievement The Richest - Expert alien shotter no work for me, i collect 200k money and no work, would anyone know what the problem would be?
Първоначално публикувано от Zuiren:
Първоначално публикувано от HollywoodBR:
achievement The Richest - Expert alien shotter no work for me, i collect 200k money and no work, would anyone know what the problem would be?

I got the way to solve this.

The way is to fix the code of the game achievement.

1) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps)
and look for the file name "COMMON", then open using Notepad

2) scroll down until you found these texts

if (StatNumCollectMoney + add_money >= ACH_MONEY_0) && StatNumCollectMoney < ACH_MONEY_0)
StoreSetAchievement("ACH_MONEY_0");
if (StatNumCollectMoney + add_money >= ACH_MONEY_1) && StatNumCollectMoney < ACH_MONEY_1)
StoreSetAchievement("ACH_MONEY_1");
if (StatNumCollectMoney + add_money >= ACH_MONEY_2) && StatNumCollectMoney < ACH_MONEY_2)
StoreSetAchievement("ACH_MONEY_2");

3) Change the "<" on the back into ">", then save the file

if (StatNumCollectMoney + add_money >= ACH_MONEY_0) && StatNumCollectMoney > ACH_MONEY_0)
StoreSetAchievement("ACH_MONEY_0");
if (StatNumCollectMoney + add_money >= ACH_MONEY_1) && StatNumCollectMoney > ACH_MONEY_1)
StoreSetAchievement("ACH_MONEY_1");
if (StatNumCollectMoney + add_money >= ACH_MONEY_2) && StatNumCollectMoney > ACH_MONEY_2)
StoreSetAchievement("ACH_MONEY_2");

4) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps)
and look for the file name "common_table", open using Notepad

5) look for these texts
ACH_MONEY_0 10000
ACH_MONEY_1 60000
ACH_MONEY_2 200000

6) Change the "200000" on the back into "100000", then save the file

ACH_MONEY_0 10000
ACH_MONEY_1 60000
ACH_MONEY_2 100000

7) Try playing the game again. after I started playing Mission 1 and get just a little money, I got the Achievement.


This one worked for me, hope it also help you. :steamthumbsup:
< >
Показване на 1-10 от 10 коментара
Will check it, thank you!
Първоначално публикувано от sgx:
Will check it, thank you!
ty
Първоначално публикувано от sgx:
Will check it, thank you!

Hello sgx,

I also cannot achieve 3 achievements, which are
1. The Richest - Expert (same achievement as HollywoodBR☣)
2. In Search Of Supplies - Master (Destroy 1000 crates)
3. In Search Of Supplies - Expert (Destroy 5000 crates)
But I'm really sure I did clear all requirements for all of them.

Any updates about your checking on the achievement problems here?
Авторът е посочил, че тази публикация отговаря на първоначалната му тема.
Първоначално публикувано от HollywoodBR:
achievement The Richest - Expert alien shotter no work for me, i collect 200k money and no work, would anyone know what the problem would be?

I got the way to solve this.

The way is to fix the code of the game achievement.

1) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps)
and look for the file name "COMMON", then open using Notepad

2) scroll down until you found these texts

if (StatNumCollectMoney + add_money >= ACH_MONEY_0) && StatNumCollectMoney < ACH_MONEY_0)
StoreSetAchievement("ACH_MONEY_0");
if (StatNumCollectMoney + add_money >= ACH_MONEY_1) && StatNumCollectMoney < ACH_MONEY_1)
StoreSetAchievement("ACH_MONEY_1");
if (StatNumCollectMoney + add_money >= ACH_MONEY_2) && StatNumCollectMoney < ACH_MONEY_2)
StoreSetAchievement("ACH_MONEY_2");

3) Change the "<" on the back into ">", then save the file

if (StatNumCollectMoney + add_money >= ACH_MONEY_0) && StatNumCollectMoney > ACH_MONEY_0)
StoreSetAchievement("ACH_MONEY_0");
if (StatNumCollectMoney + add_money >= ACH_MONEY_1) && StatNumCollectMoney > ACH_MONEY_1)
StoreSetAchievement("ACH_MONEY_1");
if (StatNumCollectMoney + add_money >= ACH_MONEY_2) && StatNumCollectMoney > ACH_MONEY_2)
StoreSetAchievement("ACH_MONEY_2");

4) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps)
and look for the file name "common_table", open using Notepad

5) look for these texts
ACH_MONEY_0 10000
ACH_MONEY_1 60000
ACH_MONEY_2 200000

6) Change the "200000" on the back into "100000", then save the file

ACH_MONEY_0 10000
ACH_MONEY_1 60000
ACH_MONEY_2 100000

7) Try playing the game again. after I started playing Mission 1 and get just a little money, I got the Achievement.


This one worked for me, hope it also help you. :steamthumbsup:
Последно редактиран от Zuiren; 4 март 2023 в 18:28
thank you, that really worked, I had already given up haha
a small correction, you need to open the common_table folder afterwards to find the files that need the change >
4) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps\common_table
, open using Notepad
Последно редактиран от HollywoodBR; 4 март 2023 в 12:37
Първоначално публикувано от HollywoodBR:
thank you, that really worked, I had already given up haha
a small correction, you need to open the common_table folder afterwards to find the files that need the change >
4) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps\common_table
, open using Notepad

I'm glad it worked, congratulation!

I added common_table folder in my comment. Thanks for your comment here.

I typed common_table folder already at first but I must deleted it by mistake when I edit the file location. :steamfacepalm:
Първоначално публикувано от Zuiren:
Първоначално публикувано от HollywoodBR:
thank you, that really worked, I had already given up haha
a small correction, you need to open the common_table folder afterwards to find the files that need the change >
4) go to your game folder in Steam, then go to "Maps"
(E.g. my game folder is D:\Game\Steam\steamapps\common\Alien Shooter\Maps\common_table
, open using Notepad

I'm glad it worked, congratulation!

I added common_table folder in my comment. Thanks for your comment here.

I typed common_table folder already at first but I must deleted it by mistake when I edit the file location. :steamfacepalm:
:happystar2022: ty for help
How could I achieve the boxes? Where should I put the modified data?
< >
Показване на 1-10 от 10 коментара
На страница: 1530 50