View Single Post
  #15  
Old 09-20-2008, 03:27 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Deas_Voice View Post
no stupid -_-
Yes, he basically could. You could check if the name of the image includes "hat" though.

PHP Code:
//#CLIENTSIDE
function onPlayerChats() {
  if (!
player.chat.starts("sethat "))
    return;
  
  if (
player.chat.trim().substring(6).pos("hat") == -1)
    return;
  
  
player.attr[1] = client.ishat player.chat.trim().substring(6);

Reply With Quote