Page 2 of 5

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Fri Dec 04, 2020 5:24 am
by Tahtawy
pacifista wrote:
Fri Dec 04, 2020 3:29 am
none of these works.

especially gamesettingpc file wont make the game run. it just terminates after being started.

and the other file il local low it just has no effect, game rewrites the file anyways.


"bollocks" :shock:
tfigment clearly said more than once that you SHOULD not edit the settings.json file or copy it as game will rewrite it. Create a new file here (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\...) and name it settings.json and add this line to it.

Code: Select all

{
  "developerMode": "true" 
}
Leave the other settings.json file that is inside the settings folder as it is.

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Fri Dec 04, 2020 8:47 am
by frivolousam
pacifista wrote:
Fri Dec 04, 2020 3:29 am
none of these works.

especially gamesettingpc file wont make the game run. it just terminates after being started.

and the other file il local low it just has no effect, game rewrites the file anyways.


"bollocks" :shock:
just create a txt file and put only this in it:

Code: Select all

{
  "developerMode": "true" 
}
then rename it to settings.json and put it in EmpireOfSin folder in LocalLow/RomeroGames (don't put it in the Settings subfolder with has its own settings.json file in it)

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Fri Dec 04, 2020 9:16 am
by BoehserOnkel
the file for dev mode is located here -->
x:\xxxx\Empire of Sin\EmpireOfSin_Data\StreamingAssets\Settings
called : DefaultPlatformSettings_PC.json

{
"enableDebugLog" : false,
"developerMode" : true, <-- should look like this after changing
}



for borderless window add : -popupwindow at desktopshortcut
X:xxxx\\Empire of Sin\EmpireOfSin.exe" -popupwindow

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Fri Dec 04, 2020 9:35 am
by yhawkz
List Item except Ammo
Empire of Sin\EmpireOfSin_Data\StreamingAssets\GameData_Win64~\Lua\Config\Items

Ammo:
Empire of Sin\EmpireOfSin_Data\StreamingAssets\GameData_Win64~\Lua\Scripts\Behaviours\Items

Trinket == Equipment

open with Notepad++ if you want

careful not to replace anything

Dev.addItem(itemId, count) => Dev.addItem("ITEM.EQUIPMENT.TRINKET_06", 50) -> Give Stethoscope 50x

Dev.addItem(itemId, count) => Dev.addItem("ITEM.WEAPON.LEGENDARY_MACHINEGUN_03", 50) -> Give Golden Lewis Gun 50x

Dev.addItem(itemId, count) => Dev.addItem("ITEM.AMMO.SPECIAL_AMMO_03", 50) -> Give Bear Rounds 50x

Hope it helps

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 12:00 pm
by trdr.lndn
I found CharacterData.lua in \EmpireOfSin_Data\StreamingAssets\GameData_Win64~\Lua\Scripts\DataSheets

where you can find the stats of each character:


--[[------------------------------------------------------------------------------
Outfit Boss
Alphonse Capone
--------------------------------------------------------------------------------]]

_id = "OUTFIT_BOSS"
telemetryId = "B1"
characterID = "@alphonse_capone"
name = "$CHARACTER_DATA_OUTFIT_BOSS_name" --$ Alphonse Capone
firstName = "$CHARACTER_DATA_OUTFIT_BOSS_firstName" --$ Alphonse
lastName = "$CHARACTER_DATA_OUTFIT_BOSS_lastName" --$ Capone
gender = "Male"
description = "$CHARACTER_DATA_OUTFIT_BOSS_description" --$ You are notorious, just in from Brooklyn. You've mastered the ins and outs of the criminal world. Now that you've shaken off the shackles of your former cohorts, you're ready to dominate Chicago.
background = "$CHARACTER_DATA_OUTFIT_BOSS_background" --$ The child of immigrants from Salerno, {@alphonse_capone:lastName} worked hard from childhood to put food on the table. His meteoric rise to gang leader has left him happy, if a little reckless. He maintains his power by allowing no disrespect.
bossEmpireBonusOne = "EMPIRE_BONUS.BREWERY_PRODUCTION_UPGRADE_DISCOUNT"
bossEmpireBonusTwo = "EMPIRE_BONUS.BROTHEL_AMBIANCE_UPGRADE_DISCOUNT"
bossDiplomaticBonus = "StrongerBonds"
age = 21
heritage = "Italian-American"
heightType = "Short"
bodyType = "Stocky"
talentTreeOverride = "OUTFIT_BOSS_TALENT_TREE"
profession = "Boss"
baselineHp = 150
skills = {}
skills.MOVEMENT = 6
skills.INITIATIVE = 65
skills.MARKSMANSHIP = 75
skills.DEFENSE = 5
skills.MELEE = 60
skills.INTIMIDATION = 90
skills.LEADERSHIP = 60
skills.PERSUASION = 50
professions = {}
professions.Boss = 100
professions.Enforcer = 100
professions.HiredGun = 100
lootChance = {}
lootChance.Common = 0
lootChance.Uncommon = 0
lootChance.Rare = 30
lootChance.Epic = 100
lootChance.Legendary = 100


I tried to edit the skills but it didn't work. Any ideas on how to edit character stats?

thanks

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 12:11 pm
by pacifista
thanks guys, it really didn't work. Same thing is happening, it runs but terminates instantly.

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 1:34 pm
by BoehserOnkel
trdr.lndn wrote:
Sat Dec 05, 2020 12:00 pm
I found CharacterData.lua in \EmpireOfSin_Data\StreamingAssets\GameData_Win64~\Lua\Scripts\DataSheets

where you can find the stats of each character:


--[[------------------------------------------------------------------------------
Outfit Boss
Alphonse Capone
--------------------------------------------------------------------------------]]

_id = "OUTFIT_BOSS"
telemetryId = "B1"
characterID = "@alphonse_capone"
name = "$CHARACTER_DATA_OUTFIT_BOSS_name" --$ Alphonse Capone
firstName = "$CHARACTER_DATA_OUTFIT_BOSS_firstName" --$ Alphonse
lastName = "$CHARACTER_DATA_OUTFIT_BOSS_lastName" --$ Capone
gender = "Male"
description = "$CHARACTER_DATA_OUTFIT_BOSS_description" --$ You are notorious, just in from Brooklyn. You've mastered the ins and outs of the criminal world. Now that you've shaken off the shackles of your former cohorts, you're ready to dominate Chicago.
background = "$CHARACTER_DATA_OUTFIT_BOSS_background" --$ The child of immigrants from Salerno, {@alphonse_capone:lastName} worked hard from childhood to put food on the table. His meteoric rise to gang leader has left him happy, if a little reckless. He maintains his power by allowing no disrespect.
bossEmpireBonusOne = "EMPIRE_BONUS.BREWERY_PRODUCTION_UPGRADE_DISCOUNT"
bossEmpireBonusTwo = "EMPIRE_BONUS.BROTHEL_AMBIANCE_UPGRADE_DISCOUNT"
bossDiplomaticBonus = "StrongerBonds"
age = 21
heritage = "Italian-American"
heightType = "Short"
bodyType = "Stocky"
talentTreeOverride = "OUTFIT_BOSS_TALENT_TREE"
profession = "Boss"
baselineHp = 150
skills = {}
skills.MOVEMENT = 6
skills.INITIATIVE = 65
skills.MARKSMANSHIP = 75
skills.DEFENSE = 5
skills.MELEE = 60
skills.INTIMIDATION = 90
skills.LEADERSHIP = 60
skills.PERSUASION = 50
professions = {}
professions.Boss = 100
professions.Enforcer = 100
professions.HiredGun = 100
lootChance = {}
lootChance.Common = 0
lootChance.Uncommon = 0
lootChance.Rare = 30
lootChance.Epic = 100
lootChance.Legendary = 100


I tried to edit the skills but it didn't work. Any ideas on how to edit character stats?

thanks
yeah - nothing edited works so far
i think we need to wait for mod tools

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 1:38 pm
by Tahtawy
pacifista wrote:
Sat Dec 05, 2020 12:11 pm
thanks guys, it really didn't work. Same thing is happening, it runs but terminates instantly.
Here try the following:

1. Go to (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\Settings) Folder and make sure that the settings.json file there is NOT read only.
2. Download the attached "settings.json" file.
3. Put the downloaded file in (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\...)

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 4:25 pm
by pacifista
Tahtawy wrote:
Sat Dec 05, 2020 1:38 pm
pacifista wrote:
Sat Dec 05, 2020 12:11 pm
thanks guys, it really didn't work. Same thing is happening, it runs but terminates instantly.
Here try the following:

1. Go to (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\Settings) Folder and make sure that the settings.json file there is NOT read only.
2. Download the attached "settings.json" file.
3. Put the downloaded file in (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\...)
well, it starts and ends instantly i did the same but thank you so much.

when i remove the file it runs smoothly.

*************************************************************************************************
latest edit.

well, you guys wont believe me but i have removed it's ban "empireofsin.exe" from the free firewall's list and the console thing worked.

i just cant believe what kind of riddiculous situation is this?

now i'm unplugging the internet, lifting the ban and starting the game. Then plug the ethernet and block it while working..

i've thinkered with the cheats a bit but all abilities are not working i guess.

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 4:58 pm
by BoehserOnkel
pacifista wrote:
Sat Dec 05, 2020 4:25 pm
Tahtawy wrote:
Sat Dec 05, 2020 1:38 pm
pacifista wrote:
Sat Dec 05, 2020 12:11 pm
thanks guys, it really didn't work. Same thing is happening, it runs but terminates instantly.
Here try the following:

1. Go to (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\Settings) Folder and make sure that the settings.json file there is NOT read only.
2. Download the attached "settings.json" file.
3. Put the downloaded file in (C:\Users\<User>\AppData\LocalLow\RomeroGames\EmpireOfSin\...)
well, it starts and ends instantly i did the same but thank you so much.

when i remove the file it runs smoothly.

*************************************************************************************************
latest edit.

well, you guys wont believe me but i have removed it's ban "empireofsin.exe" from the free firewall's list and the console thing worked.

i just cant believe what kind of riddiculous situation is this?

now i'm unplugging the internet, lifting the ban and starting the game. Then plug the ethernet and block it while working..

i've thinkered with the cheats a bit but all abilities are not working i guess.
use this (if you want) -->> [Link]
block/unblock with rightclick

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sat Dec 05, 2020 6:00 pm
by BoehserOnkel
usefull cheats::

Dev.takeOverAllDerelictRackets("xxxxx_xxxxx.xxxxxx")

racket types :
"BUILDING_DATA.BREWERY"
"BUILDING_DATA.CASINO"
"BUILDING_DATA.BROTHEL"
"BUILDING_DATA.BAR"

example:
Dev.takeOverAllDerelictRackets("BUILDING_DATA.BREWERY")

!!!!!
all "free" buildings will be the kind of your choice so be carefull , you may end up with 30 brothels etc on one municipal district

a better one ::::

for only one building ::

Dev.takeOverDerelictRacket(Dev.curTarget)

(only works on "free" buildings (that ones the thug ownes) )

how to :
right click on building you want , open console , copy paste (or just write the command) , press enter , done



max consumers :

Dev.fillRacketToMaxCustomers()
(must be inside the building to use)

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sun Dec 06, 2020 3:08 am
by Tahtawy
You can also use:

Dev.increaseRating(faction_id)
Dev.reduceRating(faction_id)

Faction IDs:
FACTION.THE_OUTFIT
FACTION.THE_DONOVANS
FACTION.LOS_HIJOS
FACTION.ALLEY_CATS
FACTION.SALTIS_MCERLANE
FACTION.GENNA_CRIME_FAMILY
FACTION.FORTUNE_TELLERS
FACTION.THE_NORTHSIDE_MOB

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sun Dec 06, 2020 6:40 am
by Viceroy
thanks you for the codes guys.

by the way, is possible to any code to change district prosperity level ?

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sun Dec 06, 2020 8:25 am
by dharmang1910
Here is the temporary table until Stable table comes out.
viewtopic.php?f=4&t=14595

Re: REQUEST:EMPIRE OF SIN (PARADOX)

Posted: Sun Dec 06, 2020 7:44 pm
by pacifista
dharmang1910 wrote:
Sun Dec 06, 2020 8:25 am
Here is the temporary table until Stable table comes out.
viewtopic.php?f=4&t=14595
this is giving others unlimited ap either.