View Single Post
  #4  
Old 07-22-2013, 12:34 AM
i8bit i8bit is offline
Registered User
Join Date: Jul 2013
Posts: 146
i8bit is an unknown quantity at this point
Awesome. BUT what if I wanted to remove all weapons starting with Test/ except for Test/One for example? I tried this but it didn't work..

PHP Code:
for (temp.w: player.weapons) {
  if (
temp.w.starts("Test/")) player.removeWeapon(temp.w);
} 
sleep(0.05);
addWeapon("Test/One"); 
Reply With Quote