Page MenuHomeFeedback Tracker

SQF command doSuppressiveFire causes server RPT spam
New, NormalPublic

Description

Launcher version: 1.5.147353
Game version: 2.02.147497
Branch: profiling

When using the command doSuppressiveFire to make an AI unit fire at some position, the server will log this in its RPT.
RPT entries will look like this:

22:52:27 Ref to nonnetwork object 5f4a42a080# 454685: <no shape>
22:52:27 Ref to nonnetwork object 5f564fe080# 454686: <no shape>
22:52:27 Ref to nonnetwork object 5f4a429600# 454684: <no shape>
22:52:27 Ref to nonnetwork object 5f4a42a080# 454685: <no shape>
22:52:27 Ref to nonnetwork object 5f564fe080# 454686: <no shape>
22:52:27 Ref to nonnetwork object 5f4a429600# 454684: <no shape>
22:52:30 Ref to nonnetwork object 5f4a429600# 454684: <no shape>
22:52:31 Ref to nonnetwork object 5f4a42a080# 454685: <no shape>
22:52:35 Ref to nonnetwork object 5f4a42a080# 454685: <no shape>
22:52:36 Ref to nonnetwork object 5f564fe080# 454686: <no shape>
22:52:36 Ref to nonnetwork object 5f4a42a080# 454685: <no shape>
22:52:36 Ref to nonnetwork object 5f4a429600# 454684: <no shape>

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Operating System Version
10.0.19041 Build 19041
Category
General
Steps To Reproduce

Spawn AI on a client connected to a server
execute this while looking at the AI

private _unit = cursorObject;
private _pos = [0,0,0];
_unit doWatch (ASLtoAGL _pos);
_unit doSuppressiveFire _pos;

Check server's RPT file

Event Timeline

diwako created this task.Mar 31 2021, 3:28 PM
diwako updated the task description. (Show Details)
diwako edited Steps To Reproduce. (Show Details)
dedmen added a subscriber: dedmen.Apr 8 2021, 11:03 AM

supress on position, creates a local object to use as target. which ofc isn't known over network.

diwako added a comment.Apr 8 2021, 3:16 PM

supress on position, creates a local object to use as target. which ofc isn't known over network.

Seems to me this can be fixed/improved so it does not try to send anything over network?