forked from LotekHeavy/SafeBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDescription-Steam
117 lines (95 loc) · 4.26 KB
/
Description-Steam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[h1]SafeBase 2.1[/h1]
[b]Mod ID: 3107853072[/b]
An easy-to-craft, almost transparent force field to protect your base ! Number per tribe configurable !
☢ [u]Warning[/u]
[code]Please be aware, this is a fork of LaoArchAngel's fantastic SafeBase Mod for Ark! Louis Bang Bang as fixed a newly introduced bug (by ark itself / januar 2021) This mod will seamless replace the origin mod.[/code]
[url=https://github.com/Olrik-WP/SafeBase] Code Source 2.1 [/url]
★ Version 2.3 - 10/12/2023
[list]
[*]Feature request: (Add ability to make shield invisible in opacity windows 0.0)
[/list]
★ [u]Version 2.2 - 08/12/2023[/u]
[list]
[*]Feature request (Add some decay features)
If you discover that avoiding the use of fuel is overly convenient and wish for players to utilize resources, this is the optimal solution, which can be enabled or disabled in the INI file
[*]Add tow option in the INI:
[/list]
UseFuel=1
FuelConsumptionMultiplier=600.0
with 600.0 Multiplier at shield radius 10x it consume 1 ressource of wood in 1 minute
If you set UseFuel=1 you need to put wood in the inventory of the shield
Fuel option is better than decay...
Fuel Used WOOD !
★ [u]Version 2.1 - 07/12/2023[/u]
[list]
[*]Correction of the shield which lights up with an opacity of 0, now at 0.8 by default
[*]Fixed crash when opening the opacity window
[*]Reworked opacity window from scrash
[*]Section Removed in INI and not used in 2.1 version:
[/list]
MinOpacity=0.50
MaxOpacity=0.80
No sense in keeping it configurable in the INI. Variables as set in the code to 0.0 / 1.0, users don't need to worry about it
✪ [u]Steam Workshop[/u]
✘ Origin:
http://steamcommunity.com/sharedfiles/filedetails/?id=1235049753
✘ 2.0 Updated by Louis Bang Bang:
https://steamcommunity.com/sharedfiles/filedetails/?id=2386532930
✔ Current 2.1 Updated by Deltawp:
https://steamcommunity.com/sharedfiles/filedetails/?id=3107853072
☄ [u]What It Does[/u]
Adds a new engram for a modified Tek Shield that is immune to damage, does not require tek engrams, and does not burn fuel. This is perfect for PvP servers that want to allow tribes to have a small base that is completely protected.
☛ [u]Features[/u]
Clean and completely stackable.
Shield max size is configurable. Default max size is the same as a tek shield.
Configurable limit on number of shields per tribe. Default is one.
Shield opacity is adjustable to 0.0 at 1.0 This means it won't look horrible in dark places, like the Aberration map.
The shield ignores babies ! Baby dinos will no longer be thrust out into oblivion.
Does not require access to tek.
Does not require fuel.
☠ [u]Known Bugs[/u]
A Dino with massive damage (mostly from a mod like ARK Primal Fear) can bite through the shield. Solution: Don't use this kind of mod or atleast do not put the dino on the border of the shield. Will be not fixed!
Rockdrages can bug through the shield (its the same bug what can happen with the tek shield). Can not be fixed!
➤ [u]Configuration[/u]
[code]
ShieldSizeMult
Float
Multiplies the default tek shield size by this number.
Default is 1.0
TribeLimit
Integer
Number of shields a tribe is allowed to have.
Default is 1
UseFuel
Integer
shields use fuel or not (wood used as fuel)
Default is 0
0 or 1
FuelConsumptionMultiplier
Float
Only used if UseFuel is set to 1
Default is 600.0
With 600.0 Multiplier at shield radius 10x it consume 1 ressource of wood in 1 minute
[/code]
✔[u]GameUserSettings.ini[/u]
[code]
[SafeBase]
ShieldSizeMult=1.0
TribeLimit=1
UseFuel=0
FuelConsumptionMultiplier=600.0
[/code]
☺ Item Class
[code]
SB_PrimalItemStructure_Shield_C
##### Engram Class
SB_EngramEntry_Shield_C
##### Spawn Code
cheat giveitem "Blueprint'/Game/Mods/SafeBase/Items/SB_PrimalItemStructure_Shield.SB_PrimalItemStructure_Shield'" 1 1 0
##### Engram Override
OverrideNamedEngramEntries=(EngramClassName="SB_EngramEntry_Shield_C",EngramLevelRequirement=0,EngramPointsCost=0,EngramHidden=False,RemoveEngramPreReq=False)
##### Crafting Cost Override
ConfigOverrideItemCraftingCosts=(ItemClassString="SB_PrimalItemStructure_Shield_C",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemResource_Thatch_C",BaseResourceRequirement=1.0,bCraftingRequireExactResourceType=True)))
##### Auto Unlock
EngramEntryAutoUnlocks=(EngramClassName="B_EngramEntry_Shield_C",LevelToAutoUnlock=0)
[/code]