Prison Architect

Prison Architect

Total Chaos
 此主题已被置顶,因此可能具有重要性
hoosdatGuy  [开发者] 2015 年 9 月 28 日 下午 12:11
REQUESTS
I only put in so many features to avoid having a billion different things to sort through, so if there's something you all really, really want, then tell me here!
最后由 hoosdatGuy 编辑于; 2015 年 9 月 28 日 下午 12:11
< >
正在显示第 1 - 13 条,共 13 条留言
OrcasOfGanymede 2015 年 9 月 30 日 下午 5:45 
I know other mods have this, but be able to put them all in one gang and then you could give them guns.
hoosdatGuy  [开发者] 2015 年 9 月 30 日 下午 6:05 
I did a test and it seems that this mod is actually compatible with those other mods, so just have them enabled at the same time and you're good to go!
Vodka 2015 年 10 月 2 日 下午 1:27 
you should add where the events can happen on-command. I guess thats the word for it. such as... prisoners getting sick on-command, etc...
hoosdatGuy  [开发者] 2015 年 10 月 3 日 下午 12:14 
There's already a mod that does that, I don't want to encroach on other mods
Vodka 2015 年 10 月 3 日 下午 12:51 
Oh! I didn't know there was already a mod like that.. Do you know the name of it? btw great mod! :steamhappy:
hoosdatGuy  [开发者] 2015 年 10 月 3 日 下午 2:20 
Unfortunately I can't make it so prisoners come in more often, but that mod above does let you instantly spawn 1 prisoner (or 10)
Xzoi 2015 年 10 月 7 日 下午 4:31 
Add something that you can give snipers and booze to inmates
glorp shitto 2015 年 11 月 25 日 上午 11:34 
Infect prisoners with virus?
TurbulentWinds 2017 年 3 月 11 日 上午 5:04 
HoosdatGuy you can make code that allows you to keep the guards with the changed weapons. Basicly, you use a blank object like the one that starts riots and write a lua script for it that looks something like this:

function Create()
submachineGuard = Object.Spawn("Guard",this.Pos.x,this.Pos.y);
Object.SetProperty(submachineGuard,"Equipment",46);
Object.SetProperty(submachineGuard,"PersistEquipment",46);
Object.SetProperty(submachineGuard,"PersistEquipmentString","SubMachineGun");
Object.SetProperty(submachineGuard,"Tooltip","Type: SMG");
Object.Sound(this,"Guard","Place");
this.Delete();
end

Then you also need a script for the nomal guard like this:

local noLag = 0

function Update(TimePassed)

if noLag==nil then
noLag=0
end

noLag = noLag + TimePassed

if noLag>0.1 then

noLag = 0

if this.Equipment=="Fists" then
this.Equipment = 0;
end

if this.Damage<1 then
if this.TargetObject.i~=-1 then
if this.Equipment~=this.PersistEquipmentString then
this.Equipment = this.PersistEquipment;
end

elseif this.Equipment~="None" then
this.Equipment=0;
end
end
end
end
Lookover12 2017 年 6 月 24 日 下午 10:37 
Can you made like the 'start riot' button a 'start staff strike' button as well
zebra03 2018 年 12 月 27 日 下午 4:18 
request to update mod
bulatka330 2020 年 2 月 8 日 上午 10:14 
can you make a mod to add reputation to convicts?
< >
正在显示第 1 - 13 条,共 13 条留言
每页显示数: 1530 50