Guest User

Untitled

a guest
Mar 13th, 2023
1,110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. --- INTRUCTIONS FOR USING DEV MODE ---
  2. -- Use command 'devmode' and a red marker will appear when you are facing a wall.
  3. -- Press E to select points of the image
  4. --- The first point of the image has to be top left corner, the second point has to be in bottom right corner!
  5. -- After second point is selected, input image link or image path and press submit
  6. -- NOTE: To use image path, the image has to be uploaded to pd_image_placer/images folder. Only type image's name and extension. E.G. bingo.png
  7. -- Adjust image's offset by using the slider and confirm! :)
  8.  
  9.  
  10. Config = {}
  11.  
  12. Config.debug = false
  13.  
  14. --The name of the command which calculates the coords and heading of the billboard
  15. Config.commandNames = {
  16. devMode = 'devmode',
  17. deleteImage = 'deleteimage',
  18. disableImages = 'disableimages'
  19. }
  20. --Keybind for selecting image points
  21. Config.keybinds = {
  22. label = 'E',
  23. name = 'INPUT_PICKUP',
  24. input = "E",
  25. }
  26.  
  27. --Maximum raycast distance
  28. Config.raycastDistance = 30
  29.  
  30. --If 'devmode' and 'deleteimage' commands are admin only
  31. Config.staffOnly = true
  32.  
Add Comment
Please, Sign In to add comment