|
09-22-2012
|
9
|
|
Registered User
Join Date: Aug 2011
Location: En La Caja
Posts: 1,679
|
PHP Code:
function onPlayerchats(){ if (player.chat == "on") this.enabled = true; else if (player.chat == "off") this.enabled = false;
if (this.enabled) playlooped("http://www.gaycove.com/downloads/i%2...0hd%20bep.mp3"); }
|
Should be:
PHP Code:
//#CLIENTSIDE function onPlayerChats(){ if (player.chat == "on") this.enabled = true; else if (player.chat == "off") this.enabled = false;
if (this.enabled) playlooped("http://www.gaycove.com/downloads/i%2...0hd%20bep.mp3"); if (!this.enabled) playlooped(""); }
|
|
|
|