Force UI Key

P

pv=nRT

Guest
Does anyone know a way to force a player to press enter via the Force UI Key Trigger. Thanks.
 
I'd like to know the answer too...and what for F9 or F10?
 
Dino.pl said:
> the Force UI Key Trigger
What is that?

What to do you mean? It's just the GUI function used for it, but the question was different. Got it?
 
LOL, I dodn't know about it :)

EDIT: It takes a string as the argument, so I doubt that it's possible to press enter for player.
 
Well, for example you can give the function the string "!q" to force a player to press Alt+q...so I was wondering if anybody knows which characters or strings correspond to Enter and to F9-10.
 
Maybe it's the same as in AutoIt :)
Code:
Send Key list


Quick reference for the Send ( "keys" [, flag] ) Command.    ^ Ctrl    ! Alt    + Shift    # Win


To send the ASCII value A (same as pressing ALT+065 on the numeric keypad)
    Send("{ASC 65}")

Single keys can also be repeated, e.g.
    Send("{DEL 4}") ;Presses the DEL key 4 times
    Send("{S 30}") ;Sends 30 'S' characters
    Send("+{TAB 4}) ;Presses SHIFT+TAB 4 times

To hold a key down (generally only useful for games)
    Send("{a down}") ;Holds the A key down
    Send("{a up}") ;Releases the A key

If you with to use a variable for the count, try
    $n = 4
    Send("+{TAB " & $n & "}")

If you wish to send the ASCII value A four times, then try
    $x = Chr(65)
    Send("{" & $x & " 4}")

Most laptop computer keyboards have a special Fn key. This key cannot be simulated.

Note, by setting the flag parameter to 1 the "keys" parameter is sent RAW. This is useful when you want to send some text copied from a variable and you want the text sent exactly as written.


Send is quite useful because windows can be navigated without needing a mouse.

For example, open Folder Options (in the control panel) and try the following:

Send("{TAB}") Navigate to next control (button, checkbox, etc) 
Send("+{TAB}") Navigate to previous control. 
Send("^{TAB}") Navigate to next WindowTab (on a Tabbed dialog window) 
Send("^+{TAB}") Navigate to previous WindowTab. 
Send("{SPACE}") Can be used to toggle a checkbox or click a button. 
Send("{+}") Usually checks a checkbox (if it's a "real" checkbox.) 
Send("{-}") Usually unchecks a checkbox. 
Send("{NumPadMult}") Recursively expands folders in a SysTreeView32.  



Use Alt-key combos to access menu items.  Also, open Notepad and try the following:

Send("!f") Send Alt+f, the access key for Notepad's file menu. Try other letters!
 
Send("{DOWN}") Move down a menu. 
Send("{UP}") Move up a menu. 
Send("{LEFT}") Move leftward to new menu or expand a submenu. 
Send("{RIGHT}") Move rightward to new menu or collapse a submenu. 


See Windows' Help--press Win+F1--for a complete list of keyboard shortcuts if you don't know the importance of Alt+F4, PrintScreen, Ctrl+C, and so on.


Send Command (if zero flag) Resulting Keypress
 
{!} ! 
{#} # 
{+} + 
{^} ^ 
{{} { 
{}} } 
{SPACE} SPACE 
{ENTER} ENTER key on the main keyboard 
{ALT} ALT 
{BACKSPACE} or {BS} BACKSPACE 
{DELETE} or {DEL} DELETE 
{UP} Cursor up 
{DOWN} Cursor down 
{LEFT} Cursor left 
{RIGHT} Cursor right 
{HOME} HOME 
{END} END 
{ESCAPE} or {ESC} ESCAPE 
{INSERT} or {INS} INS 
{PGUP} PGUP 
{PGDN} PGDN 
{F1} - {F12} Function keys 
{TAB} TAB 
{PRINTSCREEN} PRINTSCR 
{LWIN} Left Windows key 
{RWIN} Right Windows key 
{NUMLOCK} NUMLOCK 
{CTRLBREAK} Ctrl+Break 
{PAUSE} PAUSE 
{CAPSLOCK} CAPSLOCK 
{NUMPAD0} - {NUMPAD9} Numpad digits 
{NUMPADMULT} Numpad Multiply 
{NUMPADADD} Numpad Add 
{NUMPADSUB} Numpad Subtract 
{NUMPADDIV} Numpad Divide 
{NUMPADDOT} Numpad period 
{NUMPADENTER} Enter key on the numpad 
{APPSKEY} Windows App key 
{LALT} Left ALT key 
{RALT} Right ALT key 
{LCTRL} Left CTRL key 
{RCTRL} Right CTRL key 
{LSHIFT} Left Shift key 
{RSHIFT} Right Shift key 
{SLEEP} Computer SLEEP key 
{ALTDOWN} Holds the ALT key down until {ALTUP} is sent 
{SHIFTDOWN} Holds the SHIFT key down until {SHIFTUP} is sent 
{CTRLDOWN} Holds the CTRL key down until {CTRLUP} is sent 
{LWINDOWN} Holds the left Windows key down until {LWINUP} is sent 
{RWINDOWN} Holds the right Windows key down until {RWINUP} is sent 
{ASC nnnn} Send the ALT+nnnn key combination 
    
{BROWSER_BACK} 2000/XP Only: Select the browser "back" button 
{BROWSER_FORWARD} 2000/XP Only: Select the browser "forward" button 
{BROWSER_REFRESH} 2000/XP Only: Select the browser "refresh" button 
{BROWSER_STOP} 2000/XP Only: Select the browser "stop" button 
{BROWSER_SEARCH} 2000/XP Only: Select the browser "search" button 
{BROWSER_FAVORITES} 2000/XP Only: Select the browser "favorites" button 
{BROWSER_HOME} 2000/XP Only: Launch the browser and go to the home page 
{VOLUME_MUTE} 2000/XP Only: Mute the volume 
{VOLUME_DOWN} 2000/XP Only: Reduce the volume 
{VOLUME_UP} 2000/XP Only: Increase the volume 
{MEDIA_NEXT} 2000/XP Only: Select next track in media player 
{MEDIA_PREV} 2000/XP Only: Select previous track in media player 
{MEDIA_STOP} 2000/XP Only: Stop media player 
{MEDIA_PLAY_PAUSE} 2000/XP Only: Play/pause media player 
{LAUNCH_MAIL} 2000/XP Only: Launch the email application 
{LAUNCH_MEDIA} 2000/XP Only: Launch media player 
{LAUNCH_APP1} 2000/XP Only: Launch user app1 
{LAUNCH_APP2} 2000/XP Only: Launch user app2
 
It doesn't work for me, even if it's very useful for other purposes
 
! is Alt, but we already knew it.
# ...I'm afraid it means nothing for W3.
^ & + err...I still have to try ^^, but they ought to work.
 
> # ...I'm afraid it means nothing for W3.
It would be cool if you could turn off player's computer with your custom map, LOL.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    I think on the new one they did change it, but idk. I don't really care whatever the government is doing right now because it's consistently absurd. Like what is RFK doing in charge of health anything? I love the bear story because WTF was that, but also, pretty much every time he talks it's WTF. Like even his voice sounds microwaved
    +1
  • Varine Varine:
    The pyramid is fucking dumb as shit, no matter how you arrange it.
  • Varine Varine:
    It's actually remarkably easy to make mayonnaise though. Fun fact, it USED to kind of be a French mother sauce. I believe that Careme considered it one, it may have been aioli but that has also built a different meaning than it used to. An aioli is just mayonnaise I mixed with other shit typically, I didn't start it don't come at me
  • Varine Varine:
    It's very hard to do it on a large scale though
  • Varine Varine:
    Depending on how you pour the oil the consistency can vary wildly, but that's true for most emulsions. I can only make about two quarts at a time with my robo coup, and if I have to make several in series because I forgot to order it becomes really obvious even when I do it. We have to wait and mix them all together to make sure we have the same thing.
  • Varine Varine:
    Hollandaise is also kind of like that, emulsions require a very steady hand to do exactly the same every time.
  • Varine Varine:
    Luckily I live in an age with electricity so it's way fucking faster, but when I was just a boy trying to find my place I had some hardcore chefs that made use do things like that by hand. It is WAY easier to get right by hand because you control it and can feel it, but it takes soooooo much longer. And on the scale a modern kitchen requires... I serve 400-500 guests on average per day right now, if I had 100 then we could do things way better
  • Varine Varine:
    But we can't do that. In the winter yeah, but I HAVE to get people through here right now so I can afford the staff that we CAN do that. We have about 100 days of summer, and if that summer doesn't make us what it will, then I can't operate the other most of the year with my staff. The owner is talking about closing two days a week to cut down on labor, I told him he should cut down on vacations and it did not go great. I do think I won though, I have to keep my fucking core staff and they have to be gainfully employed
  • Varine Varine:
    Sure some of them might take a second job, but I can't just cut my entire staff to unlivable hours, nor can I can cut them off all winter if I want them to come back.
  • Varine Varine:
    And also, there is no fucking way I'm pulling these hours come september. I only do this right now because I have to, the second I don't have to be the one doing it I won't be
  • Varine Varine:
    I have a 5 person core staff in the kitchen, not including me or Chef Ben
  • Varine Varine:
    Though two of those people are likely not making it this year. One of them has been replaced, the other I am kind of trying to. He's being a giant bitch, today I had to get onto him because in the three hours before I left he had taken like thirty minutes for cigarette breaks
  • Varine Varine:
    And he was also complaining to me the other day that he was out of weed so couldn't smoke any before work that day, and was confused about why I was annoyed he was telling me, his boss, that he is smoking weed everyday before work.
    +1
  • Varine Varine:
    Like yeah I can tell. I don't need to fucking know.
  • Varine Varine:
    So now he's getting scrutinized and will not be top of the list. I know I don't have the smartest people but I do expect them to have some common fucking sense
  • Varine Varine:
    I did do a rare thing for me and hire a girl last month without warning. Everyone was made at me because I started her at like 21, but she worked with me before and I was like don't care. She made 19 at her old job and I wanted her to come work with me, she is the best
    +1
  • Varine Varine:
    I'm going to get her a raise at the end of the summer. She wants to go to school again, but I want her to still work with me so.... she kind of can just tell me what the price is. I can go to 25 if she keeps up. I need to get her onto line more, that's what she wants, but I need her where she is and it's not fair that she doesn't get the little bit of raise that comes with it. She can do it no problem, I've worked with her there.
  • Varine Varine:
    It's just hard to move and train people unnecessarily right now. And also the line fucking sucks, it's not any more fun. This is turn and burn so I have the bankroll, and everyone suffers for it
  • Varine Varine:
    Eventually we'll get it balanced, we'
  • Varine Varine:
    we're starting online orders and stuff, but I also turn that off all the time because I barely keep up trying to be the best at Sysco shit
  • Varine Varine:
    I think it's gonna be a good fall and winter though. We're going to have a good staff, they will get along, they will be able to manage the workload and the complications, they know how to really cook this year, like every person on line knows their steak temps. Some of them use thermometers a lot and they don't always use them right, but they do know how to do it. Failure, especially in this field, is the only way to get better. They'll get it
  • Varine Varine:
    They won't get feel down while they do the thermometer, but we didn't have an instant read probe when I was learning. Like they did but god knows how off it is, you HAD to do it by feel. Even if the chef was fine with me bringing my own, it takes too long. Poke and know
  • The Helper The Helper:
    420 threads in the Artificial Intelligence forum :)
  • The Helper The Helper:
    Happy Monday!
    +1
  • The Helper The Helper:
    and then it was Tuesday!
    +1

      The Helper Discord

      Staff online

      • Ghan
        Administrator - Servers are fun

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials
      Top