Thread: Detecting HTML?
View Single Post
  #8  
Old 06-01-2006, 04:25 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by excaliber7388
Are you able to detect if a person is using Linux, Mac, or Windows, etc?
Yes. Using the player.platform variable, I guess you could do something like this:
PHP Code:
if (player.platform in {"linux""mac"})
{
  
player.sendPM("foo");
}
  else
{
  
player.sendPM("bar");

The possible values for player.platform are "linux", "mac" and "win", and the variable is readable from the serverside.
__________________
Skyld
Reply With Quote