Jul 08 - New Grade Color

Results 1 to 5 of 5
  1. #1
    Valued Member iCreamPie is offline
    MemberRank
    Sep 2010 Join Date
    130Posts

    Jul 08 - New Grade Color

    I've used this tutorial for my new grades. http://forum.ragezone.com/f245/july-...-grade-688781/

    I've followed Linear's way of using the colors.

    Quote Originally Posted by Linear88 View Post
    8 Hex Colour Codes? You mean..

    RR GG BB AA?

    If so, it's AA BB GG RR in GunZ (reversed, if I'm not wrong).

    Alpha stays 0xFF (255) [unless you want to experiment with it]. Just change the other colours using normal HTML color codes like #A2C2D2 / whatever, but remember to reverse it (#FF<D2C2A2>).

    So I used this color in hex reversed - #0FF83A and normal - #3AF80F. I went ingame to test it out I got this color.



    Can someone help? It always seem to happened after the 1st Grade(it was the only one that was correct)
    Last edited by iCreamPie; 27-09-10 at 10:58 PM.


  2. #2
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Jul 08 - New Grade Color

    Why is the level masked? o.o
    Also, I never understood that reversing part so I don't know what to say. I had tried a code but I got light purple in-game. I'm not sure if I chose that or it came on its own ._.

  3. #3
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    Re: Jul 08 - New Grade Color

    So you want is as green? Thats what im getting as for 3AF80F

    It really is kind of a pain in the ass at times, for example blue sometimes would show up as purple, so then you have to get the hex for purple so it will be blue. Its why i hate working with the color part of runnables

    Anyways, if it was green try 00 FF 00 FF

  4. #4
    Apprentice Cekuro is offline
    MemberRank
    May 2010 Join Date
    18Posts

    Re: Jul 08 - New Grade Color

    Quote Originally Posted by iCreamPie View Post
    I've used this tutorial for my new grades. http://forum.ragezone.com/f245/july-...-grade-688781/

    I've followed Linear's way of using the colors.




    So I used this color in hex reversed - #0FF83A and normal - #3AF80F. I went ingame to test it out I got this color.



    Can someone help? It always seem to happened after the 1st Grade(it was the only one that was correct)
    No, the hex isn't reversed. You just have to pay attention to what line it is on. Numerically, "R" will always be initialized to the lowest number.

    Example:

    Code:
    MOV BYTE PTR SS:[EBP+8]  // 8 is the lowest, it'll be R
    MOV BYTE PTR SS:[EBP+9]  // 9 is second, so it's G
    MOV BYTE PTR SS:[EBP+A]  // A is third, so it's B
    MOV BYTE PTR SS:[EBP+B]  // B is last so it'll be A (Always FF)
    So, when you're looking at the code, you see the lowest number being added/sub'd to EBP/LOCAL, that's the R, so and so forth GBA follows. I hope this was explanatory enough.

  5. #5
    Valued Member iCreamPie is offline
    MemberRank
    Sep 2010 Join Date
    130Posts

    Re: Jul 08 - New Grade Color

    oh thanks.



Advertisement