This is a mobile optimized page that loads fast, if you want to load the real page, click this text.

Source Code Swastika meme hitmarker

Administrator
User ID
1097
Messages
152
Reactions
870
Level
57
C:
//crosshairX and crosshairY are the screen centre

interfaces.surface->drawLine(CrosshairX, CrosshairY, CrosshairX, CrosshairY - 6);
interfaces.surface->drawLine(CrosshairX, CrosshairY - 6, CrosshairX + 6, CrosshairY - 6);

interfaces.surface->drawLine(CrosshairX, CrosshairY, CrosshairX + 6, CrosshairY);
interfaces.surface->drawLine(CrosshairX + 6, CrosshairY, CrosshairX + 6, CrosshairY + 6);

interfaces.surface->drawLine(CrosshairX, CrosshairY, CrosshairX, CrosshairY + 6);
interfaces.surface->drawLine(CrosshairX, CrosshairY + 6, CrosshairX - 6, CrosshairY + 6);

interfaces.surface->drawLine(CrosshairX, CrosshairY, CrosshairX - 6, CrosshairY);
interfaces.surface->drawLine(CrosshairX - 6, CrosshairY, CrosshairX - 6, CrosshairY - 6);
 
Administrator
User ID
1097
Messages
152
Reactions
870
Level
57
Thats why the size is 6
 
Newbie HvHer
User ID
12344
Messages
2
Reactions
0
Level
1
Code:
render::drawFilledRect(x - 5, y - 1, 10, 3, Colors::Black);
        render::drawFilledRect(x - 1, y - 5, 3, 10, Colors::Black);

        render::drawFilledRect(x - 5, y - 4, 3, 6, Colors::Black);
        render::drawFilledRect(x + 3, y - 1, 3, 6, Colors::Black);

        render::drawFilledRect(x - 1, y - 5, 6, 3, Colors::Black);
        render::drawFilledRect(x - 4, y + 3, 6, 3, Colors::Black);

        render::drawLine(x, y, x, y - 4, Colors::LightBlue);
        render::drawLine(x, y - 4, x + 4, y - 4, Colors::LightBlue);

        render::drawLine(x, y, x + 4, y, Colors::LightBlue);
        render::drawLine(x + 4, y, x + 4, y + 4, Colors::LightBlue);

        render::drawLine(x, y, x, y + 4, Colors::LightBlue);
        render::drawLine(x, y + 4, x - 4, y + 4, Colors::LightBlue);

        render::drawLine(x, y, x - 4, y, Colors::LightBlue);
        render::drawLine(x - 4, y, x - 4, y - 4, Colors::LightBlue);

outline p, not outline not p
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.