Search
 
SCRIPT & CODE EXAMPLE
 

C

arma 3 key pressed

Add the following to Zeus's init field
// Key 59 is F1

this addEventHandler 
[ 
 "CuratorObjectRegistered", 
 { 
  nul = [] spawn  
  { 
   waitUntil {!(isNull (findDisplay 312))}; 
 
   (findDisplay 312) displayAddEventHandler 
   [ 
    "keyDown", 
    { 
     params ["_displayorcontrol", "_key", "_shift", "_ctrl", "_alt"]; 
 
     if (_key == 59) then  
     { 
      systemChat str "Hello"; 
     }; 
    } 
   ]; 
  }; 
 } 
];
Comment

PREVIOUS NEXT
Code Example
C :: Uri/beecrowd problem no - 1131 solution in C 
C :: disable gnu++11 option 
C :: curl ftp upload file to directory 
C :: C Change Value of Array elements 
C :: python project script run 
C :: djb2 algorithm for C 
C :: Uri/beecrowd problem no - 1099 solution in C 
C :: suma de digitos 
C :: when to add & in snacf c 
C :: c byte vs char 
C :: read from text file in c 
C :: get multiple c 
C :: what to do after autoencoder training 
C :: program to merge two strings in c 
C :: print hello world c 
C :: how to turn off bash 
C :: inline function in c example 
C :: how to declare 3dimensional arrays in wiring 
C :: write to file in c programming 
C :: how to get value of multidimensional array in c 
C :: c program for determining a character is alphabet or not 
Dart :: dart remove last character from string 
Dart :: flutter divider 
Dart :: flutter text hint 
Dart :: flutter singleton 
Dart :: taskkill dart 
Dart :: flutter check if key exists 
Dart :: flutter datetime.now only time 
Dart :: flutter print line char limit 
Dart :: dartpad missing browser localstorage 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =