Advertisement
Guest User

Untitled

a guest
Feb 4th, 2021
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Window.FitTo(GameWindowHandle);
  2. e.Graphics.ClearScene();
  3. e.Graphics.BeginScene();
  4. e.Graphics.DrawText(_fonts["arial"], 25f, _brushes["green"], new GameOverlay.Drawing.Point(25, 50), "BFH External - CnoEvil");
  5.  
  6. W2S.W2S_update(Mem.GetLocalPlayer());
  7.  
  8.  
  9. Mem.GetPlayers().ForEach(player => {
  10.  
  11. if(W2S.W2S_project(ref player.Pos))
  12. {
  13. e.Graphics.DrawText(_fonts["arial"], 25f, _brushes["red"], new GameOverlay.Drawing.Point(player.Pos.X, player.Pos.Y), player.NAME);
  14. }
  15.  
  16. });
  17.  
  18.  
  19. e.Graphics.EndScene();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement