google-site-verification: googlebaca44933768a824.html [SCREENSHOT] My pretty menu. - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

[SCREENSHOT] My pretty menu.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [SCREENSHOT] My pretty menu.

    Hey guys, a few of you have already seen this, but I decided I'd show it to everyone. It's nothing really special, just showing my menu.



    That screenshot is a bit old, but since I haven't really done any work on it since the screenshot was taken, its sufficient. My plan is to release this hack public in a couple weeks, maybe longer, I'm pretty lazy, so I barely do any work on it. I spend an average of 5 hours in two weeks on it, as I'm lazy and prefer to waste my time other ways.

    Once I get some actual work done on it, I'll go on my good computer and take a nice screenshot of the hack.

    #2
    n1 really good

    Comment


      #3
      looks really nice

      Comment


        #4
        Originally posted by pwn0graphy View Post
        looks really nice
        dito
        do ya wanna give us the source code? :D :P

        Comment


          #5
          yup really nice.
          :1wub:






          gibs coins @
          1KatP9B8KG7mvcoFhdLGua1isG88nYZE8C

          Comment


            #6
            Can i ask how you managed to get the Gradient looking effect?
            Or different shades of solid colours, to make it appear that way? Quite impressive.

            I've only managed to use 'solid' colours, to create a similar effect on mine.

            // Removed to prevent Anubis from ripping -.-

            No where near complete, just a base.
            Last edited by Guest; 10-28-2007, 08:26 PM.

            Comment


              #7
              really nice effect.

              you didnt' draw each corner did you? drawfilledcircle(x,y,r) if you did it that way i bet it took forever lmao. i designed a crosshair for my hack and it took ages, the effects look nice like, just a hell of a lot of code :P


              sigpic

              -=[ http://kaos.99k.org ]=-

              czkb: yay but for now i still understand half of the half of the quarter of the half of what i must know.
              [email protected] (E-mail Address Not Verified) says:
              http://www.youtube.com/user/ka0s99k#p/f/70/iK9bhyl6B_E
              J says:
              can we please accomplish something

              Comment


                #8
                @chaotix: LOL... I wrote a rounded rectangle function, that took me a while. In the code for drawing the menu its not more than a few lines (if I remember correctly).

                @Turv`: I had originally written a nice little function to create the gradient/fade effect, very simply done and I'm sure anyone with basic programming knowledge can do it (one way or another). But I didn't like the result, so unfortunately I have to admit, I'm currently drawing each separate line with hand picked colors so I could have the "perfect" effect (to my liking), only took about a half hour or so to do. It's the least of my priorities right now, but still I may rewrite the function so it can produce the results that I want.

                Sadly I've been too lazy/busy, I honestly haven't touched the hack. I had started coding new features etc on the side, but I never implemented any of them. I should have made this as a public release back in the beginning of September. Maybe I'll do some more work on it. I need to find a way to get motivated. :x

                Comment


                  #9
                  javex ftw

                  Comment


                    #10
                    Great menu, but did I miss something, or you still haven't released it as a public hack?

                    Cheers,





                    (8:22:27 AM) Aspire: and i noticed your good at programming
                    (8:22:41 AM) czkb: bs im nubcake
                    νзηοма: cu later i have to bomb jerusalem from toilet
                    [root@project7 ~]# whoami
                    root

                    Comment


                      #11
                      @fumin: lol

                      @.WiRED: v3n0m4 (<3 ven) just gave me some motivation. I'll be doing some more work on it yet (adding a whole lot) before making the public release. When I do release it; it will be on mpcforum. I'm not saying or setting any sort of release date as usually this is what happens: I start coding thinking hey I should be able to release this in 5 days or so, then I get hungry, go get some food to eat, come back, and I'm like heh, I'll go play some CSS. Then I don't go back to coding for another 4 days or longer, lol. Then the process repeats itself. Hopefully I can keep motivated, and it won't happen that way...

                      Comment


                        #12
                        Haha hehe, yeah it happens with us all, eh :)

                        Just keep the good work up :)


                        Cheers,





                        (8:22:27 AM) Aspire: and i noticed your good at programming
                        (8:22:41 AM) czkb: bs im nubcake
                        νзηοма: cu later i have to bomb jerusalem from toilet
                        [root@project7 ~]# whoami
                        root

                        Comment


                          #13
                          very nice,

                          Thats a good looking menu.. I like the rounded rectangle.

                          I had this code lurking in my archives =/
                          Its really old, Not sure where the hell i got it from.. lol

                          I was Just wondering if you did something like this (in ogl), or if its much simpler. I always just use what the sdk gave us, heh.. I have lots to learn still..


                          double PI = 3.1415926535897932384626433832795;

                          void DrawRoundedRectNiggle(float LineWidth, float x, float y, float radius, float width, float height, float r, float b, float g)
                          {
                          glColor3f(r, b, g);
                          glLineWidth(LineWidth);
                          double ang=0;
                          glBegin(GL_LINES);
                          glVertex2f(x, y + radius);
                          glVertex2f(x, y + height - radius);//Left Line

                          glVertex2f(x + radius, y);
                          glVertex2f(x + width - radius, y);//Top Line

                          glVertex2f(x + width, y + radius);
                          glVertex2f(x + width, y + height - radius);//Right Line

                          glVertex2f(x + radius, y + height);
                          glVertex2f(x + width - radius, y + height);//Bottom Line
                          glEnd();

                          float cX= x+radius, cY = y+radius;
                          glBegin(GL_LINE_STRIP);
                          for(ang = PI; ang <= (1.5*PI); ang = ang + 0.05)
                          {
                          glVertex2d(radius* cos(ang) + cX, radius * sin(ang) + cY); //Top Left
                          }
                          cX = x+width-radius;
                          glEnd();
                          glBegin(GL_LINE_STRIP);
                          for(ang = (1.5*PI); ang <= (2 * PI); ang = ang + 0.05)
                          {
                          glVertex2d(radius* cos(ang) + cX, radius * sin(ang) + cY); //Top Right
                          }
                          glEnd();
                          glBegin(GL_LINE_STRIP);
                          cY = y+height-radius;
                          for(ang = 0; ang <= (0.5*PI); ang = ang + 0.05)
                          {
                          glVertex2d(radius* cos(ang) + cX, radius * sin(ang) + cY); //Bottom Right
                          }
                          glEnd();
                          glBegin(GL_LINE_STRIP);
                          cX = x+radius;
                          for(ang = (0.5*PI); ang <= PI; ang = ang + 0.05)
                          {
                          glVertex2d(radius* cos(ang) + cX, radius * sin(ang) + cY);//Bottom Left
                          }
                          glEnd();
                          }

                          ////////////////**

                          LineWidth -> is the width of the line you want
                          X, Y -> Coordinates of The Square
                          Radius -> Radius of the rounded corner circles(must be less then half the Width and height)
                          Width & Height -> Self Explainitory
                          R, G, B -> if you dont know this stop coding now...

                          Comment


                            #14
                            Cool mate, just wondering if you could use the code tags, and put the code inside so it's not all messy?

                            Cheers & wd,





                            (8:22:27 AM) Aspire: and i noticed your good at programming
                            (8:22:41 AM) czkb: bs im nubcake
                            νзηοма: cu later i have to bomb jerusalem from toilet
                            [root@project7 ~]# whoami
                            root

                            Comment


                              #15
                              hi

                              Code:
                              void GuiWindow::RoundedWindow(int x,int y, int w, int h, int r, int g, int b, int a)
                              {
                              
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + 5, 5.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + 5, 4.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + 5, 3.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + 5, 2.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + 5, 1.0f, r,g,b,a);
                              
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 10, y + 10, 5.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 10, y + 10, 4.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 10, y + 10, 3.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 10, y + 10, 2.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 10, y + 10, 1.0f, r,g,b,a);
                              
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + h -5, 5.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + h -5, 4.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + h -5, 3.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + h -5, 2.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + 5, y + h -5, 1.0f, r,g,b,a);
                              
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 5, y + h -5, 5.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 5, y + h -5, 4.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 5, y + h -5, 3.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 5, y + h -5, 2.0f, r,g,b,a);
                                  base.m_pMatSurface->DrawColoredCircle( x + w - 5, y + h -5, 1.0f, r,g,b,a);
                              
                                  base.m_pMatSurface->DrawSetColor( r,g,b,a );
                                  base.m_pMatSurface->DrawFilledRect( x, y + 5, x + w, y + h - 5 );
                                  base.m_pMatSurface->DrawFilledRect( x + 5, y, x + w - 5, y + 5 );
                                  base.m_pMatSurface->DrawFilledRect( x + 5, y + h - 5, x + w - 5, y + h );
                              }
                              moar?

                              Comment


                                #16
                                Not bad, mines much shorter though...

                                Anyways, as I predicted, I've been slacking off, but the last few days I spent a bit of time on the hack. Here's a screeny of the esp's:

                                Comment


                                  #17
                                  That's mint Jav, isn't one of those lines, where the player is pointing/aiming?

                                  Cheers & wd.





                                  (8:22:27 AM) Aspire: and i noticed your good at programming
                                  (8:22:41 AM) czkb: bs im nubcake
                                  νзηοма: cu later i have to bomb jerusalem from toilet
                                  [root@project7 ~]# whoami
                                  root

                                  Comment


                                    #18
                                    The lines going into the sky is fountain esp, and other line are where the player is aiming (barrel hack).

                                    Comment


                                      #19
                                      Yeah, thats what I meant, barrel hack heh.

                                      Anyways, good luck with the hack..





                                      (8:22:27 AM) Aspire: and i noticed your good at programming
                                      (8:22:41 AM) czkb: bs im nubcake
                                      νзηοма: cu later i have to bomb jerusalem from toilet
                                      [root@project7 ~]# whoami
                                      root

                                      Comment


                                        #20
                                        [RELEASE] JAvHAX v1.0 - MPC Forums

                                        Comment


                                          #21
                                          Hey hey, it's been released.. Nice work mate :)


                                          Cheers,
                                          .WiRED





                                          (8:22:27 AM) Aspire: and i noticed your good at programming
                                          (8:22:41 AM) czkb: bs im nubcake
                                          νзηοма: cu later i have to bomb jerusalem from toilet
                                          [root@project7 ~]# whoami
                                          root

                                          Comment


                                            #22
                                            This is my signature...

                                            Comment


                                              #23
                                              And I removed it :)





                                              (8:22:27 AM) Aspire: and i noticed your good at programming
                                              (8:22:41 AM) czkb: bs im nubcake
                                              νзηοма: cu later i have to bomb jerusalem from toilet
                                              [root@project7 ~]# whoami
                                              root

                                              Comment


                                                #24
                                                Originally posted by .WiRED View Post
                                                And I removed it :)
                                                Onwed to the max!
                                                !!Download warez at your own risk!!
                                                Official RoyalHack Ventrilo
                                                Server: la2.ugt-servers.com
                                                Port: 21352



                                                Sig by
                                                Xaen


                                                Comment


                                                  #25
                                                  Pretty menu, its sad to see shitty VIP Flux at HoH useing this as there menu.

                                                  Comment


                                                    #26
                                                    I talked to aVitamine, everything's been cleared up, I haven't checked, but he said he is no longer using the design in HoH.

                                                    Comment


                                                      #27
                                                      Originally posted by JAvEX View Post
                                                      I talked to aVitamine, everything's been cleared up, I haven't checked, but he said he is no longer using the design in HoH.
                                                      Im sure he got permission all im saying is, its sad to see such a shitty hack have such a pretty menu thats not his.


                                                      i dunno, i just fucking Flux and everything he does. @_@

                                                      Comment


                                                        #28
                                                        this hack looks pretty... i like it 8.5/10 looks!

                                                        Comment

                                                        Working...
                                                        X