View Single Post
  #11  
Old 05-12-2012, 10:25 AM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Might be a little easier to put them all in an array instead of using multiple removeweapon() functions. It doesn't really make a difference, but it looks nicer.

PHP Code:
function onCreated() {
  
this.weapons_rem = {
    
"-System",
    
"-Other",
    
"Weapons/Here"
  
};
}

function 
onActionPlayerOnline() {
  for (
weapons this.weapons_rem) {
    
player.removeweapon(weapons);
  }

Reply With Quote