Page MenuHomeFeedback Tracker

Cannot create Debug Console
New, NormalPublic

Description

Previous to patch 1.70 we could create debug console through script. This was handy as our group has a private mod we use on keyed dedicated servers. Admin UIDs are listed in the mod script and if you are not loged in as admin or not listed in the mod scripts then you would be denied access to admin tools. It is often handy to allow multiple clients access to debug console for development or quick mid mission coding. This change was not listed in SPOTREP #00067 so I assume this is a bug.

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
General
Steps To Reproduce

Create an MP mission and place this code in created initPlayerLocal.sqf.

  • spawn {

waitUntil {time > 5};
createDialog 'RscDisplayDebugPublic';
};

Event Timeline

Jigsor created this task.May 25 2017, 1:57 AM

See Related ticket:
https://feedback.bistudio.com/T124835

From today, enableDebugConsole description.ext param can be array containing UIDs of whitelisted users. It will also act as enableDebugConsole = 1

For example

enableDebugConsole[]={"1234567890"};

Will make debug console usable for user with uid 1234567890 as well as for server host and logged in admin on dedicated.