A couple questions about some of the Unreal engine options we have at our disposal–
- In Enemy Territory you could use “echo Hello World!” in the console and it would print this at the top of your screen, so in essence you could create a bind for choosing a Medic class, echo on your screen “Medic!!!” and even a “say_team “going Med!”” to notify your team as well.
For instance, something like this would be in your config:
bind 1 “mp_playertype 1; echo ^0[ ^1MEDIC ^0 ];say_teamnl “Medic incoming””
Although the commands in Unreal 3 engine are completely different, is there an echo/print command which does this similarly to the RTCW/ET side of things.
Anything at all command wise that can be used to display text on your own screen?
- Also in ET (I know I know!) - you could setup custom variables.
set toggleFOV90 “cg_fov 90”
and
set toggleFOV100 “cg_fov 100”
Then say, setup a bind as:
bind Y “vstr toggleFOV90”
bind U “vstr toggleFOV100”
Then pressing Y or U would execute the custom variable strings.
Anything like this possible in this engine as well?
Any information (even the most basic) is helpful.
Thanks!