@@ -31,13 +31,13 @@ void RocketLeagueAssistant::onLoad()
31
31
cvarManager->registerCvar (" ha_home" , " http://192.168.1.256:8123/api/webhook/webhook-light-example-home" );
32
32
cvarManager->registerCvar (" ha_away" , " http://192.168.1.256:8123/api/webhook/webhook-light-example-away" );
33
33
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");
35
35
cvarManager->registerCvar (" ha_freeplay" , " http://192.168.1.256:8123/api/webhook/webhook-light-example-freeplay" );
36
36
cvarManager->registerCvar (" ha_mainmenu" , " http://192.168.1.256:8123/api/webhook/webhook-light-example-mainmenu" );
37
37
cvarManager->registerCvar (" ha_overtime" , " http://192.168.1.256:8123/api/webhook/webhook-light-example-overtime" );
38
38
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 " );
41
41
42
42
// Team CVAR
43
43
cvarManager->registerCvar (" ha_playersTeam" , " 2" );
@@ -344,6 +344,17 @@ void RocketLeagueAssistant::StatsHook(void* params)
344
344
//
345
345
LOG (" StateEventOccured" );
346
346
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
+
347
358
int tmpCounter = 0 ;
348
359
int lastGoalScoredBy = receiver.GetTeamNum ();
349
360
@@ -352,11 +363,13 @@ void RocketLeagueAssistant::StatsHook(void* params)
352
363
if (lastGoalScoredBy == haplayersTeam2) {
353
364
354
365
LOG (" Your team scored" );
366
+ SendCommands (reqUrlGoalHomeString);
355
367
}
356
368
357
369
if (lastGoalScoredBy != haplayersTeam2) {
358
370
359
371
LOG (" Other team scored" );
372
+ SendCommands (reqUrlGoalAwayString);
360
373
}
361
374
362
375
}
0 commit comments