View Single Post
  #14  
Old 06-10-2014, 03:51 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
PHP Code:
function onCreated() {
  if (!
isBlocking(tiles[player.x+1.5,player.y+3])) {
    
player.chat "this tile is not blocking";
  }
}

function 
isBlocking(tile) {
  
temp.blocktiles = {1,2,3,4,5};
  return (
tile in temp.blocktiles);

__________________
Quote:
Reply With Quote