Discovery Gaming Community
Admin Notice: Setmsg Command Glitch - Printable Version

+- Discovery Gaming Community (https://discoverygc.com/forums)
+-- Forum: Discovery General (https://discoverygc.com/forums/forumdisplay.php?fid=3)
+--- Forum: News and Announcements (https://discoverygc.com/forums/forumdisplay.php?fid=13)
+--- Thread: Admin Notice: Setmsg Command Glitch (/showthread.php?tid=151537)



Admin Notice: Setmsg Command Glitch - sindroms - 07-01-2017

Good day. we have come across a setmsg glitch that has appeared for unknown reasons relatively recently.

For this reason the command is temporarily disabled.



RE: Admin Notice: Setmsg Command Glitch - sasapinjic - 07-01-2017

Not cousing so serious glitch to be disabled idefinitly like docking module, i hope?


RE: Admin Notice: Setmsg Command Glitch - el.ninho - 07-01-2017

(07-01-2017, 06:00 PM)sindroms Wrote: Good day. we have come across a setmsg glitch that has appeared for unknown reasons relatively recently.

For this reason the command is temporarily disabled.

When will be activated again.I love to set msg before going in pirate misions.


RE: Admin Notice: Setmsg Command Glitch - Alex. - 07-02-2017

(07-01-2017, 07:47 PM)el.ninho Wrote:
(07-01-2017, 06:00 PM)sindroms Wrote: Good day. we have come across a setmsg glitch that has appeared for unknown reasons relatively recently.

For this reason the command is temporarily disabled.

When will be activated again.I love to set msg before going in pirate misions.

When the problem with it has been fixed.


RE: Admin Notice: Setmsg Command Glitch - Freeroamer - 08-07-2017

Any ETA on getting setmsg readded?


RE: Admin Notice: Setmsg Command Glitch - Eurobeat - 08-12-2017

is there an update on this?


RE: Admin Notice: Setmsg Command Glitch - sindroms - 08-12-2017

Not really, no, sorry.
We had to essentially gut the whole thing to figure out what was causing the recent slew of crashes. Expect and update soon, but not too soon.


RE: Admin Notice: Setmsg Command Glitch - DragonRider - 08-12-2017

I found our you can make a macro that does the same thing as setmsg (minus the #target and sector thingy). Would that kind of thing be allowed?


RE: Admin Notice: Setmsg Command Glitch - sindroms - 08-12-2017

As long as you observe the rules of engagement in terms of time and allowing the player to react, I do not necessarily see why not. We do not have issues with macros used for text input within reason.


RE: Admin Notice: Setmsg Command Glitch - ronillon - 08-25-2017

Just bumping this with a little info and question.

(08-12-2017, 01:31 PM)sindroms Wrote: Not really, no, sorry.
We had to essentially gut the whole thing to figure out what was causing the recent slew of crashes. Expect and update soon, but not too soon.
Any change on the subject?

(08-12-2017, 03:50 PM)DragonRider Wrote: I found our you can make a macro that does the same thing as setmsg (minus the #target and sector thingy). Would that kind of thing be allowed?

Yes, something like this for AutoHotkey:
Code:
#InstallKeybdHook
#InstallMouseHook

; Hotkey configuration
; Ctrl + Alt + Shift + F1
$!^+F1::
Send {Enter}Greetings{Enter}
return

;
;Symbol Description
;# Win (Windows logo key). In v1.0.48.01+, for Windows Vista and later, hotkeys that include the Windows key (e.g. #a) will wait for the Windows key to be released before sending any text containing an "L" keystroke. This prevents usages of Send within such a hotkey from locking the PC. This behavior applies to all sending modes except SendPlay (which doesn't need it) and blind mode.
;! Alt
;^ Control
;+ Shift
;& An ampersand may be used between any two keys or mouse buttons to combine them into a custom hotkey. See below for details.
;< Use the left key of the pair. e.g. <!a is the same as !a except that only the left Alt key will trigger it.
;> Use the right key of the pair.