View Single Post
  #1  
Old 08-13-2008, 03:22 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Here is an alternative.
PHP Code:
function onActionGrab() {
  
this.level.chair.trigger("ActionShock""");

PHP Code:
function onCreated() {
  
this.setshape(13232);
  
this.level.chair this;
}
function 
onActionShock() {
  
// do stuff

The this. prefix isn't required in this instance but it is my preference to do it like that so you clearly know what the variable belongs to.
__________________

Last edited by Inverness; 08-13-2008 at 04:54 PM..
Reply With Quote