Why can I attack lower level npc's in a matter of a mouse hover but for a higher level npc the only choice to attack is by right clicking option attack?
Admin CP -> Usergroups -> Edit Usergroup -> Username HTML Markup.
In the first box, that is the Prefix. In the Prefix box, put basically all the code you want the username to have. In your case, if you want a red username, put this in:
Code:
<b><span style="color: #b40000;">
The <b> gives anyone's username in that group the bold text decoration.
The "color: #b40000;" basically gives anyone's username in that group the #b40000 colour (which is a dark red in hexadecimal code). You can change it at any time by looking online at some websites for difference hexadecimal codes, such as [Only registered and activated users can see links. ], or you could select colour in photoshop and get the hexadecimal code there, as shown below:
The box next to it is the Suffix. The Suffix basically closes all of the html tags we opened in the Prefix. Since we have a <b> and a <span> tag, we have to close them in the order we opened them. Since we opened <span> as last in the Prefix, we have to close it first. We'd put in:
Code:
</span></b>
into the Suffix to close the <b> and a <span> tags.
Hope I helped
Note: It is also possible to have a colour using the <font> tag, as shown below:
Prefix: <b><font color="#b40000">
Suffix: </font></b>