View Single Post
  #2  
Old 06-22-2006, 12:05 PM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Not sure, but I would prefer a more generic "events" system.
PHP Code:
function onCreated() {
  
event(player"UpdateHealth").connect(this);
}

function 
onUpdateHealth(newVal) {
  
Health_Bar.width newVal;

Reply With Quote