示例#1
0
 public function iExecAnyway()
 {
     $anyway = array('eq', 'equip', 'g', 'give', 'uq', 'unequip', 'ca', 'cast', 'u', 'use');
     $cmd = $this->combat_stack;
     $cmd = Common::substrUntil($cmd, ' ', $cmd);
     if (in_array($cmd, $anyway, true)) {
         return Shadowcmd::onExecute($this, $this->combat_stack);
     }
     $this->combat_stack = '';
     $this->old_combat_stack = '';
     return true;
 }