Graal Pastebin

New Paste
Pasted on November 13, 2011.
View the raw file

//#CLIENTSIDE
 
function onMouseDown() {
  if (mousex in | this.x, this.x + width | && mousey in | this.y, this.y + height | ) {
    findweapon("-ShopWindow").displayItem(this.itemname, this.itemprice, this.itemdesc, this.realitem);
  } else {
    return;
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9