Advertisement
Guest User

PoE map and zoom hack

a guest
Jul 26th, 2024
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Download VisualGGPK2 and figure out how to open a file to edit.
  2.  
  3. Then for the map reveal open: shaders -> minimap_visibility_pixel.hlsl look for the lines and edit the values
  4.  
  5. float4 res_color = float4(max(ratio, prev_ratio), 0.0f, 0.0f, 1.0f);
  6. if(visibility_reset > 0.5f)
  7. res_color = float4(0.18f, 0.0f, 0.0f, 1.0f);
  8. if(visibility_fully_revealed > 0.5f)
  9. res_color = float4(1.0f, 0.0f, 0.0f, 1.0f);
  10. if(visibility_walkable_revealed > 0.5f)
  11. {
  12.  
  13. For zoom changes open: metadata -> charaters -> character.ot and look for a line
  14.  
  15. Positioned
  16. {
  17. object_size = 2
  18. blocking = true
  19. team = 1
  20. }
  21.  
  22. add:
  23.  
  24. on_initial_position_set = "CreateCameraZoomNode(1000000, 1000000, 2);"
  25.  
  26. should become :
  27.  
  28. Positioned
  29. {
  30. object_size = 2
  31. blocking = true
  32. team = 1
  33. on_initial_position_set = "CreateCameraZoomNode(1000000, 1000000, 2);"
  34. }
  35.  
  36. Good luck shitters
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement