how to change color of the admin_wall ?
how to change the color of the /admin_wall
Ex: Analise: hello peoples
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.
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: /
Re: how to change color of the admin_wall ?
Quote:
Originally Posted by
Analise
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
Re: how to change color of the admin_wall ?
Quote:
Originally Posted by
Nobody666
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.
Re: how to change color of the admin_wall ?
Quote:
Originally Posted by
Nobody666
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 :/
Re: how to change color of the admin_wall ?
Quote:
Originally Posted by
DawsonByrd
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
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.
Re: how to change color of the admin_wall ?
Mine has debunked this, my code is $ 2 $ 1 ^ 4 and continues green '-'
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
Re: how to change color of the admin_wall ?
It's just simple edit in message.xml
http://i53.tinypic.com/e9utl3.jpg
Re: how to change color of the admin_wall ?
Quote:
Originally Posted by
Baspower
Your client has /admin_wall masked, the mine is exposed.
Re: how to change color of the admin_wall ?
Oh, i just tested it. Cant u do the same ^ Code in your message.xml?
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
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?
Re: how to change color of the admin_wall ?
Quote:
Originally Posted by
jewness12
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