View Single Post
  #4  
Old 07-20-2013, 06:28 AM
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
Change:

temp.thing = ("DoctorStaffBar_Control" @ temp.code);

To:

temp.thing = makevar("DoctorStaffBar_Control" @ temp.code);

KeyPress can be shortened, unless you plan to changing it from the number keys:

PHP Code:
function onKeyPressed(keycodekeyname) {
  
temp.code keycode 49;
  if (
temp.code getTools().size()) {
    
selectToolName(temp.code);
  }
  else if (
keycode == 87) {
    
//Activate selected staff tool with w
    
triggerServer("gui"this.name"staffbar"this.staffCode);
  }

__________________
Quote:
Reply With Quote