Is there any way to detect if the player has HTML enabled or not? Lets say in the NPC Server, if the player has HTML it sends a PM (containing HTML) and if HTML is disabled then it sends a different PM?
Example:
NPC Code:
if (htmlenabled) {
sendpm <b>Welcome! to the Server!</b>;
} else {
sendpm Welcome to the Server!;
}