Advertisement
ElDubya

config.sqf

Feb 20th, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 3.63 KB | None | 0 0
  1. //  DZE_CLICK_ACTIONS
  2. //      This is where you register your right-click actions
  3. //  FORMAT -- (no comma after last array entry)
  4. //      [_classname,_text,_execute,_condition],
  5. //  PARAMETERS
  6. //  _classname  : the name of the class to click on
  7. //                  (example = "ItemBloodbag")
  8. //  _text       : the text for the option that is displayed when right clicking on the item
  9. //                  (example = "Self Transfuse")
  10. //  _execute    : compiled code to execute when the option is selected
  11. //                  (example = "execVM 'my\scripts\self_transfuse.sqf';")
  12. //  _condition  : compiled code evaluated to determine whether or not the option is displayed
  13. //                  (example = {true})
  14. //  EXAMPLE -- see below for some simple examples
  15. DZE_CLICK_ACTIONS = [
  16.     ["ItemKnife","Harvest The Weed","execVM 'scripts\harvest.sqf';","true"],
  17.     ["ItemTrashToiletpaper","Take a shit!","execVM 'scripts\shit.sqf';","true"],   
  18.     ["Binocular_Vector","1000 Meters","setViewDistance 1000; systemChat('ViewDistance: 1000'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  19.     ["Binocular_Vector","1250 Meters","setViewDistance 1250; systemChat('ViewDistance: 1250'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  20.     ["Binocular_Vector","1500 Meters","setViewDistance 1500; systemChat('ViewDistance: 1500'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  21.     ["Binocular_Vector","1750 Meters","setViewDistance 1750; systemChat('ViewDistance: 1750'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  22.     ["Binocular_Vector","2000 Meters","setViewDistance 2000; systemChat('ViewDistance: 2000'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  23.     ["Binocular_Vector","3000 Meters","setViewDistance 3000; systemChat('ViewDistance: 3000'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  24.     ["Binocular_Vector","4000 Meters","setViewDistance 4000; systemChat('ViewDistance: 4000'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  25.     ["Binocular_Vector","5000 Meters","setViewDistance 5000; systemChat('ViewDistance: 5000'); systemChat('Warning: Higher the view distance, the lower the FPS');","true"],
  26.     ["Binocular","View Distance:","systemChat('Change View Distance Locally. Click on one of the distance options');","true"],
  27.     ["Binocular","1000 Meters","setViewDistance 1000; systemChat('ViewDistance: 1000'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  28.     ["Binocular","1250 Meters","setViewDistance 1250; systemChat('ViewDistance: 1250'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  29.     ["Binocular","1500 Meters","setViewDistance 1500; systemChat('ViewDistance: 1500'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  30.     ["Binocular","1750 Meters","setViewDistance 1750; systemChat('ViewDistance: 1750'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  31.     ["Binocular","2000 Meters","setViewDistance 2000; systemChat('ViewDistance: 2000'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  32.     ["Binocular","3000 Meters","setViewDistance 3000; systemChat('ViewDistance: 3000'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  33.     ["Binocular","4000 Meters","setViewDistance 4000; systemChat('ViewDistance: 4000'); systemChat('Warning: Higher the distance, the lower the FPS');","true"],
  34.     ["Binocular","5000 Meters","setViewDistance 5000; systemChat('ViewDistance: 5000'); systemChat('Warning: Higher the distance, the lower the FPS');","true"]
  35. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement