Skip to content

Commit 077b7b4

Browse files
committed
[release]: v1.1 Public Release
1 parent cfd768d commit 077b7b4

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

Sample_Config/TraderBoostMut.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[TraderBoostMut.BoostMe]
22
# Value for speed boost | Recommended: Between 500 - 1000 (More than 1000 and you'll become flash)
3-
iSpeedBoost=750
3+
iSpeedBoost=600
44
# If this is set to anything above 0, you will get extra 'boost' time (duration) AFTER the wave has already started
55
iAfterWaveStartBoost=0
66
# Speed boost duration for match start | This is recommended to be 10 because countdown for match start is 10
@@ -9,6 +9,8 @@ iMatchStartBoost=10
99
sMatchStartBoostMessage=%bMatch Start%w Speed Boost %tActivated!%w
1010
# Message to show at TraderTime boost
1111
sTraderBoostMessage=%bTrader%w Speed Boost %tActivated!%w
12+
# Message to show when boost ends
13+
sBoostEndMessage=%bTrader%w Speed Boost %tDeactivated!%w
1214
# Controls whether the notification/message is global (On Screen) or in-chat
1315
bGlobalMSG=True
1416

Steam_WorkShop_Description/Workshop-Text

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gives player a speed boost at the match start, and trader time in between waves:
2828
[code]
2929
[TraderBoostMut.BoostMe]
3030
# Value for speed boost | Recommended: Between 500 - 1000 (More than 1000 and you'll become flash)
31-
iSpeedBoost=750
31+
iSpeedBoost=600
3232
# If this is set to anything above 0, you will get extra 'boost' time (duration) AFTER the wave has already started
3333
iAfterWaveStartBoost=0
3434
# Speed boost duration for match start | This is recommended to be 10 because countdown for match start is 10
@@ -37,6 +37,8 @@ iMatchStartBoost=10
3737
sMatchStartBoostMessage=%bMatch Start%w Speed Boost %tActivated!%w
3838
# Message to show at TraderTime boost
3939
sTraderBoostMessage=%bTrader%w Speed Boost %tActivated!%w
40+
# Message to show when boost ends
41+
sBoostEndMessage=%bTrader%w Speed Boost %tDeactivated!%w
4042
# Controls whether the notification/message is global (On Screen) or in-chat
4143
bGlobalMSG=True
4244

@@ -76,8 +78,8 @@ ColorList=(ColorName="White",ColorTag="%w",Color=(B=200,G=200,R=200,A=0))
7678

7779
[h1][b][u]Manual Download Links (Recommended)[/u][/b][/h1]
7880

79-
You can find it under 'Whitelisted' folder named 'TraderBoostMut-v1.0'
81+
You can find it under 'Whitelisted' folder named 'TraderBoostMut-v1.1'
8082

8183
- MEGA Link: https://mega DOT nz/folder/YDoEmKiC#s6FGAtgh40-TvB4bHsLaMQ
8284

83-
- Github: https://github.com/Vel-San/KF-TraderBoostMut/releases/tag/v1.0
85+
- Github: https://github.com/Vel-San/KF-TraderBoostMut/releases/tag/v1.1

TraderBoostMut/Classes/BoostMe.uc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class BoostMe extends Info Config(TraderBoostMut);
22

33
var() config int iSpeedBoost, iAfterWaveStartBoost, iMatchStartBoost;
4-
var() config string sMatchStartBoostMessage, sTraderBoostMessage;
4+
var() config string sMatchStartBoostMessage, sTraderBoostMessage, sBoostEndMessage;
55
var() config bool bGlobalMSG;
66

77
function PostBeginPlay()
@@ -29,13 +29,15 @@ function PostBeginPlay()
2929
// Trader Time Boost
3030
if (bGlobalMSG) class'TraderBoostMut'.default.Mut.CriticalServerMessage(sTraderBoostMessage);
3131
else class'TraderBoostMut'.default.Mut.ServerMessage(sTraderBoostMessage);
32-
SetTimer(KFGT.TimeBetweenWaves + iAfterWaveStartBoost + 10, false); // +10 is for wave start 10 seconds
32+
SetTimer(KFGT.TimeBetweenWaves + iAfterWaveStartBoost, false);
3333
}
3434
}
3535
}
3636

3737
function Timer()
3838
{
39+
if (bGlobalMSG) class'TraderBoostMut'.default.Mut.CriticalServerMessage(sBoostEndMessage);
40+
else class'TraderBoostMut'.default.Mut.ServerMessage(sBoostEndMessage);
3941
Destroy();
4042
}
4143

TraderBoostMut/Classes/TraderBoostMut.uc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,6 @@ defaultproperties
147147
{
148148
// Mandatory Vars
149149
GroupName = "KF-TraderBoostMut"
150-
FriendlyName = "Trader Booster - v1.0"
150+
FriendlyName = "Trader Booster - v1.1"
151151
Description = "Gives all players a speed boost on trader time; Made by Vel-San /w help of Marco"
152152
}

0 commit comments

Comments
 (0)