View Single Post
  #10  
Old 10-08-2011, 10:49 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
PHP Code:
if (player.clientr.hat.(@ hatname) != null) { 
I know I am asking a lot of questions here, but I am using a chat command to add the hat. How would I add this to that. I am stumped. I tried...
PHP Code:
function onPlayerChats() {
  
hatname player.chat.substring(7);
  
this.hatstring player.clientr.hat.(@hatname);
  
tokens player.chat.tokenize(" ");
  if (
tokens[0] == "sethat") {
    if (
tokens[1in this.hatstring) {
      
player.attr[1] = hatname;
    }
  }

__________________
Reply With Quote