Skip to content

Commit 2abead3

Browse files
authored
Added Per Team Score Lighting
1 parent 30f719d commit 2abead3

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

RocketLeagueAssistant/RocketLeagueAssistant.cpp

+16-3
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ void RocketLeagueAssistant::onLoad()
3131
cvarManager->registerCvar("ha_home", "http://192.168.1.256:8123/api/webhook/webhook-light-example-home");
3232
cvarManager->registerCvar("ha_away", "http://192.168.1.256:8123/api/webhook/webhook-light-example-away");
3333
cvarManager->registerCvar("ha_demos", "http://192.168.1.256:8123/api/webhook/webhook-light-example-demos");
34-
cvarManager->registerCvar("ha_goalScored", "http://192.168.1.256:8123/api/webhook/webhook-light-example-goalscored");
34+
//cvarManager->registerCvar("ha_goalScored", "http://192.168.1.256:8123/api/webhook/webhook-light-example-goalscored");
3535
cvarManager->registerCvar("ha_freeplay", "http://192.168.1.256:8123/api/webhook/webhook-light-example-freeplay");
3636
cvarManager->registerCvar("ha_mainmenu", "http://192.168.1.256:8123/api/webhook/webhook-light-example-mainmenu");
3737
cvarManager->registerCvar("ha_overtime", "http://192.168.1.256:8123/api/webhook/webhook-light-example-overtime");
3838
cvarManager->registerCvar("ha_exit", "http://192.168.1.256:8123/api/webhook/webhook-light-example-exit");
39-
cvarManager->registerCvar("ha_goalHome", "http://192.168.1.256:8123/api/webhook/webhook-light-example-exit");
40-
cvarManager->registerCvar("ha_goalAway", "http://192.168.1.256:8123/api/webhook/webhook-light-example-exit");
39+
cvarManager->registerCvar("ha_goalHome", "http://192.168.1.256:8123/api/webhook/webhook-light-example-homegoal");
40+
cvarManager->registerCvar("ha_goalAway", "http://192.168.1.256:8123/api/webhook/webhook-light-example-awaygoal");
4141

4242
//Team CVAR
4343
cvarManager->registerCvar("ha_playersTeam", "2");
@@ -344,6 +344,17 @@ void RocketLeagueAssistant::StatsHook(void* params)
344344
//
345345
LOG("StateEventOccured");
346346
if (statEvent.GetEventName() == "Goal") {
347+
348+
//See if Goal Scored hook is enabled
349+
CVarWrapper goalScoredEnabledCvar = cvarManager->getCvar("goalScored_enabled");
350+
bool goalScoredEnabled = goalScoredEnabledCvar.getBoolValue();
351+
if (!goalScoredEnabled) { LOG("goalScored Automations are not enabled"); return; }
352+
353+
//See if it is a replay
354+
CVarWrapper replayCvar = cvarManager->getCvar("isReplay");
355+
bool isReplay = replayCvar.getBoolValue();
356+
if (isReplay == true) { Log("It's a replay"); return; }
357+
347358
int tmpCounter = 0;
348359
int lastGoalScoredBy = receiver.GetTeamNum();
349360

@@ -352,11 +363,13 @@ void RocketLeagueAssistant::StatsHook(void* params)
352363
if (lastGoalScoredBy == haplayersTeam2) {
353364

354365
LOG("Your team scored");
366+
SendCommands(reqUrlGoalHomeString);
355367
}
356368

357369
if (lastGoalScoredBy != haplayersTeam2) {
358370

359371
LOG("Other team scored");
372+
SendCommands(reqUrlGoalAwayString);
360373
}
361374

362375
}

0 commit comments

Comments
 (0)