mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 07:11:36 +00:00
[23:56] <TTI> one thing that bugs me in the referee menu...
[23:57] <TTI> go to Match tab and select Match Settings [23:58] <TTI> then close the Match Settings and you'll return to the Login tab [23:58] <TTI> you SHOULD return back to the Match tab
This commit is contained in:
parent
b31581a932
commit
35b0da6ea7
2 changed files with 6 additions and 8 deletions
|
@ -89,7 +89,7 @@
|
|||
textaligny 16
|
||||
forecolor 0 0 0 1
|
||||
visible 1
|
||||
action { play "sound/ui/whoosh3.wav" ; open "ingame_matchmode_captain" }
|
||||
action { play "sound/ui/whoosh3.wav" ; openSpecial "ingame_matchmode_captain" }
|
||||
}
|
||||
|
||||
// REFEREE //
|
||||
|
@ -107,7 +107,7 @@
|
|||
textaligny 16
|
||||
forecolor 0 0 0 1
|
||||
visible 1
|
||||
action { play "sound/ui/whoosh3.wav" ; open "ingame_matchmode_referee" }
|
||||
action { play "sound/ui/whoosh3.wav" ; openSpecial "ingame_matchmode_referee" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,20 +43,18 @@
|
|||
play "sound/ui/whoosh3.wav" ;
|
||||
uiScript readMMcaptainSettings ;
|
||||
setitemcolor hints forecolor HINT_COLOR 1 ; hide "hints" ;
|
||||
ACTIVATE_TAB(1) ;
|
||||
}
|
||||
onESC { close _self }
|
||||
|
||||
onOpenSpecial {
|
||||
//normal items
|
||||
setItemColor "fade_alpha" forecolor 5 5 5 0 ;
|
||||
timeFade "fade_alpha" forecolor 5 5 5 1 0 FADEIN_TIME ;
|
||||
ALPHA_FADE_FORE(fade_alpha, 1) ;
|
||||
//icon - special alpha
|
||||
setItemColor "icon" forecolor 5 5 5 0 ;
|
||||
ALPHA_FADE_FORE(icon, ICON_ALPHA) ;
|
||||
timeFade "icon" forecolor 5 5 5 ICON_ALPHA 0 FADEIN_TIME ;
|
||||
//line - special alpha; using backcolor
|
||||
setItemColor "line" backcolor 5 5 5 0 ;
|
||||
timeFade "line" backcolor 5 5 5 LINE_ALPHA 0 FADEIN_TIME ;
|
||||
ALPHA_FADE_BACK(line, LINE_ALPHA) ;
|
||||
ACTIVATE_TAB(1) ;
|
||||
}
|
||||
|
||||
itemDef {
|
||||
|
|
Loading…
Reference in a new issue