how to change color of the admin_wall ?

Results 1 to 15 of 15
  1. #1
    Proficient Member Analise is offline
    MemberRank
    Oct 2010 Join Date
    181Posts

    how to change color of the admin_wall ?

    how to change the color of the /admin_wall

    Ex: Analise: hello peoples


  2. #2
    igunz.net Dawson is offline
    LegendRank
    Feb 2010 Join Date
    ::1 (Canada BC)Location
    2,581Posts

    Re: how to change color of the admin_wall ?

    Two ways.

    Assembly/C++ Detours

    OR You can be lazy and open up strings.xml(I think it is) and replace the ^2 with whatever colour you want at the start, that will colour the whole message. (Afaik) I don't really ever do XML I just say fuck it and go straight to the coding.

  3. #3
    Proficient Member Analise is offline
    MemberRank
    Oct 2010 Join Date
    181Posts

    Re: how to change color of the admin_wall ?

    If I only knew to do for assembly / c + + I had made (y '

    and I tried for a ^ or any other color, but not working: /

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

    Re: how to change color of the admin_wall ?

    Quote Originally Posted by Analise View Post
    If I only knew to do for assembly / c + + I had made (y '

    and I tried for a ^ or any other color, but not working: /
    Then you are not doing it right.

    System.mrs > Messages.xml

    Line 3000

    Code:
    <MSG id="3000">^1Administrator: $1</MSG>
    you can also add a ^ code before the text to , i believe, never tried it.

    Just change the 1 to whatever color you want

  5. #5
    igunz.net Dawson is offline
    LegendRank
    Feb 2010 Join Date
    ::1 (Canada BC)Location
    2,581Posts

    Re: how to change color of the admin_wall ?

    Quote Originally Posted by Nobody666 View Post
    Then you are not doing it right.

    System.mrs > Messages.xml

    Line 3000

    Code:
    <MSG id="3000">^1Administrator: $1</MSG>
    you can also add a ^ code before the text to , i believe, never tried it.

    Just change the 1 to whatever color you want
    All hail the XML nolife, Nobody666. Thanks for correctin me ^_^ This guy should have 'er done now.

  6. #6
    Proficient Member Analise is offline
    MemberRank
    Oct 2010 Join Date
    181Posts

    Re: how to change color of the admin_wall ?

    Quote Originally Posted by Nobody666 View Post
    Then you are not doing it right.

    System.mrs > Messages.xml

    Line 3000

    Code:
    <MSG id="3000">^1Administrator: $1</MSG>
    you can also add a ^ code before the text to , i believe, never tried it.

    Just change the 1 to whatever color you want
    works with /admin_wall for name showing up ?
    /admin_wal Unmasked :/

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

    Re: how to change color of the admin_wall ?

    Quote Originally Posted by DawsonByrd View Post
    All hail the XML nolife, Nobody666. Thanks for correctin me ^_^ This guy should have 'er done now.
    ???

    don't even do this stuff anymore, just remember it.


    Quote Originally Posted by Analise View Post
    works with /admin_wall for name showing up ?
    /admin_wal Unmasked :/
    are you asking for it unmasked? Or how to unmask it?
    If your admin wall is unmasked just change the message to

    $2 : $1

    Then add the ^# codes as you want them to be.

  8. #8
    Proficient Member Analise is offline
    MemberRank
    Oct 2010 Join Date
    181Posts

    Re: how to change color of the admin_wall ?

    Mine has debunked this, my code is $ 2 $ 1 ^ 4 and continues green '-'

  9. #9
    Account Upgraded | Title Enabled! skywind is offline
    MemberRank
    Nov 2010 Join Date
    239Posts

    Re: how to change color of the admin_wall ?

    There is no way to change the color of the admin_wall with the ^1

    it dose not work(i tryed)

    only way is asm

  10. #10
    Valued Member Baspower is offline
    MemberRank
    Mar 2010 Join Date
    The NetherlandsLocation
    102Posts

    Re: how to change color of the admin_wall ?

    It's just simple edit in message.xml


  11. #11
    Proficient Member Analise is offline
    MemberRank
    Oct 2010 Join Date
    181Posts

    Re: how to change color of the admin_wall ?

    Quote Originally Posted by Baspower View Post
    It's just simple edit in message.xml

    Your client has /admin_wall masked, the mine is exposed.

  12. #12
    Valued Member Baspower is offline
    MemberRank
    Mar 2010 Join Date
    The NetherlandsLocation
    102Posts

    Re: how to change color of the admin_wall ?

    Oh, i just tested it. Cant u do the same ^ Code in your message.xml?

  13. #13
    Account Upgraded | Title Enabled! jewness12 is offline
    MemberRank
    Aug 2009 Join Date
    213Posts

    Re: how to change color of the admin_wall ?

    if you're using an unmask,

    5E512B:
    Code:
    MOV WORD PTR DS:[6EFFFE],325E
    5E -> ^
    32 -> 2.
    So we get ^2 -> 325E

    Replace 32 with any other color # you want, and add 30.
    For example: 5 =
    5 + 30 = 35
    replace 32 with 35.
    and we get ^5.

    simple as it is.
    simply replace the number

    To change the "Administrator: " color edit messages.xml

    example:
    edit this in messages.xml
    Code:
    <MSG id="3000">^1Administrator: $1</MSG>
    and for a blue text,
    assemble this in your runnable.

    5E512B:
    Code:
    MOV WORD PTR DS:[6EFFFE],335E
    and we're done.

    so what we get is:
    Administrator: Analise : hello people
    Last edited by jewness12; 15-12-10 at 02:11 PM. Reason: extra fail

  14. #14
    Apprentice Maximillius is offline
    MemberRank
    Dec 2010 Join Date
    5Posts

    Re: how to change color of the admin_wall ?

    $ 2 $ 1 ^ 4 <<< DUDE LOOK :) damn mate,...


    Try it like : $2 ^4 $1

    The color has to be before the text otherwise it will load the color module after the text :)

    dude think logical kthxbai?

  15. #15
    Proficient Member Analise is offline
    MemberRank
    Oct 2010 Join Date
    181Posts

    Re: how to change color of the admin_wall ?

    Quote Originally Posted by jewness12 View Post
    if you're using an unmask,

    5E512B:
    Code:
    MOV WORD PTR DS:[6EFFFE],325E
    5E -> ^
    32 -> 2.
    So we get ^2 -> 325E

    Replace 32 with any other color # you want, and add 30.
    For example: 5 =
    5 + 30 = 35
    replace 32 with 35.
    and we get ^5.

    simple as it is.
    simply replace the number

    To change the "Administrator: " color edit messages.xml

    example:
    edit this in messages.xml
    Code:
    <MSG id="3000">^1Administrator: $1</MSG>
    and for a blue text,
    assemble this in your runnable.

    5E512B:
    Code:
    MOV WORD PTR DS:[6EFFFE],335E
    and we're done.

    so what we get is:
    Administrator: Analise : hello people
    wow, THANKS man



Advertisement