Thread: Detecting HTML?
View Single Post
  #9  
Old 06-01-2006, 05:30 PM
Omini Omini is offline
Millenium Owner
Join Date: Feb 2006
Location: N.Ireland
Posts: 293
Omini is on a distinguished road
Send a message via AIM to Omini Send a message via MSN to Omini Send a message via Yahoo to Omini
So if you were able to combine the player.platform to see if they're on Windows, then check if HTML is enabled?

ie
NPC Code:
if (player.platform == "win") {
if (htmlenabled) {
sendpm <b>Welcome to the server!</b>;
} else {
sendpm Welcome to the server!;
}
} else {
sendpm Welcome to the server!;
}



Unless you can simplify it some more, which I'm sure is possible.
__________________



Reply With Quote